Monday, 29 April 2013

How to re-direct an old custom domain - and all its posts - to a new one

This article describes options for making link to a blog's old URL automatically point to the blog's new URL after a custom domain change.



If you have a blog made with Blogger which has a custom domain, then it's easy enough to switch this blog to use a different domain. Doing this moves both the content (posts and pages) and template (layout, structure, colour-scheme).

Often when people make this type of change, they want to set up re-directs so that if anyone clicks an external link to the old custom domain, they are re-directed to the same content on the new domain.
For example, www.old-domain.com/current-Page.html should redirect to www.new-domain.com/current-page.html.)

With many other website building tools, the .htaccess file for the site lets you set up re-directs like this. But things are little different when you use Blogger.


Your Blogspot address VS your custom domain

Your blog always has a blogspot addresss - let's call it: www.yourBlog.blogspot.com

When you publish to a custom domain, Blogger automatically handles the re-direction from www.yourBlog.blogspot.com to www.yourCustomdomain.com for you. This works at all levels, so the home page and every individual post/page are all redirected correctly.

To move your blog from from www.yourCustomDomain.com to www.newCustomDomain.com, you simply tell Blogger to
  1. Stop publishing your blog to www.oldCustomDomain.com and then to
  2. Start publishing it to www.newCustomDomain.com

(See Switching your blog to a different custom domain for more information about this.)

Once you have done this (and afer a little bit of transition time), Blogger handles the re-direction from www.yourBlog.blogspot.com to www.newCustomdomain.com for you - as before, this works at all levels, so the home page and every individual post/page are redirected correctly.

One point that many people mis-understand, is that after you have done this, there is no connection between Blogger and your old custom domain. You have various options (listed below) for what to do with www.oldCustomDomain.com - and you aren't limited to the features that Blogger offers. The only limits are based on what your domain registrar allows, and what tools you can (learn to) use.


Options for re-directing your old custom domain

Option 1: Registrar re-direction

Once you have stopped publishing your blog to www.yourCustomDomain.com, Blogger has no connection with it at all.

How you manage re-directions from it is totally up to the tools provided by the domain registrar. The simplest approach is to set up a "301 redirect" on the domain, which simply sends all traffic to it to another domain of your choice.

The method for setting this up depends on the tools used by your domain registrar - search their help files for terms like "301 redirect" to find out what is possible with tools.

See Using a custom domain for something other than your blog for advice about accessing your domain registrar account for the domain.

Advantages

  • This is the easiest approach, and doesn't require you to make a website of any type.
  • Visitors are automatically re-directed.

Disadvantages

  • Depending on how the registrar's tools work, visitors may be automatically redirected to your new home page, not the the post that they specifically followed a link to.


Option 2: Another website tool

If you know how to use another website development tool that does provide access to the .htaccess file for the site, then you could make a "site" that just contains page-and-post level redirections for all your existing posts and pages.

Advantages

  • This approach sends people to the exact content that they followed a link to.

Disadvantages

  • It could be tedious setting this up for every post and page, if you have a lot of them at the time when you change domains.
  • You need to choose and learn a very different type of website building tool to do this.


Option 3: use Blogger to make a site-level re-direction message

Make a totally new blog (eg    www.myBlogHasMoved.blogspot.com),

Publish it to your old custom domain

Give it one post that says
"www.oldCustomDomain.com has moved to www.newCustomDomain.com please update your links"

Use the Settings > Search preferences > Errors and redirections > Custom Redirect Custom Page Not Found  option to explain that your blog has moved, and send any traffic to that one post.

