Thursday, 31 December 2015

How to Delete Past search and Web Browsing History in Google

Hi Friends,
Today I am going to explain the, how we can delete past search and web activity data, If you want know How to save Past search and browsing activity in Google you can visit my previous blog post.
Today Internet security and privacy is giant problem faced by many of us. Many of us don't know actually Google tracks our past search and web activity date by date and time by time. And many of us don’t want to Google look into our privacy. You can use one of the temporary methods like use the Incognito mode in Chrome or private browsing. Now how we can do that. Just press Ctrl + Shift + N or you manually go to menu and open a New Incognito Window.
And In the case if you are using Mozilla firefox, you just need to Press Ctrl + shift + P Web page you open in incognito windows do not let your browser to create history of that website, cookies search history and cookies. But your Downloads and bookmarked website will be there for use.
Following are the steps to delete your save searches and other activity at Google:

Procedure for Deleting an items only

delete-Google-Search

Read full blog at our highly specific C, Java, PHP, Javascript, android, iPhone developer forum about the topic described above “How to Delete Past search and Web Browsing History in Google“. You can also learn much more about different programming technologies and can enhance your tech skills

Monday, 28 December 2015

How to Search Theme Based SEO Link Building Data?

3612


Being an Internet marketer link building is not considered as a difficult task, however searching quality data for link building is one of the most important challenge that every SEO expert faces during the monthly off-site SEO maintenance of any web project. Keeping in mind this challenge, the first question that arises in the mind of SEO developers is “How to search theme based SEO data for a website to get backlinks?

Need of Theme Based Link-Building

This most frequently asked question by all SEO guys makes them struggle to find the best highly business relevant web and local business directory to submit their website. This niche SEO link building data has been considered as more important after the release of Penguin and Panda updates and will hold the importance in future too. many SEO firms are purchasing theme based web and local business directories data from data seller organizations which is not the solution and the right way to build back-links. These all are only tricks that Google and other major search engine are aware about it. There are no fruitful results of those money that have been spent on buying those directories for online marketing as Google releases its updated algorithm time to time and that leads to rank drop for those unnatural link builders and at that time the website site owner will ask to refund their money, but no one wants to refund the money so the business deal breaks down. This is the biggest challenge for all SEO firms to maintain the business deal.

So the big question comes in the mind, how we can make our web-site's keywords ranking stable on SERP after a these algorithm update from Google? The simple answer is try to make the website user friendly, add quality content with combination of different keyword phrases. And the second thing that you should keep in mind about maintaining

Read full blog at our highly specific C, Java, PHP, Javascript, iPhone, java questions and answers forum about the topic described above "How to Search Theme Based SEO Link Building Data?". You can also learn much more about different programming technologies and can enhance your tech skills.

Wednesday, 16 December 2015

Technology Social Networks -An Evolution for IT Firm

Social networking platforms have gained immense popularity among people from all walks of life, with features like social profile sharing, liking or commenting on posts or activities of others on their timeline. Social networking sites fall under two categories - general and technical.

General social networking sites encourage social interaction by allowing people to create their social profile. People on general social networking sites share their ideas, photographs of events they have lately attended, and post comments on images and content of others. However, a general social networking platform does not include ‘Niche Targeted Approach’. As a result, many people come across posts and ideas they don’t understand well, thus ignore them. Facebook, Twitter, Google Plus, LinkedIn and Instagram are some great examples of general social networking sites.


A technical social platform is the one that enables collaboration of like-minded people related to some technology. The content shared on technical social networks is only meant for people who either know or want to learn technology. For example, an Android developer can share his expertise or get his queries resolved by connecting to a person who knows about Android on Android Developer Forum. Likewise, there are many social networks available online for diverse fields, such as medical, programmers, travelers, lawyers etc. Some brilliant examples of technical social sites are Stack Overflow, Code Project, FindNerd.com, Dreamincode.net, Snipplr.com and C-Sharpcorner.com.


social-media-blog

Benefits of tech social media sites are as follows

  • Tech portfolio presentation
  • Paves the way for social collaboration with other techies
  • Posting and reading make tech social sites a kind of knowledge sharing center,Tutorials make learning easy
  • People can easily find answers to their technical queries
