Tuesday, June 4, 2013

Hide or hack Your Number and Call Anyone In the World 2013


Today we are going to learn how to

hide your number or appearing any

CallerID you wish and call anyone

in the world. This trick helps you to

call anyone in the world by hiding

your number or appearing any

CallerID you wish. Yes! in this trick

you can change your CallerID you

wish and call anyone.

Things you will need:1.A mobile phone.

2. and a brain to follow the steps

correctly.

Procedure:

Step1: Go to www.crazycall.net

Step2: Select your country

Step3: Enter The number that you



want to appear on your friends

phone when he receives the call.

Eg: 9999999999

Step4: Enter The number of the

friend you want to fool or

prank.Eg: 9014567335

Step5: If you want you can change

your voice to low, normal, High

pitch.

Step6: Now click the button GET

ME THE CODE

Step7: You will get a phone number

and a code as shown below

Step8: Now call to the number

which you got from your mobile

phone and you will ask to enter the

code. Enter the code and after 2

seconds it will connect to the

friend you want to fool or prank.

That's It Enjoy calling Anonymous.

Note: At present this service

charges Rs.10 per minute. So keep

this in mind and call

Make Money Online - SimpleMethod


Today Internet has a great influence in our life. We think that Internet
consist of answers of all questions. It is almost true. Today we using
Internet as method of income. But, most type of method of making money
is not capable for all peoples. When we search Internet for a job we
could get a lot of results, but it is a fact that most of them might be
fraud. If we got a good job, Itmay not provide you a good income. It may
due to lack of experience or not knowing what is to do ?

Today I will show you the
method of making money online with simple method. Typing Captchas . That
means image decoding to alphabets and numbers. I found that
Protypers.com is the best site to earn money with the method.Theonly
requirement to work for it is to have a computer, an internet connection
and the ability to type over 30 Words per Minute. Youdecide when to
work and for how long. The faster you type, the more money you earn. The
Site tells that it is ideal for

Mothers that stay at home.

Parents that need a second job.



Students.

People in between jobs. We can Earn in between $100 and $250. Their
Rates start from $0.50 for each 1000 words typed and can go as high as
up to$1.5 for each 1000 words typed. They Pay through Debit Cards, Bank
Checks, Paypal, Webmoney, Liberty Reserve and Western Union.

To Start your job . . . . . . .

Go to http://www.protypers.com

Sign up for free

Start job

you have to type Capcha within 15 seconds. The faster you type, the more money you earn

After reaching threshold amount you can receive money by using any of the methods given above.

Please give your suggestions as comments

Free calling Sites (talk free) Updated 2013


Saturday, June 1, 2013

how to add website in Basic Calendar



Note: Modified by DD to highlight today's day, bug fix.



Description: If you need a simple, elegant calendar to display the current days of the month, Basic Calendar is an excellent script for the purpose. Uses CSS to allow easy changing to its appearance, everything from calendar dimensions, colors, down to the font used to highlight the current day.



Demo:






Step 1: Insert the below into
the <HEAD> section of your page:






<style type="text/css">

.main {
width:200px;
border:1px solid black;
}

.month {
background-color:black;
font:bold 12px verdana;
color:white;
}

.daysofweek {
background-color:gray;
font:bold 12px verdana;
color:white;
}

.days {
font-size: 12px;
font-family:verdana;
color:black;
background-color: lightyellow;
padding: 2px;
}

.days #today{
font-weight: bold;
color: red;
}

</style>


<script type="text/javascript" src="basiccalendar.js">

/***********************************************
* Basic Calendar-By Brian Gosselin at http://www.bmmekwan.tk
* Script featured on Dynamic Drive (http://www.bmmekwan.tk
)
* This notice must stay intact for use
* Visit http://bmmekwan.tk/ for full source code
***********************************************/

</script> 




The above references an
external .js file. Download basiccalendar.js
(by right clicking, and selecting "Save As"), and upload to your
webpage directory.


Within the above code, you may
customize the CSS rules to change all visual aspects of the calendar.





Step 2:
Finally, insert the below script where you wish the calendar
to appear on your page:






<script type="text/javascript">

var todaydate=new Date()
var curmonth=todaydate.getMonth()+1 //get current month (1-12)
var curyear=todaydate.getFullYear() //get current year

document.write(buildCal(curmonth ,curyear, "main", "month", "daysofweek", "days", 1));
</script>




how to set website in Floating Text


Step 1 :Login youar  blog 



Step 2: Go Layout



Step 3 : Add Java script Gadget



Step 4: Copy This code and Paste 






<script language="javascript">


// ENTER TEXT BELOW. CAN *NOT* INCLUDE NORMAL HTML CODE.
var text='your massage ';