Advantages

  • This is a simple approach, using tools that you already know.
  • It will work forever (because blogspot domains don't expire).

Disadvantages

  • Visitors will not be automatically redirected: the best you can do is show a link which goes to a selected post or page in your blog, which the visitor needs to click to go to the blog.
  • The re-direction link is only to one specific page, not to the exact content that was linked to iniitially.  This is quite different from what many people want to achieve - blogger simply does not have that functionality.



A non-option: Blogger's custom redirect tool


Blogger has a function under Settings > Search preferences > Errors and redirections > Custom Redirects  that lets you set up custom redirects for individual pages.

However this isn't suitable when you change your custom-domain totally, because it only supports re-direction within the same blog, not to an external URL.

(And anyway, if you have a significant number of posts, it would not be practical.)



Other options

Have you found any other ways around this? Or any good tool for setting up .htaccess redirects on a domain that you used to use for a blog?  Share your experience in the comments area below.



Related Articles:

Using a custom domain for something other than your blog

Linking your blog and your website.

How to make a real website using Blogger

Switching your blog to a different custom domain

SEO Basics for Bloggers

How To Add A Tabbed Navigation Widget to Blogger

The tabviews are elements that allow us to group in a single container various gadgets and these can be selected via tabs.
Its main function is to save space on the blog to avoid scattered gadgets in the same category so you can group multiple gadgets into one. There are several methods for creating tabviews, some require jQuery, other MooTools, or any other script.
To add this widget to your blog, just follow the steps below:

Step 1. From your Blogger Dashboard, go to Template and click on the Edit HTML button

Step 2. Expand the style of the template, by clicking on the sideways arrow before <b:skin> ... </b:skin>


Step 3. Search using CTRL + F for the following tag:

]]></b:skin>




Step 4. Just above it, add the following code:

/* Tabview for Blogger
----------------------------------------------- */
.tabviewcont{
margin:15px 0;
padding:0;
clear:both;
}

.tabviewnav {
margin: 0 0 0 14px;
padding:3px 0; /* If you are using a Blogger Template change 0 with 15px */
font-size:12px; /* Font size of text inside tabs */
font-weight:bold;
}
.tabviewnav li {
list-style:none;
margin:0;
display:inline;
}
.tabviewnav li a {
padding:3px 6px;
margin-right:1px;
background:#F6F6F6; /* The background color of the tabs */
border-radius:5px 5px 0 0;
-moz-border-radius:5px 5px 0 0;
-webkit-border-radius:5px 5px 0 0;
text-decoration:none;
color:#222222;
}
.tabviewnav li a:hover {
color:#222222;
background:#EBEBEB; /* Background color of the tab on mouseover */
text-decoration:none;
}
.tabviewnav li.tabviewactive a,
.tabviewnav li.tabviewactive a:hover {
background:#EBEBEB; /* Background color of the active tab */
color:#222222;
}
.tabviewcont .tabviewtab {
padding:5px;
border:1px solid #EEEEEE; /* Border around the container */
background:#fff; /* The background color of the gadget */
}
.tabviewcont .tabviewtab h2,
.tabviewcont .tabviewtabhide {
display:none;
}
.tabviewtab .widget-content ul{
list-style:none;
margin:0 0 10px 0;
padding:0;
}
.tabviewtab .widget-content li {
border-bottom:1px solid #ccc;
margin:0 5px;
padding:2px 0 5px 0;
}

Step 5. Find the </head> tag and just above it, paste this script:

<script type='text/javascript'>
// Tabview for grouping gadgets

