Name
*
Message
*
contact-form-button contact-form-button-submit" id="ContactForm1_contact-form-submit" type="button" value="Send" />Powered By Subin’s Blog
... [READ MORE]How to find Blogger Blog ID
June 28, 2013 Blogger
You may need your blogger blog id for various needs. Here’s a simple tutorial on how to find the blog id.... [READ MORE]Go to your blog dashboard on Blogger. See the url of the page in the location bar.In the page url you can see a text blogID= followed by a number until it stops with #.Here’s a sample url :http://www.blogger.com/blogger.g?blogID=123456789101112#overview/src=dashboard
The wheat color background text in the above url is the blog id of that blog.SPAM URL’s in Blogger Traffic Source Stats : What should I do ?
You might have noticed a great volume of sites you never heard of coming to your site apart from Search Engine URL’s. Some of those URL’s are filmhill.com and vampirestat.com.
These kind of URL‘s are SPAM. The SPAM site is referring your site but they are not persons, they’re BOTS. These bots are visiting your site just for fun. These bots don’t read your posts or anything. They’re just a pile of robots. The bot is ran by a script. Probably PHP.
This scripts visits your site using CURL function with the referrer of their site. In PHP if you echo $_SERVER[‘HTTP_REFERER’] you will get the site where the user just came from. Blogger is using the same function but not PHP to record the traffic sources.
... [READ MORE]New : Change background of Subins Network.
January 28, 2013 Blogger, Themes
You can now change background of this blog and the whole Subins Network. You can only do this if you have a account in Subins. If you don’t have an account you can signup @ http://accounts-subins.hp.af.cm/signup.php.... [READ MORE]To change background you must go to My Account in Subins. In the left sidebar click Appearance.Click Themes or Background to change the background.Hope you like it.Make Snowfall on your site/blog using Javascript
December 22, 2012 Blogger, JavaScript
It’s Christmas. It’s time for snowing. Want to have a snowfall on your site just like in my blog. Here’s the Java script for snowing.
Note – This code is for websites. Code for blogger is below this code<blockquote class="tr_bq"> <p> <script><br /> //Configure below to change URL path to the snow image<br /> var snowsrc="http://subins.hp.af.cm/files/images/snow.gif"<br /> // Configure below to change number of snow to render<br /> var no = 20;<br /> // Configure whether snow should disappear after x seconds (0=never):<br /> var hidesnowtime = 0;<br /> // Configure how much snow should drop down before fading ("windowheight" or "pageheight")<br /> var snowdistance = "pageheight";<br />///////////Stop Config//////////////////////////////////<br /> var ie4up = (document.all) ? 1 : 0;<br /> var ns6up = (document.getElementById&&!document.all) ? 1 : 0;<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>function iecompattest(){<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>}<br /> var dx, xp, yp; // coordinate and position variables<br /> var am, stx, sty; // amplitude and step variables<br /> var i, doc_width = 800, doc_height = 600;<br /> if (ns6up) {<br /> doc_width = self.innerWidth;<br /> doc_height = self.innerHeight;<br /> } else if (ie4up) {<br /> doc_width = iecompattest().clientWidth;<br /> doc_height = iecompattest().clientHeight;<br /> }<br /> dx = new Array();<br /> xp = new Array();<br /> yp = new Array();<br /> am = new Array();<br /> stx = new Array();<br /> sty = new Array();<br /> snowsrc=(snowsrc.indexOf("subins.hp.af.cm")!=-1)? "http://subins.hp.af.cm/files/images/snow.gif" : snowsrc<br /> for (i = 0; i < no; ++ i) { <br /> dx[i] = 0; // set coordinate variables<br /> xp[i] = Math.random()*(doc_width-50); // set position variables<br /> yp[i] = Math.random()*doc_height;<br /> am[i] = Math.random()*20; // set amplitude variables<br /> stx[i] = 0.02 + Math.random()/10; // set step variables<br /> sty[i] = 0.7 + Math.random(); // set step variables<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>if (ie4up||ns6up) {<br /> if (i == 0) {<br /> document.write("<div id="dot"+ i +"" style="POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;"><a href="http://sag-3.blogspot.com/2012/12/snowfall-using-js.html"><img src='"+snowsrc+"‘ border="0″></a></div>");<br /> } else {<br /> document.write("<div id="dot"+ i +"" style="POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;"><img src='"+snowsrc+"‘ border="0″></div>");<br /> }<br /> }<br /> }<br /> function snowIE_NS6() { // IE and NS6 main animation function<br /> doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;<br /> for (i = 0; i < no; ++ i) { // iterate for every dot<br /> yp[i] += sty[i];<br /> if (yp[i] > doc_height-50) {<br /> xp[i] = Math.random()*(doc_width-am[i]-30);<br /> yp[i] = 0;<br /> stx[i] = 0.02 + Math.random()/10;<br /> sty[i] = 0.7 + Math.random();<br /> }<br /> dx[i] += stx[i];<br /> document.getElementById("dot"+i).style.top=yp[i]+"px";<br /> document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px"; <br /> }<br /> snowtimer=setTimeout("snowIE_NS6()", 25);//Set Timeout<br /> }<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>function hidesnow(){<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>if (window.snowtimer) clearTimeout(snowtimer)<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>}<span class="Apple-tab-span" style="white-space: pre;"> </span>if (ie4up||ns6up){<br /> snowIE_NS6();<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>if (hidesnowtime>0)<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>setTimeout("hidesnow()", hidesnowtime*1000)<br /><span class="Apple-tab-span" style="white-space: pre;"> </span>}<br /></script> </p> </blockquote>
Blogger Code
Go to Template -> Edit HTML
... [READ MORE]
Paste this code after tag.How to add Subins Like button to blogger/blogspot
December 9, 2012 Blogger, HTML, JavaScript
You might have know The Subins Project created by me. It is hosted by AppFog. If you want to add Subins Like button to your blog, then follow these steps.Go to BloggerPlace this code where you want to add the Subins Like Button.
BLOG URL‘>If you want to add like button on post footer then follow the steps mentioned below.Go to Blogger -> Template -> Edit HTMLClick Expand Widget Templates.Search for the line post-footer’ (within the quote).Add this code after the first line you just founded.... [READ MORE]
How to alert user that he is the ___th visitor of blogger/blogspot blog?
November 22, 2012 Blogger, HTML, JavaScript, JQuery
If you ever visited my blog on the day it’s reaching a big view (24000 , 25000) you will get a javascript alert saying you are the 24000th visitor like this :The above image shows that the blog alerted when the user was the 23000 visitor. It will also change the background to this. Want to have this feature on your blog ??? You are in the right place.
Requirements
One Stats Widget (Only one).
Add this code before if you haven’t yet added a script src of Jquery Library.... [READ MORE]
Adding Scroll To Top function in Blogger/Blogspot using Jquery
October 29, 2012 Blogger, HTML, JQuery
This Post will help you to add a Scroll To Top function in your Blogger Blog. Follow the steps given below.<div style="text-align: center;"> <span style="background-color: #93c47d; border-radius: 10px; font-family: inherit; font-size: x-large; padding: 8px 10px;"><a href="http://subin-demos.blogspot.com/#scrolltop" >DEMO</a></span> </div>
... [READ MORE]
1 – Go to Blogger -> Template -> Edit HTML
2 – Adding Codes.
Add this script before if you haven’t added a script src of Jquery Library.Create Text Editor like Blogger Using HTML & jQuery
October 24, 2012 Blogger, HTML, JavaScript, JQuery
You might have seen text editors where you can bold a text, italic a text etc… The perfect example of this the Blogger Post Text Editor.
This is a simple tutorial that will create a text editor using HTML, Jquery & JavaScript.We have two files, index.html which contains the HTML code and texteditor.js which contains the jQuery code. You should include the texteditor.js in index.html.index.html
... [READ MORE]Upload your image to the web in just a minute without registering
October 22, 2012 Blogger
There are many websites for uploading images for various purposes. Some of the popular services are Picasa, Flickr etc….
But you need an account for using the services shown above. If you don’t want to waste any time and upload image in just a minute, then there a re some services which will upload your image in their servers. In this tutorial I will introduce to a service called Post Image.
Go to Post Image (http://www.postimage.org/).... [READ MORE]