var delay=40; // SPEED OF TRAIL
var Xoff=0; // PIXEL COUNT FROM THE LEFT OF THE CURSOR (- VALUES GO TO LEFT)
var Yoff=-30; // PIXEL COUNT FROM THE TOP OF THE CURSOR (- VALUES GO UP)
var txtw=14; // AMOUNT OF PIXEL SPACE EACH CHARACTER OCCUPIES
var beghtml='<font color="#00436e"><b>'; // OPTIONAL HTML CODE THAT EFFECTS WHOLE TEXT STRING SUCH AS FONT COLOR, SIZE, ETC.
var endhtml='</b></font>'; // END HTML CODE. MOSTLY USED IF ABOVE SETTING IS USED.

//********** NO NEED TO EDIT BELOW HERE **********\\




ns4 = (navigator.appName.indexOf("Netscape")>=0 && document.layers)? true : false;
ie4 = (document.all && !document.getElementById)? true : false;
ie5 = (document.all && document.getElementById)? true : false;
ns6 = (document.getElementById && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var txtA=new Array();
text=text.split('');
var x1=0;
var y1=-1000;
var t='';

for(i=1;i<=text.length;i++){
t+=(ns4)? '<layer name="txt'+i+'" top="-100" left="0" width="'+txtw+'" height="1">' : '<div id="txt'+i+'" style="position:absolute; top:-100px; left:0px; height:1px; width:'+txtw+'; visibility:visible;">';
t+=beghtml+text[i-1]+endhtml;
t+=(ns4)? '</layer>' : '</div>';
}
document.write(t);

function moveid(id,x,y){
if(ns4)id.moveTo(x,y);
else{
id.style.left=x+'px';
id.style.top=y+'px';
}}

function animate(evt){
x1=Xoff+((ie4||ie5)?event.clientX+document.body.scrollLeft:evt.pageX);
y1=Yoff+((ie4||ie5)?event.clientY+document.body.scrollTop:evt.pageY);
}

function getidleft(id){
if(ns4)return id.left;
else return parseInt(id.style.left);
}

function getidtop(id){
if(ns4)return id.top;
else return parseInt(id.style.top);
}

function getwindowwidth(){
if(ie4||ie5)return document.body.clientWidth+document.body.scrollLeft;
else return window.innerWidth+pageXOffset;
}

function movetxts(){
for(i=text.length;i>1;i=i-1){
if(getidleft(txtA[i-1])+txtw*2>=getwindowwidth()){
moveid(txtA[i-1],0,-1000);
moveid(txtA[i],0,-1000);
}else moveid(txtA[i], getidleft(txtA[i-1])+txtw, getidtop(txtA[i-1]));
}
moveid(txtA[1],x1,y1);
}

window.onload=function(){
for(i=1;i<=text.length;i++)txtA[i]=(ns4)?document.layers['txt'+i]:(ie4)?document.all['txt'+i]:document.getElementById('txt'+i);
if(ns4)document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=animate;
setInterval('movetxts()',delay);
}
</script>


how to no select text script for website


Step 1 :Login youar  blog 



Step 2 : Go Edit Html



Step 3: copy this code and paste <head> code </head> 








<script type="text/javascript">



/***********************************************

* Disable Text Selection script- © Dynamic Drive DHTML code library

* This notice MUST stay intact for legal use www.bmmekwan.tk



***********************************************/



function disableSelection(target){

if (typeof target.onselectstart!="undefined") //IE route

    target.onselectstart=function(){return false}

else if (typeof target.style.MozUserSelect!="undefined") //Firefox route

    target.style.MozUserSelect="none"

else //All other route (ie: Opera)

    target.onmousedown=function(){return false}

target.style.cursor = "default"

}



//Sample usages

//disableSelection(document.body) //Disable text selection on entire body

//disableSelection(document.getElementById("mydiv")) //Disable text selection on element with id="mydiv"



</script>



Step 4: Go Layout



Step 5 : Add Java script Gadget



Step 6: Copy This code and Paste and save



<script type="text/javascript">

disableSelection(document.body) //disable text selection on entire body of page

</script>

   

    <script type="text/javascript">

var somediv=document.getElementById("mydiv")

disableSelection(somediv) //disable text selection within DIV with id="mydiv"

</script>

   

    <script type="text/javascript">

var alltables=document.getElementsByTagName("table")

for (var i=0; i<alltables.length; i++)

disableSelection(alltables[i]) //disable text selection within all tables on the page

</script>



how to Right click deseble your web site


Step 1 :Login youar  blog 



Step 2: Go Layout



Step 3 : Add Java script Gadget



Step 4: Copy This code and Paste 








<!--right click deseble*/ -->

<script language='javascript'>

<!--



//Disable right click script III- By Renigade (bhavesh.mekwan@gmail.com)

//For full source code, visit http://www.bmmekwan.tk

var message='Dont copy data';

///////////////////////////////////

function clickIE() {if (document.all) {(message);return false;}}

function clickNS(e) {if

(document.layers||(document.getElementById&&!document.all)) {

if (e.which==2||e.which==3) {(message);return false;}}}

if (document.layers)

{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}

else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}



document.oncontextmenu=new Function("return false")

// -->

</script>


Add Cool Drop Down Menu in Blogger

Drop Down Navigation Menu For Blogger : You may have seen many drop-down menus but today "ThatsBlogging" will present you an incre...