//<![CDATA[
document.write('<style type="text/css">.tabview{display:none;}<\/style>');function tabviewObj(argsObj){var arg;this.div=null;this.classMain="tabview";this.classMainLive="tabviewcont";this.classTab="tabviewtab";this.classTabDefault="tabviewtabdefault";this.classNav="tabviewnav";this.classTabHide="tabviewtabhide";this.classNavActive="tabviewactive";this.titleElements=['h2','h3','h4','h5','h6'];this.titleElementsStripHTML=true;this.removeTitle=true;this.addLinkId=false;this.linkIdFormat='<tabviewid>nav<tabnumberone>';for(arg in argsObj){this[arg]=argsObj[arg]}this.REclassMain=new RegExp('\\b'+this.classMain+'\\b','gi');this.REclassMainLive=new RegExp('\\b'+this.classMainLive+'\\b','gi');this.REclassTab=new RegExp('\\b'+this.classTab+'\\b','gi');this.REclassTabDefault=new RegExp('\\b'+this.classTabDefault+'\\b','gi');this.REclassTabHide=new RegExp('\\b'+this.classTabHide+'\\b','gi');this.tabs=new Array();if(this.div){this.init(this.div);this.div=null}}tabviewObj.prototype.init=function(e){var childNodes,i,i2,t,defaultTab=0,DOM_ul,DOM_li,DOM_a,aId,headingElement;if(!document.getElementsByTagName){return false}if(e.id){this.id=e.id}this.tabs.length=0;childNodes=e.childNodes;for(i=0;i<childNodes.length;i++){if(childNodes[i].className&&childNodes[i].className.match(this.REclassTab)){t=new Object();t.div=childNodes[i];this.tabs[this.tabs.length]=t;if(childNodes[i].className.match(this.REclassTabDefault)){defaultTab=this.tabs.length-1}}}DOM_ul=document.createElement("ul");DOM_ul.className=this.classNav;for(i=0;i<this.tabs.length;i++){t=this.tabs[i];t.headingText=t.div.title;if(this.removeTitle){t.div.title=''}if(!t.headingText){for(i2=0;i2<this.titleElements.length;i2++){headingElement=t.div.getElementsByTagName(this.titleElements[i2])[0];if(headingElement){t.headingText=headingElement.innerHTML;if(this.titleElementsStripHTML){t.headingText.replace(/<br>/gi," ");t.headingText=t.headingText.replace(/<[^>]+>/g,"")}break}}}if(!t.headingText){t.headingText=i+1}DOM_li=document.createElement("li");t.li=DOM_li;DOM_a=document.createElement("a");DOM_a.appendChild(document.createTextNode(t.headingText));DOM_a.href="javascript:void(null);";DOM_a.title=t.headingText;DOM_a.onclick=this.navClick;DOM_a.tabview=this;DOM_a.tabviewIndex=i;if(this.addLinkId&&this.linkIdFormat){aId=this.linkIdFormat;aId=aId.replace(/<tabviewid>/gi,this.id);aId=aId.replace(/<tabnumberzero>/gi,i);aId=aId.replace(/<tabnumberone>/gi,i+1);aId=aId.replace(/<tabtitle>/gi,t.headingText.replace(/[^a-zA-Z0-9\-]/gi,''));DOM_a.id=aId}DOM_li.appendChild(DOM_a);DOM_ul.appendChild(DOM_li)}e.insertBefore(DOM_ul,e.firstChild);e.className=e.className.replace(this.REclassMain,this.classMainLive);this.tabShow(defaultTab);if(typeof this.onLoad=='function'){this.onLoad({tabview:this})}return this};tabviewObj.prototype.navClick=function(event){var rVal,a,self,tabviewIndex,onClickArgs;a=this;if(!a.tabview){return false}self=a.tabview;tabviewIndex=a.tabviewIndex;a.blur();if(typeof self.onClick=='function'){onClickArgs={'tabview':self,'index':tabviewIndex,'event':event};if(!event){onClickArgs.event=window.event}rVal=self.onClick(onClickArgs);if(rVal===false){return false}}self.tabShow(tabviewIndex);return false};tabviewObj.prototype.tabHideAll=function(){var i;for(i=0;i<this.tabs.length;i++){this.tabHide(i)}};tabviewObj.prototype.tabHide=function(tabviewIndex){var div;if(!this.tabs[tabviewIndex]){return false}div=this.tabs[tabviewIndex].div;if(!div.className.match(this.REclassTabHide)){div.className+=' '+this.classTabHide}this.navClearActive(tabviewIndex);return this};tabviewObj.prototype.tabShow=function(tabviewIndex){var div;if(!this.tabs[tabviewIndex]){return false}this.tabHideAll();div=this.tabs[tabviewIndex].div;div.className=div.className.replace(this.REclassTabHide,'');this.navSetActive(tabviewIndex);if(typeof this.onTabDisplay=='function'){this.onTabDisplay({'tabview':this,'index':tabviewIndex})}return this};tabviewObj.prototype.navSetActive=function(tabviewIndex){this.tabs[tabviewIndex].li.className=this.classNavActive;return this};tabviewObj.prototype.navClearActive=function(tabviewIndex){this.tabs[tabviewIndex].li.className='';return this};function tabviewAutomatic(tabviewArgs){var tempObj,divs,i;if(!tabviewArgs){tabviewArgs={}}tempObj=new tabviewObj(tabviewArgs);divs=document.getElementsByTagName("div");for(i=0;i<divs.length;i++){if(divs[i].className&&divs[i].className.match(tempObj.REclassMain)){tabviewArgs.div=divs[i];divs[i].tabview=new tabviewObj(tabviewArgs)}}return this}function tabviewAutomaticOnLoad(tabviewArgs){var oldOnLoad;if(!tabviewArgs){tabviewArgs={}}oldOnLoad=window.onload;if(typeof window.onload!='function'){window.onload=function(){tabviewAutomatic(tabviewArgs)}}else{window.onload=function(){oldOnLoad();tabviewAutomatic(tabviewArgs)}}}if(typeof tabviewOptions=='undefined'){tabviewAutomaticOnLoad()}else{if(!tabviewOptions['manualStartup']){tabviewAutomaticOnLoad(tabviewOptions)}}
//]]>
</script>

