Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Beginners guide to Search Engine Optimization (Part 1)
SEO- Keyword Research and Tagging (Part 1)
Search engine optimization is the Godfather of online marketing. The position of your web page on the SERP (Search Engine Results Page) determines how much traffic your page has and consequently the...
Play with AJAX - Liferay
Ajax is one of those patterns that are a must have with a UI framework, so let's go ahead and jump right into doing some Ajax requests, and then we'll dive into the more complex cases.
Let's prep our sandbox, the module we're going to use is c...
Input Button padding in ie 7
.button1 input[type='submit'] {
background:#C30;
padding:6px 30px;
color:#FFF;
font-size:18px;
border:none;
cursor:pointer;
}
<div class="button1">
...
Loading an external SWF file and Instantiate Class From a swf in flex using as3
SWF files are loaded using the Loader class:
1.Create a new URLRequest object with the url of the file.
2.Create a new Loader object.
3.Call the Loader object's load() method, passing the URLRequest instance as a parameter.
4.Call the addChil...
How to resize images in responsive design
Responsive Image
You can make the image auto resize to the max width of the boundary by using max-width:100% and
height:auto.
img {
max-width: 100%;
height: auto;
}
Responsive web design is working on mobile device and Ipad
The Viewport Meta Tag
<meta name="viewport" content="">
Within the content=" " you can enter a load of comma delimited values, but were going to to focus on the fundamental ones for now.
For example, if your mobile design is purp...
Building AssetBundles
AssetBundle
AssetBundles let you stream additional assets via the WWW class and instantiate them at runtime.Note that bundles are not fully compatible between platforms. A bundle built for any of the standalone platforms (including webplayer) ca...
Avoid Strong Reference Cycles Objective C iOS sdk
How to Avoid Strong Reference Cycles
Avoid strong delegates
Avoid strong IBOutlet
Avoid strong reference variable inside the Blocks
Although strong references work well for one-way relationships between objects, you need to be carefu...
Memory management under ARC
ARC Memory management
1)Methods you cant call (or override) anymore
You will have to remove all calls to these methods without substitution:
1)retain
2)retainCount
3)release
4)autorelease
5)Dealloc
You also cant use the re...
Beginners guide to Search Engine Optimization (Part 2)
SEO- Keyword Research and Tagging (Part 2)
In the second section of this post we throw light on some of the most important tags of SEO. If used correctly these are sure to give you a head start n the content marketing domain.
Header Tags
...
Importance of Blogging
Why Should I Blog
Before focusing on the main theme, I would like to share some views on why I am writing this blog
the whole day i was thinking that what should I write?
And the last question that hit my mind and which might be hitting m...
Publishing a website on Windows Azure
Deploying Windows Azure Website using Visual Studio Web Publish wizard
Create your Windows Azure Websites (shared or reserved) and get the publish profile by selecting Download publish profile in your website`s Dashboard page on Windows Azu...
DontNetNuke 7 Setup and Installation
DotNetNuke 7 Setup and Installation is pretty much different then its previous versions. Following are the steps to setup a project in DNN latest version (7.0.4):-
copy DNN Community Edition files to C:/websites/dnndev.me (dir used by templa...
How to Override Inline CSS Styles
Inline styles are those defined in the HTML itself, e.g.
<p>
This is an
<strong style="color: red;">inline style that should be blue</strong>.
</p>
Inline styles have the highest priorit...
Adobe Kuler for Color themes
Adobe Kuler is an online application from Adobe Systems that lets individuals try, create and save various colour schemes, each of which consists of a set of five colours. After downloading Switchboard from Adobe Labs, users using the desktop ver...
How to install java on browser
How to install Java web plug-in?
Here is an easy guide for you to install Java on your specific system:
1. Windows
a. First of all you need to check whether you have Java on your system or not.
b. You can simply do this by going o...
increase and decrease iphone volume
If you want to increase the volume of iphone in a specific app and then reduce it to it's current volume. The following code might get helpful:- (NOTE:Include FrameWork: MediaPlayer.framework )
-(void)exampleFuctionSample{
NSLog(@"");
[s...
Sorting
NSSortDescriptor *frequencyDescriptor = [NSSortDescriptor sortDescriptorWithKey:@""
ascending:NO
comparator:^(id obj1, ...
FFMPEG Auto Installer
Found a shell script that installs FFMPEG with all the required modules rightly named as FFMPEGinstaller.
The script can be downloaded from http://ffmpeginstaller.com
Hope this helps with the installation of FFMPEG.