Creating a portfolio on a technical social site generally requires a profile picture, skill-set details, like Php, Java, C etc, a brief summary about the user, academic qualification, specialization and achievements. What sets apart a general social networking site from a technical one is connection with like-minded people only. On a tech social networking site you have a large community of people who share ideas related to a particular technology, therefore eliminates any room for irrelevant information. A portfolio on a tech SM site lets others know about you and your expertise. You could become a popular member of a particular tech SM site by sharing posts that are important and resolving queries of other techies.
Members share content on a tech sites through blogs, journals, tutorials, case studies, answers to queries etc. People find technical SM sites very engaging as they discuss technology through comments and replies like an iOS developer can easily discuss their ideas on any iOS developer forum. The same features are also available on general SM sites, but Tech SM sites give rise to much better engagement. Virtues of Tech SM sites are not restricted only to computer/software industry as education, banking, telecommunication, etc seek benefits from them too.
Content marketing has now become an important cog in the wheel of marketing strategies. Almost every business understands the importance of content marketing and has a dedicated team for posting and sharing quality content through digital media. Content marketing helps attract visitors to a website. Once people start recognizing you through what you are saying and offering to them, they are more likely to become your loyal customers.
Human beings keep on evolving to adapt to difficult conditions and become better. Same goes for technology that has showed us some incredible advancements to make this world a much better place. General SM sites have enjoyed a great success in the last five years. But it’s now time for Tech SM sites, like FindNerd and Stack Overflow, to become a bandwagon. It’s a simple calculation, “the more we learn, the more we earn” and technical SM sites are providing the best platform to people world over to connect to technical experts and increase learning.
Read here similar type Web Mobile App Development Blog at our highly specific C, Java, PHP, Javascript, iPhone, android questions and answers forum about the topic described above "Technology Social Networks -An Evolution for IT Firm". You can also learn much more about different programming technologies and can enhance your tech skills at FindNerd's Java question and answers forum.

Wednesday, 2 December 2015

How to Customize seekbar in Android

seekbar


If you want to customize seekbar in Android then follow the steps mentioned below:- 1) To customize seekbar background create a new xml file in your project's drawable folder .

 seekbar_background.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <gradient
  4. android:angle="90"
  5. android:centerColor="#fff"
  6. android:endColor="#fff"
  7. android:startColor="#fff" />
  8. <corners android:radius="2dp" />
  9. <stroke
  10. android:width="2dp"
  11. android:color="#fff" />
  12. <stroke
  13. android:width="2dp"
  14. android:color="#fff" />
  15. </shape>
2) To customize seekbar progress create a new xml file in your project's drawable folder .

 seekbar_progress.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <gradient
  4. android:angle="90"
  5. android:centerColor="#7FBD5C"
  6. .....
Read full blog at :How to Customize seekbar in Android

You can check more informative blogs and tutorials at android development blogs section and can also browse the android developer forum for posting and viewing latest questions on android development.

Tuesday, 1 December 2015

How to build SEO friendly website in 5 steps ?

seo

Before i tell you 5 easy steps for creating website. Lets understand the technical terms which we should surely know to get good traffic through search engine. If you want to open your web portal , first you will have to think about your website niche. Now question here comes is "what is website niche, SEO and CMS ?

"Website SEO , Niche & CMS"

Niche : Website Niche means on which topic you want to open your website. What will be your website theme ? Now days what a fresher blogger do is he opens website on various niche. Means that his website will be mixture of various topics, that is absolutely wrong if we talk about SEO . Here another technical term comes "SEO" ? what is SEO ??

 SEO : SEO is search engine optimization. Visibility of website in search engine e.g google , yahoo.Google will rank your website according to your content which must be genuine not copied from any source.

 CMS (word press) : WordPress is content management system through which a blogger/writer writes for his/her website/blog. It is just like microsoft word. You can open your website if it is..... See more at: How to build SEO friendly website in 5 steps ?

You can check more informative blogs and tutorials at android development blogs section and can also browse the android developer forum for posting and viewing latest questions on android development.

Monday, 30 November 2015

5 Amazing Cloud Based Tools for Android Development

cloud base tools

Android is currently the most-used mobile platform worldwide, and without a doubt, has become immensely popular among app developers world over. Several software development kits (SDKs) are available in tech market to develop Android apps. However, using cloud based tools for Android development saves significant costs and gives rise to faster development of Android apps. With cloud-based tools, you don’t need to deploy your own server for running your app. It also saves you money by eliminating the need of a backend developer to code your app and establish a connection with database.


There are many virtues of cloud-based tools for Android development, and this blog sheds light on top 5 Backend as a Service (BaaS) available to power your Android app.

Parse  

Parse is a top-notch BaaS to develop a full-featured app in quick time, and add a scalable and powerful backend. With Parse, it becomes a doddle to store data, manage users, send push notifications, track analytics etc. Parse gives the flexibility of developing applications for all major platforms. Image source: blog.revivalx.com

Advantages of Parse are:

  1. Developers need less lines of code for API integration.
  2. Parse is a perfect fit for maps as goes really well with real-world latitude and longitude.
  3. Search functionality works really well with usage of keywords.
  4. Reduces complexity of handling data.
  5. ....
See more at: 5 Amazing Cloud Based Tools for Android Development