Step 6. Finally, look for this line:

<div class='column-right-inner'>

Or if you use an old template of Blogger, search this line:

<div id='sidebar-wrapper'>

Step 7. Paste below one of these two lines, this code:

<div class='tabview'>
<b:section class='tabviewtab' id='Tab1' maxwidgets='1'/>
<b:section class='tabviewtab' id='Tab2' maxwidgets='1'/>
<b:section class='tabviewtab' id='Tab3' maxwidgets='1'/>
</div>

Step 8. Save changes, and go to Layout and there you will see the new areas to add gadgets.


You just have to click on Add a Gadget to add the gadget to the tab that corresponds, or drag a gadget you already have to that section.

If you want to add more tabs, then just add before the last </div> a line like this:

<b:section class='tabviewtab' id='Tab4' maxwidgets='1'/>

Note that each line you add should have a different ID, for example Tab5, Tab6, etc..

You can add multiple tabs, just repeat the last step and likewise remember to change the name of the IDs.

Remember that if your sidebar is too narrow, then you should not put a lot of tabs, or tab titles that are very long.
You should also note that this gadget does not speed up the loading speed of the blog, is only to group gadgets into one, even, depending on the blog-may take a while to load the tabview.

Increase Youtube Views : Secret Free Tricks and Methods


Youtube is the best video sharing platform on the internet and most of the internet marketters try to use it earn some money. But getting views on youtube videos need some planning and use of some secret tricks to increase the views. Here bestrix.blogspot.com will discuss those secret tricks and methods to help you in increase youtube views.

How to Increase Youtube Views

Before getting on the topic of increasing views you should plan the topic of your video. Always make something new, which nobody else have made yet and which is in demand or will be in demand. Once you are sure about the topic, make the video with the resources available to you. Now before uploading you need proper keyword researching for your video as i have done for my article. Youtube provide you the option to add your keywords to the video description. A good description of your video also helps it in getting the views. If you have added proper keywords and description then chances of it ranking higher and getting more views is much more.

Most of the people try to search for free softwares and secret tricks to increase the youtube views. But there are no such tricks or softwares. Real trick is your hard work on the legal SEO practices and get genuine views. There are some services which provide fake likes and comments on your views in return of backlinking, but bestrix.blogspot.com will suggest you to keep yourself away from such practices and it may result in bad consequences. As Google and Youtube are evolving they are finding ways to track such illegal likes and  comments, and finally removing those videos and channels.

Good Practices to Increase Youtube views

  • Follow Legal and Genuine SEO Practices
  • Do proper research for topic of Video
  • Make good keywords for your video and use them in Title of Video and Description of Video
  • Make a video of your own and try to make it attractive so that visitors view it completely. The longer they stay on your video, the more your video will rank in Youtube Search.
  • Never get indulged in downloading and using illegal softwares to increase youtube video views as they will harm you in long run. Genuine ways might take some time but they will be beneficial for you.

Saturday, 27 April 2013

Display notifications in android -4

Display notifications in android -3

Display notifications in android -2

Updates from Rogue Republic, that modern warfare 0 A.D. mod

The really nice looking modern warfare mod for 0 A.D. is steadily improving:

Rogue Republic's Russian buildings
You can now also check out their blog and facebook page, and to quote one of the main developers:
With hope of finding a proficient 0 A.D. coder
So please help out these guys, if you know some Javascript and are willing to learn how to code for 0 A.D.!

Select All Friends on Facebook Javascript Code Chrome Extension

Select All Friends on Facebook

Sometimes you need to invite your friends to like a page or to an event on Facebook. Its easy if your friends are just 20 or 30. But its frustrating if you have to select thousands of friends.
You can't click 1000 times to select 1000 friends. So here the trick to help you.
Bookmarklet
Select All

Add the Bookmark to make it easy

The easier trick is that you just drag the Bookmarklet "Select All" to your bookmark bar and forget it. Once you are on that FB page where you have to select all of your friends just click on this bookmark "Select All". It will select all of your friends in one go. It might take some time depending upon the number of friends you have got. It can take upto 1 min if you have got 1000 friends.

Javascript Code to Select All friends on Facebook

Here i will tell you the javascript code and the method to use it. One you are on the page where you have to select all of your friends follow the following steps. I will suggest you to use Google Chrome.
Step 1: Scroll down in the facebook Select Friends box so that the complete friends list is loaded.
Step 2: Press F12 and go to console tab.
Step 3: Paste the following code into it and press "Enter".

javascript:var x=document.getElementsByTagName("input");for(var i=0;i<x.length;i++) {if (x[i].type == 'checkbox') {x[i].click();}}; alert('Done, all your friends have been selected');

Step 4: Wait for a while till the javascript works. It might take 1 or 2 minutes depending upon the number of friends you have got.
Step 5: It will display a message when all friends are selected. Press "OK" to clear it and then Press "Invite" button on FB.

Facebook Timeline Cover Photo Dimensions | Size In Pixels Inches And cm

Facebook Timeline has attracted a lot of people since it is launched on 24 Jan 2012. However it was available since November, but it was made mandatory on Jan 24th. People were using only a profile pic till that time but now they need a Timeline Cover Photo.
However facebook has provided some methods to use photos from your albums and crop them into correct size to fit your Facebook timeline, but some expert users can design their own Facebook Timeline Cover Photo so that it looks much better.

Facebook Timeline Cover Photo Dimensions

Advanced users need Dimensions to FB Cover Photo to design it using some image editor. Here bestrix.blogspot.com will provide Facebook Cover Photo dimensions in pixels inches and cm.

Facebook Timeline Cover Photo Size in Pixels

  • Width : 720 px
  • Height : 265 px

Facebook Timeline Cover Photo Size in Inches

  • Width : 4 Inch (300 dpi)
  • Height : 1.5 Inch (300 dpi)

Facebook Timeline Cover Photo Size in cm

  • Width : 10.8 cm
  • Height : 4 cm
Here is an example of an attractive FB Cover Photo to give you inspiration to create one
















Display notifications in android -1

Working with built-in android applications - 3

Friday, 26 April 2013

27th April 2013 AUD Weekly Report

AUD Monthly & Weekly cycles

Trend bais is DOWN, as it's below the higher timeframe 50% levels...

Trend guide is 1.0271

if above, the swing is back up into the Weekly 50% level and Monthly 50% level:- Resistance

Note:- THIS IS THE LAST FOREX REPORT

Working with built-in android applications - 2

Working with built-in android applications -1



Notice that the map itself tells you that it was made with Maps Engine, and that it says it is for non-commercial use:   commercial users can buy access to a far more powerful version of the Maps Engine.



Advantages and disadvantages of Maps Engine Lite


So far I've only done a quick test, but initial impressions are:

Advantages:

Richer interface than custom maps - you can do more things.

Layers are a particularly good addition - it would be great if individual layers could be turned on/off from embedded version of the map.

Alternative colour scheme - will make it easier to create maps that are more suitable for certain circumstances, eg with a faded background.

Sequential markers - I don't have to use my own set of custom markers any more.

Uses the same base data as regular Google Maps - so the Follow Your World service can be used to get you updates about changes to the image-data.


Disadvantages:

No access to Google Streetview while you are editing the map.

Currently if you choose sequential markers, the labels and colours in the key on the left are not always the same as the ones used inside the map.

No Snap-to-roads option for lines

No custom map markers:  if you import a map from My Maps (aka Google Custom Maps), then any custom markers that you have are retained, and you can choose to use them again, but there is no way to add new custom markers.


What else have you found?




Related Articles:


Creating a Google Custom Map

Adding a Google Custom Map to your blog

Adding 3rd party HTML to your blog

Monday, 22 April 2013

Google I/O 2013: Android 5.0 Key Lime Pie, New Nexus 7, Motorola X and more

The big conference Google I/O 2013 is happening next month and will run from 15 -17 May. Last year, Google introduced the Nexus 7, Android 4.1 Jellybean, the now-abandoned Nexus Q and a lot more. Now rumors said the next Android 5.0 Key Lime Pie, next-gen Nexus 7 and more exciting things will announced. So today let’s jump right into our guesses and hopes for what we’ll see at Google’s biggest conference of the year.

1.  Android 5.0 Key Lime Pie
Android 5.0 Key Lime Pie
Whatever else Google announces, nothing will grab the headlines like the next major version of Android.
But the techies all agree that Google will probably just give Android followers a peek at the new OS since the current Android 4.2v update is not yet available on many devices yet. We didn’t see a major update in UI with Android 4.1 or 4.2 from Android 4.0, so if Google is going to release the Android 5.0, it will be refined, polished, and smooth — and it will be fast in order to compete with Apple!

2.  New Nexus 7
New Nexus 7
Google introduced to the Nexus 7 tablet at the last I/O, so it wouldn’t be surprised if we saw a new version-running Android 5, maybe. According to news from BGR, the Nexus 7.7 will have a Tegra 4 processor, a 7.7-inch, 1,920 x 1,200-pixel display, 8GB of storage, and both front and rear high-def cameras. 3G service and a price tag within the range of $149 to $199. Rumours said it would have an expanded screen size of 8 inches to rival the iPad Mini and Samsung Galaxy Note 8.

3.  Lower Price for the Original Nexus 7
Original Nexus 7
It is logical to expect a lower price for the original Nexus 7 once its old brother is released. Among the anticipated price tags for this device at $149, $129 and $99.  

4.  Motorola X Phone
Motorola X Phone
Sticking with the mobile space, Google I/O 2013 may also witness the debut of the mythical Motorola X, the superphone Google is said to be working on ever since it completed the Motorola acquisition. The company is said to be throwing everything it's got at this new halo device, which is why it may not be ready in time for I/O. If it is, expect it to be the star of the show.

5.  Nexus 5
Nexus 5
Google Nexus 4 has made a big success and has been selling out in stores across the U.S. But in order to compete better with the new Galaxy S4, HTC One and iPhone 5, Google need to update the Nexus 4, namely the Nexus 5. The Nexus 5 is expected boost an improved processor, camera and LTE support and so on.

6.  Google Glass
Google Glass
Glass was laughed off by many as a pipe dream when it was unveiled at I/O last year, but 12 months on these smart glasses are gathering significant momentum. With competition winners having already received their Google Glass samples, we expect I/O 2013 to provide significant updates regarding retail availability and app developer programmers.  I suspect we’ll see Google Glass officially announced as a consumer product at I/O 2013 and available for sale within a few months following the conference.