You can check more informative blogs and tutorials at android development blogs section and can also browse the android developer forum for posting and viewing latest questions on android development.

Sunday, 29 November 2015

How to Move Make Objects by Adding Force in Unity

There are two methods to make object move in unity:

 1. By changing its Transform (Position).
 2. By adding Force by using AddForce() method. download


In this blog I have mentioned, how we can make object move by adding force. Force and Velocity both are component of Physics. So, to make our gameobject come under influence of Physics we must attach a rigid body to it and then we can code it to move by adding force in different direction. Below is the script for your reference.

using UnityEngine;
using System.Collections;
public class BallScript : MonoBehaviour
{
void Update ()
{
if (Input.GetKey (KeyCode.UpArrow))
{..........

See more at:How to Move Make Objects by Adding Force in Unity

You can check more informative blogs and tutorials at android development blogs section and can also browse the android developer forum for posting and viewing latest questions on android development.

Friday, 27 November 2015

SEO Tip for Successful Domain Transition - Case Study

seo
While working as an SEO specialist, I have encountered with domain transition process from old domain to new domain, which was one of the most exciting and challenging task for me. I was the only one who managed this complete transition starting from strategizing, suggesting implementations to the development team along with analyzing the impact after complete transition of domain.
It was challenging because the client wanted us to retain the keyword ranking of some keywords which was performing well on major search engine like Google. As some of the SEO keywords are coming on top 3 position on page 1. Below I am sharing the complete transition process with a case study of SEO friendly domain transfer.

Transition Process Step 1 :-

- See more at: SEO Tip for Successful Domain Transition - Case Study
You can check more informative blogs and tutorials at android development blogs section and can also browse the android developer forum for posting and viewing latest questions on android development.

Tuesday, 3 November 2015

5 Tips for Maximizing Your Web Application Performance

Web applications are growing in popularity with every passing day due to a plethora of benefits it offers to users. With an internet connection, you can easily access a web app from any corner of the world. Unlike basic apps, a web app is not required to be installed on your computer. One of the examples of web apps is Google Docs, which gives you freedom to compile and maintain your docs without having MS Word installed on your system. All you need is a web browser to access a web app which sits on a web server, not your computer. Web apps are engaging and respond to users. However, despite many virtues of web apps, users walk away from a web app that takes a lot of time to load and does not provide a kind of experience users demand and expect.


web-apps

 

This article offers five tips to ensure high performance of your web app

1. Bandwidth: make sure you web app is available to everyone

Bandwidth issues generally crop up when there is a big surge in number of your web app users. For example, if you have a retail web app, you must keep in mind that festival seasons, like Christmas, will bring a lot of application traffic. If there is not enough bandwidth available, you will miss out on prospective buyers as no user likes to spend a lot of time on a web app that is too slow to load, especially when similar products are available via web apps of your competitors. Other ways to ensure high performance of your web app is to avoid hosting unnecessary images, videos and high resolution files. As each image sends a separate request to the web server, the performance of a web app is likely to decline. Web app development experts advice to consider bandwidth demands while designing a web app as your social media campaign and many other situations could lead to a sudden rise in numbers of web app users, making bandwidth a nemesis. HTTP compression plays a crucial role in improving performance of your web app. Compressed web pages give rise to higher speed of page downloads. Moreover, response time does not take long for a user for an HTTP request.

2. Give priority to CSS and Javascript location

The top of the website layout is the best place to display CSS links, whereas the bottom is the best for javascript. Load time increases when javascript is at the top. However, with CSS being at the top, users can easily see what they want even before the page fully loads.

3. Limit the communication with servers

The lesser the communication with servers, the better the speed and performance of a web app. You should...

Read Full Blog - 5 Tips for Maximizing Your Web Application Performance

Apart from this you can also post and view c, PHP, JAVA, HTML, iOS and Android questions and answers at FindNerd’s community forum.  

Monday, 19 October 2015

How to download file in liferay 6.2 ?

Hello Guy's
Below code will help you to download file from server using liferay 6.2.
Here I am writing a portlet to download file.
For better understanding create portlet in your eclipse and follow below steps :
Step: 1
Edit view.jsp and put below code
 
  1. <%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet"%>
  2. <%@ taglib prefix="liferay-portlet" uri="http://liferay.com/tld/portlet" %>

  3. <portlet:defineObjects />

  4. <a href="<portlet:resourceURL/>">Download</a>
  5.  
When you click on "Download" link, It's call to serveResource(ResourceRequest request, ResourceResponse response) which is defined in below class.

- Read the full Blog at: How to download file in liferay 6.2 ?

FindNerd’s Php questions and answers forum is developed for those tech geeks who don’t want to wait for a longer duration of time, as the community members within FindNerd can answer any android query within shortest possible time frame.

Apart from this, If you have any language query like C, Java, JavaScript, iOS, Html, PHP etc . you can post at FindNerd’s Java questions and answers forum.

Friday, 16 October 2015

Gamentio.com Launched Indiegogo Campaign for 3D Social Casino Gaming

Ever thought of playing a game of cards with your friend who sits half way across the world, but still relishing the fun & excitement of an enthralling card game like you are playing on a table together...? Ever imagined that expressing yourself in an online card game will be as easy as a click...? Ever dared to do a victory dance after beating a higher ranking player...? If not, then brace yourselves, cause a new kid is in town who is going to change the entire scenario of online card games. Presenting to you, ladies and gentlemen and all the crazy card game lovers out there (drum roll please!) - GAMENTIO..!!!


Gamentio.com Launched Indiegogo Campaign for 3D Social Casino Gaming Portal


So, Gamentio Team is feeling proud and having an immense pleasure to announce that, our team has just launched a Crowdfunding Indiegogo Campaign for our upcoming 3D Social Casino Gaming Portal. Join the revolution with Gamentio.com to transform best ever multiplayer 3D Social Casino gaming portal like never before! Just back us to enhance our game with extreme creativity and innovation. Do support our crowdfunding Indiegogo campaign and learn more about our game at https://www.indiegogo.com/projects/gamentio-3d-social-casino-games#/

Tuesday, 16 June 2015

Introduction about SEO MetaTags

What is Meta tags

Before knowing about Meta Tags, you should also know what is Metadata? Metadata is data about data or data which gives information about data. In webpages Metadata are used with HTML codes called meta tags, it provides the information about the HTML documents which are not been displayed on webpage but will be machine readable metadata and always used inside Head tag of html codes of the page. Meta tags tags includes element which describes page description, keywords and other related information about the webpage so that search engine can categorize the page correctly.

Elements of Meta Tags Beneficial for SEO:

There are many elements of meta tag but some useful for SEO perspective are: Meta title tag, Heading tag, Meta description tag, Meta keywords, Image alt tag, Author tag, Robots tag, GEO tag, Anchor tag

 - See more at: http://findnerd.com/list/view/Introduction-about-SEO-MetaTags/1429/

 

Monday, 15 June 2015

"Content is King" This is a very well known phrase we get to hear, Content in some way or the other and it holds the most significant role in our daily life, back from our toddler days to present date. It is the most essential part of our communication process since we mainly rely on communication, what we speak how people react to that. Even a one year old child tries to communicate in some sort or the other with those distracting sounds they make that little thing is communication which they establish with us. You must have seen newborns very closely observing your speech,shape those lips make the voice which comes out from your very mouth that my dear friend is content which has a information to it. Content is sometimes expressed through mediums such as speech, writing and other forms of Arts. Content is not limited,but is used through some modern forms such as Print (news paper,magazine, books) Interactive events plays, theater, live events, conferences and stage performances, Multimedia like T.V, Radio,Films, Audio C.D and Internet. In the present modern scenario Internet is a well know thing it is a must have technology today, from a school going girl to an old granny who likes to communicate with her on holidays. Usage of Internet has taken mighty leaps, but 'have you wondered what makes the Internet running...? Its the rich useful content people put for its seeker from email,maps,news to entertainment services. So how does rich content helps in generating business Content? It is also helpful in fetching the desired traffic to a particular website for that specified purpose some S.E.O (Search Engine Optimization) content is created with the purpose of attracting search engine traffic,for reference here are some optimization tricks most commonly practiced. 


SEO Content : To tweak any product/website in Google search engine's results one must optimize the following factors.

Key word Research : Write in context what people are already searching for on the Internet(something relevant).

Key word Optimization : Learn where to,and how to use keywords in your content for maximum search ability their are websites which guide through like SEMoz .
Content Organization : Make sure that your content is organized in every logical way which is also good for SEO tweaking.  

Content promotion : Increase visibility to every new content created by sharing it on social networks and building links to your content both internally and externally .

 
You can also ask your tech queries at:

Friday, 12 June 2015

Digital Marketing in India

Indian Economy is growing at the growth rate of 5 percent 2013-2014, it is the tenth largest economy in the world in G.D.P comparison and third largest in P.P.P (Purchasing power party). India is doing well in international and domestic markets. Agriculture is the largest sector in India, manufacturing industry has fair share of its contribution towards country's economy leading sector is the service industry which consists many industries such as banking, telecom, retail and I.T. Where in outsourcing is an constant contributor from BPO to KPO also digital outsourcing as an emerging for many services such as social media, online advertising and website designing.

Contribution of Internet in Indian economy : Internet access is largely by the working professionals, communicating through email is part of their work which is widely used by all domestic and MNC firms and intensifying use of mobile services mainly by the youth of India. Fresh graduates passing from college updating their lifestyles on social networks where they usually spend their time socializing with friends and family.

 Young India: As a forecast India will be the youngest country by 2020, every third person in Indian city is a youth at present which will be a boon to the economy in years to come as young Indians will join the force to contribute to the economy. Youth now have greater participation in politics and over all view of India as an developing super power house. Since the globalization in 1991 Indians have shown their great interest in brands and this has fueled by Internet use and digital promotions from television to Internet promotions.  

Changing India : India is changing drastically each passing moment, be it social changes or the latest Moon Explorations to Mass.There is an overhauling drive of change in India, people want India to change in every aspect of life. We now have very liberal and modern approach towards life. Improved lifestyles and more disposable income in hand Indians are aspiring for the best in life. The number of Indian users connecting to Internet through Laptop, Desktop, Mobile handsets, or smart TV all adds up to 94.7 million approximately. 2.38 corer users access internet from mobile phones. A typical Indian user mainly uses internet for; search, online communication and social networking.


- See more at: http://findnerd.com/list/view/DIGITAL-MARKETING-IN-INDIA/1790/  

Wednesday, 10 June 2015

SEO Friendly Article Writing For Marketing

An article writing for promotion purpose is an important thing in the field of Digital Marketing. Before start writing an article for marketing one should know that there are several guidelines which are necessary to make it perfectly SEO friendly and that best suited as per the guidelines defined by the search engine. For a marketing article, there are three important sections that need special attention while writing about any topic. These three important sections are Main Title of the article, Body of the article & the last but important one is the Resource Box which is also known as Author box.
Here are some guidelines how to write a perfect Title, the body of article & the content in resource box.

Title:

Try to place the keyword phrase that you’re targeting at the beginning of your headline.
Title should be 3-8 words long.
It should be more specific than the keywords that are associated with your website.
If possible use sub title with secondary keyword.
Don’t use technical jargon.

Body of Article:

Before you begin writing your article, you should know all of the keywords that are relevant to the topic.
Try to use your keyword phrase in the first 3 paragraphs.
Just write naturally about your topic. Don’t do keyword staffing, as it should be easy for a reader to understand and that it provides helpful information.
Carefully place your keyword phrase within 5 lines.
Keep it Short - Limit your article to less than 1000 words.
The density of keyword, no more than 3% in the body content.
Use keyword phrase to appear in different forms, for example, use key phrases like ‘race cars,’ ‘racing cars,’ ‘race car gear’, etc.
Be sure to use proper spelling and grammar.
Divide your articles into chapters or units, which will make the articles reader friendly. Or you need to use sub heading for your long article.
Never copy someone else’s article and paste as yours, you can write similar article and give a link to source of your information.
Make goal-oriented plan in order to determine how your content work for your website?
You can add your Social Media Marketing Pages like Facebook and Twitter, Google+ links so they can follow you.
If possible include an image, to attract the visitor.
- See more at: http://findnerd.com/list/view/SEO-Friendly-Article-Writing-For-Marketing/1791/

Monday, 8 June 2015

eBooks : Part of Modern Lifestyle

EBooks are the modern way of learning and studying. Most of the students prefer eBooks because of their portability, easy to manage, read and more interactive features than printed books. eBooks are not only for students, rather it is also becoming the part of young generation and businessmen. Most of the printed books, magazines, newspapers, reports and many other readable things are available in eBooks. These features makes book reading very easy and interactive. So now we can say that eBooks are becoming the part of modern lifestyle.

eBook Devices and Formats

There are many ebook devices like kindle, sony reader, nook, apple ipad and many other devices which are compatible with different ebook formats. IT industries are now not only working for providing ebooks but also developing different formats of ebooks like ePub, eReader, Amazon Kindle Format, iPhone, iPad formats, KF8, PDB, ePDF, .lit, etc. They convert ePub to Mobi, Mobi to ePub, sony reader to nook etc., thats why conversion services like ePub Conversion, .mobi conversion, kindle conversion service are widely accepted by IT industries.

eBooks Popularity Statistics

Popularity of eBooks can be calculated on the basis of statistics that says 20% of books sold in US during 2012, were eBooks. Therefore eBooks are the major part of the books sales which is keep on increasing day by day. eBooks have generated total revenue of $3B in US in 2012, which is increased by 44.2% as compared to 2011. eBooks are also playing a major role in US economy. In US, a person spends 0.9 hours per day in reading eBooks. People also spend a significant amount of their time in reading books online. In 2012, 34% of eBook readers were from urban states whereas 32% were from suburban and 20% were from rural states. eBook readers include a large amount of young aged people. It has been noticed that 31% of readers from 18 to 29 years age group have an eBook as per the past 12 months. Young generation is rapidly using eBooks in their daily life. It is becoming their part of life because of their benefits which offers them more reliability. Today more and more people are less interested in printed books and moving towards eBook reading. 75% of Americans aged 16 and over read printed books in 2012 which was 78% in 2011. However, eBook readers count is rapidly increasing, as 23% of American aged 16 and over read eBook in 2012 which was 16% in 2011.


- See full blog at: http://findnerd.com/list/view/eBooks--Part-of-Modern-Lifestyle/1827/

Tuesday, 2 June 2015

How to Create Google Analytics Account?

Google Analytic is one of the best tools for analyzing website's traffic data and also enables us to track the user's location. Its a powerful web and mobile analytic solution that is easy to use. With this powerful and free service of Google,we can easily measure the traffic of Online Marketing Campaigns like PPC etc.


Few steps to sign up and setup Google Analytic


Follow the simple steps mentioned below to create the analytics code for a website:

Visit www.google.com/analytics and signup for a new account. Click the Google Analytic Button and Follow the instruction accordingly.

Click on Start Using Google Analytic Button.

Specify an Account Name.(Try to use specific or descriptive name).

Then Comes to Property Section,enter the Website or App address.

Next comes to Select the specific Category of your website.

Then Select the reporting Timezone.

Then click on the Get Tracking ID Button to get the Code.


For full blog, Please visit: Create Google Analytics Account

Monday, 25 May 2015

Responsive Web Design and Responsive Frameworks

In this session, we will learn about Responsive Design and will check out some of the popular frameworks related to it. So, without much further ado, let's begin:


What is Responsive Design?


"Responsive web design (RWD) is an approach to web design aimed at crafting sites to provide an optimal viewing experience—easy reading and navigation with a minimum of resizing, panning, and scrolling—across a wide range of devices (from desktop computer monitors to mobile phones).” 

- Wikipedia
In other words, a RWD is a design which 'responds' or 'adjusts itself' to the device rendering it. This is achieved by using:
    • Fluid grids or Proportion based grids: Use relative units instead of absolute ones to size page elements. E.g. A page element measured in x% of the screen-size would be more flexible and adaptive than the one measured in fixed pixels or inches.
    • Flexible images: The above relativity principle applies to images as well.
    • CSS3 media queries: This allows one to use different CSS rules to configure the page according to the device.

What is a RWD Framework?

As one can imagine, the emergence of smart-phones and tablets as the primarily used devices for web browsing has necessitated the new (also the old) websites to adopt RWD in a big way. This necessity in turn, has given rise to a lot of techniques, which again by virtue of being similar (they have a common goal!), have lead to many RWD Frameworks. These frameworks are nothing but ready-made packages made up of a structure of files and folders of standardized code (HTML, CSS etc). These include pre-defined styles and rules such as the grid width, font sizes, button and form styles etc. which help us to create RWD compliant websites without reinventing the wheel every time!

So which Framework to use ?

Like we discussed above, since RWD has come up in such a big way, a lot of frameworks also have evolved. While the goal of each is to provide RWD compliance, they differ from each other based on the solutions they offer in terms of complexity of the design and the amount of flexibility one is after. Here, I will be providing a list of few popular frameworks with their features:
For more Information, Please visit my full Blog: Responsive Web Design
Responsive Web Design
Responsive Web Design

Friday, 22 May 2015

HTML5 Responsive Design - ViewPort Meta Tag (Part 3)

Hello Friends,
In this article, we’re going to focus on another important concept of responsive design, i.e. the 'Viewport Meta Tag'.

View-Port Overview

The viewport meta tag was introduced by Apple to help web developers improve the way web pages are displayed on the iPhone but obviously now it’s used for all mobile devices. This basically tells a mobile device, that the current page is optimized for mobile and it should display it in a certain way and not in the default web layout. In simple words: “A meta viewport tag provides the instructions to the browser on how to manage the page's dimensions and scaling.” The zooming in and out of the page that you can do is because of this whole viewport business only. Let’s look at how we use the meta tag:

<meta name="viewport" content="width=device-width, initial-scale=1.0">


In the above example, this meta tag instructs the mobile device to not zoom. This allows the responsive design for mobile devices to be loaded in the scripts.

 

Virtual Viewport can be split into two:

Visual Viewport: The part of the page which is currently shown on the screen.
Layout Viewport: Visual Viewport + The part of the page which currently lies outside the display area. This is basically the mobile equivalent of desktop resolution. Safari iPhone uses 980px, Opera 850px, Android WebKit 800px, and IE 974px as the default.
In the above examples, we saw only two properties of the viewport meta tag: width and initial-scale; but there are others which are listed in the following table:

Property
Description
widthThe width of the virtual viewport of the device.
device-widthThe physical width of the device's screen.
heightThe height of the "virtual viewport" of the device.
device-heightThe physical height of the device's screen.
initial-scaleThe initial zoom when visiting the page. 1.0 does not zoom.
minimum-scaleThe minimum amount the visitor can zoom on the page. 1.0 does not zoom.
maximum-scaleThe maximum amount the visitor can zoom on the page. 1.0 does not zoom.
user-scalableAllows the device to zoom in and out. Values are yes or no.
Above mentioned properties of the viewport would be added in the 'Head' section of our website. Below are some examples which show how we can implement these viewport elements:
  • In case your mobile design is set at 320px, we can specify the viewport width:
<meta name="viewport" content="width=320">
  • For fluid layouts, we need to match our layout width to the device width:
<meta name="viewport" content="width=device-width">
  • To take the advantage of the entire landscape mode and to manage full screen mode of device browser, we add the attribute 'initial-scale=1', which command the device browsers to form a 1:1 relationship between “CSS Pixels” and the “Device Independent Pixels (DIPs)” irrespective of device orientation:
<meta name="viewport" content="initial-scale=1">
  • Arrange an accessible viewport: In addition to set the initial-scale, we can also control the following attributes on the viewport:
    • minimum-scale
    • maximum-scale
    • user-scalable
    These attributes are essential to restrict the user's ability to zoom the viewport, potentially creating content render issues.
  • Combining Viewport Values: The viewport meta tag can add individual values as well as multiple values, allowing multiple viewport properties to be set at once.

  • ** Whenever we need to add or combine multiple viewport attributes in a single set, we have to use “Comma(,)” after the attribute. E.g.:

    <meta name="viewport"content="width=device-width, initial-scale=1, maximum-scale=1">

CSS Viewport Rule:

“This specification provides a way for an author to specify, in CSS, the size, zoom factor, and orientation of the viewport that is used as the base for the initial containing block.”
- w3.org
Basically, this rule allows one to attain the functionality of the viewport meta tag by way of CSS @viewport keyword without cluttering up their HTML. This method helps to keep the style separately for content and provide a more semantic approach. Like viewport meta tag was introduced by Apple, this approach was first proposed by Microsoft in the light of IE10 explorer ignoring viewport meta tag in some situations.
Examples
@viewport {
width: device-width;
zoom: 1;
}
@-ms-viewport{
width: extend-to-zoom;
zoom: 1.0;
}

End of this Session

In my last two blogs, I talked about the 'Media Queries' for responsive design. These are follows -
In this session, I have tried to cover as many aspects of 'ViewPort' as to give the reader a good enough understanding of its role in responsive design. However, the field of responsive design in itself is quite broad, so I’ll be coming up with some new related topics in my next articles. Hope you’re finding these sessions enjoyable and informative. Thanks!
For more Information, Visit : HTML5 Responsive Design

Thursday, 21 May 2015

Press Release Creation for Announcing the Company's News or Event

Releasing the Company's news related to the launch of a new product or service, hosting of an event or a function is an efficient way to grab immediate attention of audience which is an important & first step needed to market any product or service or an event in front of the targeted audience. That's why the creation of a Press Release is considered as an important task for the online marketers.
A press release consists of following main section including Title, Summary, Body and author or contact information. Here are some instructions that one should need to take care while creating an effective press release for distribution among the wide audience all around the world.

Title Guidelines

• Always try to write user friendly title & if possible include keyword into title.
• The title of the PR should be within 100 characters.

Summary Guidelines

• Write an attractive summary of the PR & embed keyword in it.
• The summary of PR should be between 220 to 250 characters, as the summary part of the PR is the description which is picked by the search engine on search engine result page.

Body Guidelines

• Try not to use jargon ( Jargons, the special words which are related to any technology or business, as they are very difficult to understand by general audience)
• Bold other secondary keywords or phrases which are important.
• Try to embed anchor text links on your important keywords,but don’t use them too much.
• The embedded link should be a clear call to action, so that audience are redirected to the specific page where we wanted them to re-direct.
• The length of the press release should be at least 250 words and always try to include 3-4 keyword phrases with more focusing on primary keywords.
• If the press release is very long then we can divide it into different section which is easy for audience to read and understand.
• We may also use 2-3 quotes or phrases related to the business and make it an attractive and interesting press release.
• Try to focus more on your topic and the targeted audience.
• Always write a press release for human not for search engines so that it is clear to understand and don’t do keyword stuffing.

Author or contact info Guidelines

• We may write 2-3 sentences about the company.
• Website's home page URL should be included here.
• One dedicated person's name need to be mentioned who will consistently be the media contact for the company.
• Properly give all the details related to contact person or company; Like name, address, phone, email, and website.
For more Information, Please Visit: Digital Marketing

Tuesday, 19 May 2015

SERP- Search Engine Results Page

In today's online world it is necessary and essential to understand the term SERP.

SERP stands for Search Engine Result Page, which refers to the listing of the search result; returned or displayed by the search engine when user enter any query in the search bar.

In other words, When user enters/inputs any query in the search engine (Google, Yahoo, Bing etc) result returned by the search engine is SERP.

Components of SERP

 

User Search Query: It is actual search query, keyword or a set of keywords typed by a user in search engine search bar.

Organic SERP: These are the natural listing generated by the search engine on the search result page based on the relevance of the term or keyword entered by a user in the search bar. If you want your site to appear on the top of the search result page like Google then you have to work on off page and on page SEO.

Paid SERP: These are the are advertisements, or sponsored links included by search engines, to use this service or to display your ad here. You have to apply pay-per-click search campaign (i.e- google search engine provide Google Adwords- keyword planner).





For more information, Please visit: Search Engine Result Page








Resolve The Canonical Issue with The Help of 301 Redirect


Hello reader!
In this Blog I will cover the topic, Canonical Issue, There Consequences and how to Resolve and get rid from such issues.
So lets first start with,

What is Canonical Issue

When the same content is displayed by the one website in different url then there is a canonical issue. For example- your website is abc.com and while entering the url in browser by www.abc.com and abc.com (without www) it show same content without redirecting it to abc.com or www.abc.com means that one should be the preferred url either www Or without www.

Consequences of Canonical Issues

In such case Search Engine (Google, Yahoo, Bing etc) index both the pages one which includes www and other one without www (www.abc.ocm and abc.com) separately which will lead to content duplicacy and will penalize the webpage.

How to Resolve Canonical Issue

To resolve such issue you have to make one preferred url either www or without www.
For example if you take a preferred url www.abc.com and user enter directly abc.com in browser it will be redirected to www.abc.com.
Now the question comes how to make one preferred URL
To make one preferred url web developer have to implement (301 redirect code) URL Redirection via code htaccess redirect in at backend of the website and set the status as "moved permanently".

How to Redirect to www using htaccess redirect

With the below code you can create a .htaccess file, which will ensure that all requests coming to i.e abc.com will get redirected to www.abc.com. The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
  1. Options +FollowSymlinks
  2. RewriteEngine on
  3. rewritecond %{http_host} ^abc.com [nc]
  4. rewriterule ^(.*)$ http://www.abc.com/$1 [r=301,nc]
Please use or take abc.com and www.abc.com with your actual domain/url name.
For more help please visit the web link below: Resolve 301 Redirect

Monday, 18 May 2015

Introduction to Social Network for Developers


FindNerd.com is a collaborative platform for web & mobile developers where they can coordinate with each other and share knowledge through various exciting features like blogging, forum posting , video blogging, etc. To know more about exciting features please view this video blog.



In this Video Tutorial, we are describing a brief Introduction about FindNerd.



For complete information view the video blog on Social Network for Developers

Thursday, 14 May 2015

Social Media Marketing and its benefits

With each passing day Social Media Marketing is becoming more popular and broader. Its not only contributing in the growth but also in the success of the company. Entrepreneurs have analyzed social media efforts are providing more exposure to their business and increasing the traffic of their websites. With these benefits Social Media Marketing can not be ignored for long.

Let's take a look on some benefits of Social Media Marketing:
Saves Money: Every entrepreneur is money minded and always think how and from where they can save money. Social Media Marketing is a resolution of it; Sites like Facebook, LinkedIn, Twitter and others allows you to share and promote the content that too without spending a single penny.

Helps in Increasing Website Traffic: Post the link of your website on Social Media Site, this will increase the traffic of your website, of-course not instantly but it surely will, and once people start liking your website they will become the regular visitor of it and share your website on their Social Media Pages as well.

Make you Understand the Market Needs: Get Regular Response of your website and make the necessary changes as per market demand. This will encourage you and let you know about the good and bad points of your website.

Pros and Cons of the Product: On social media websites people response will provide the knowledge whether the content is being liked or not. The likes and comments on the product will encourage you launch more.

These are some basic points of Social Media Marketing but with every good something bad will come as a gift. As we know, Reach Is Important! But reaching in a right way is more important. Social Media Marketing is vast and increasing rapidly, hence, single mistake done can take the company or the product towards a big fail.

Join your hands with Social Media Marketing to take your company to a desired niche!

My next article will provide information about the activities of Social Media Marketing to promote your business or product.

For more Reference Click here

You can also see such type of Blogs at : http://findnerd.com/NerdDigest