7.  Google Now
Google Now
At last year’s Google I/O we saw Google’s answer to Siri: Google Now. Since then we’ve seen a few updates and to Google Now that have added features and functionality, but many in the industry are suspicious about why we haven’t seen more. I think Google’s been holding back on us and we’ll see a rush of new features for Google Now that will blow us away. What’s more, we’ll probably see Google Now for iOS demo’d.

8.  Google Babble
 Google Babble
Babble is expected to unite Chat, Talk, Voice and Google Plus communication into a single service with the same conversations and features available everywhere. It seems the company has plans to go toe-to-toe with Apple’s iMessage and BlackBerry Messenger long term. Interestingly Babble is also said to incorporate notification syncing, a long overdue feature that dismisses notifications on all your devices once they are checked on one.

9.  Home Automation
It’s been a while since we heard about the ADK and Google’s push for home automation. This time around I suspect we’ll see some real-world products that can be easily controlled by your Android-powered phone or tablet. Either that or the ADK will fade into obscurity, never to be heard of again.

So what else do you expect to see at this year’s Google I/O? Welcome to show your comments below!


23rd April 2013 AUD & Euro Daily Report

AUD Weekly & Daily cycles

Trend bias is to continue lower:- April lows then May lows, as price is now below the Monthly & Quarterly 50% levels.

Random Support :- Weekly & Tuesday's lows

Random resistance 5-day 50% level and 12 hour channel highs

Euro Weekly & Daily cycles

Trend bias is to continue lower, as per Weekly Report towards the Quarterly 50% level @ 1.2915

but a breakout of the 12 hour channels, could attract buying in the Euro....


SEO Tips, Tricks and Tools 2013

SEO (Search Engine Optimization) is the technique to rank rank website on search engines, so that your website comes in SERP results when users search for some keywords related to your website niche.
Most people think that its a very hard thing to appear in search results, but its not so if you use proper methods to do so. Here bestrix.blogspot.com will not go in much depth, but tell you some basic tricks and tools to do better SEO for your website.

SEO Tips 2013

  • SEO takes some time, so have patience.
  • Never use Old Black Hat SEO. It is old method of SEO which is extremely dangerous in todays perspective. If you use it now, google may remove your website permanently from search results.
  • Update your website on regular basis.
  • Always upload fresh content on your website which is not copied from other websites.
  • Make such titles for your articles/posts on your website which describe the content clearly. Don't misguide the users.
  • Use genuine SEO techniques, SMO (Social Media Optimization) and SEM (Search Engine Marketing).

SEO Tricks 2013

Always remember that there are no shortcuts to success. This thing also apply on SEO. Never go for any shortcut methods to get better SEO ,as it may may harm your website.
  • Use Proper Keyword Researching before writing posts for your website.
  • Use SEO writing techniques to do proper onsite SEO.
  • Do some article submission (at least once a week) for off-page SEO.
  • Use tools like Webmasters, Analytics and Alexa to check your website optimize it at regular intervals.

SEO Tools 2013

  • Google Webmasters : Its the best tool that can be used for SEO. 
  • Google Analytics : All SEO firms use this tool to check their progress and find the loop holes in the website.
  • ubersuggest.org : This website gives the best keyword suggestion by using google search engine and saves a lot of time.
  • brokenlinkcheck.com : You can use this site to search broken links on your website and remove them as broken links can result in negative SEO.
Keep visiting bestrix.blogspot.com to get latest tips and tricks to improve your website SEO.

Sunday, 21 April 2013

How to play iTunes movies on Samsung Galaxy Note 8

Samsung Galaxy note 8 is an elegant-looking 8-inch  Android tablet that comes with a built-in stylus and
equipped with Exynos Quad-Core CPU with 2GB RAM (clocked at 1.6GHz), 1280×800 LCD Display. Thanks to the included S Pen stylus (and suite of associated apps), the device boasts a level of functionality unmatched by any other small tablet. Without a doubt, it’s great for us to watch movies on Galaxy Note 8.
play iTunes movies on Samsung Galaxy Note 8
However, if you want to play iTunes movies on Galaxy Note 8, you will find something goes wrong due to the videos you purchased from iTunes store are usually protected by Apple's FairPlay DRM copyright protection and can only play on Apple products, such as the iPad Mini. Below I will show you how to play iTunes movies, videos and TV shows on Galaxy Note 8.0 with the help of M4V Converter software step by step.

Method:  How to remove DRM protection from iTunes movies?

Leawo DRM remover is the best program to convert DRM protected M4V. Now you can follow the iTunes to Galaxy Note 8.0 conversion steps below, it’s easy to convert iTunes videos with this program.

Step 1:  Install the program on your pc, run it. Click on the Add Video icon on the top of the software to import videos.
Step 2:  Choose a video format for conversion. You can choose MP4 format, this format is the best compatible format for Galaxy Note 8.0 and other tablets or smartphones.

Step 3:  You need to authorize your computer to be able to remove DRM protection and convert M4V to other video files. Click convert button on the bottom right and the program would automatically lead you to the authorizing page. Input your ID and password to autorize your computer.

Step 4:  Click convert button to start. The Galaxy Note 8.0 iTunes converter will convert iTunes videos immediately.

After conversion, you can transfer iTunes movies to Galaxy Note 8.0, and then you can play iTunes movies on Galaxy Note 8.0 at anytime, anywhere.

See also:  How to play MKV, AVI, iTunes M4V Videos and more on Samsung galaxy s4


WTactics Summer of Cards


WTactics is a beautiful, freely licensed card game which pleasantly surprises for example by having it's amazing assets under free licenses, not shying away from employing same-sex love themes and now, by inviting game designers to share an apartment in lovely Sweden on WTactics development during July 2013.
People all over the world are hereby welcomed to participate in Summer of Cards 2013 – the first ever real life gathering of the dev. team and all those of you that want to get aboard and contribute to the worlds first truly pro libre customizable card game, our dear WTactics. 1:st to 28:th of July 2013 is when this is going down in Malmö, Sweden, so do some reading in here and scribble us a mail already so we can start planning for wicked goodness. You come and stay as you may.
"A couchsurfing style gamejam" was approved as a possible description of the event.


Your host says hi!

Once this returns positive results, I will be hoping for the first free, open source monastery being found by 2015... :)

22nd April 2013 Daily Report AUD & Weekly cycles

AUD Weekly & Daily cycles

Overall trend bias is to continue lower, as per Weekly Report, and also the breakout of the Weekly lows towards this week's lows (random Support)

However, the yearly 50% level could continue to provide Support, and get price to move back towards the April 50% level.

Random Resistance 5-day 50% level.


Euro Weekly & Daily cycles

Monthly cycles suggest a move downward, as it's below the April 50% level & single monthly highs (RED)

12 hour channel highs (white) Resistance



How to use Facebook Graph Search in India for Marketing

Facebook Graph Search is the latest search engine to challenge Google. Its not yet released in India but you can view its example on https://www.facebook.com/about/graphsearch . This page shows how Facebook Graph Search will work. As per my knowledge it will be an intelligent search engine, which will be able to analyse the meaning of search queries and show accurate results.



How to use Facebook Graph Search in India for Marketing

Currently Google is being used for online marketing. SEM (Search Engine Marketing) firms are using Google for SEO (Search Engine Optimization). All of their website optimization is being done after keeping Google in mind. But Now number 2 site on the internet is planning to launch its search engine, which will also use its social networking capabilities and it will definitely make a mark on internet. Search Engine Marketers are already planning their strategies to use Facebook Graph Search for Marketing purpose.
We will bring you more information on how to use graph search very soon.

Saturday, 20 April 2013

20th April 2013 AUD & Euro Weekly Report

AUD Primary and Monthly cycles

Monthly cycles look weak, as it's below the Quarterly 50% levels, with a down target towards $1.01...

However, the 2013 Yearly 50% level is a random support level..

We also can see the coming together of the Monthly channels, which is going to result in a breakout either way.

The Question is, which way?

Euro Monthly & Weekly cycles

Euro has stalled around the single monthly highs & April 50% level....

Random Support @ 1.2915 (2nd Quarterly 50% level)