belajar dan berbagi bersama ~ Learn and Share Toge


How To Hack Facebook Chat Application

Posted in computer,Hacking,news,techno by lfisql on March 23, 2011

 

In this post I will tell you how you can hack facebook chat applicationto run it from any windows, Using this hack you will be able to chat with your freinds on other browser pages, So here is the step by step guide to hack facebook chat application.
Note:This trick to hack facebook chat application works for firefox browser only
1.First of all log into your Facebook account 

2.Next visit the following link:
http://www.facebook.com/presence/popout.php



3.Next press control D and bookmark the Page

4.Next click on the bookmark option at the top beside history button and right click Facebook chat at the bottom and Check load this bookmark in the sidebar and click on ok.

Now you can load Facebook chat application from any browser

Taken From:http://hackingandcraking.blogspot.com/

Advance Multitab Widget For Blogger

Posted in computer,Hacking,news,techno by lfisql on March 21, 2011

In this tutorial I will teach you how to add a multitab widget to blogger blogs. Multitab widget is very useful and common widget. You can place four widgets in a place of one widget using multitab widget. There are many types of multitab widgets. I am giving you a 4 Tab widget. You can see the picture of multitab widget I am giving you on the left side. Below are the steps on how to add multitab widget to blogger.

Note: Don’t save your template until the last step is completed.

1. Go to Blogger.com.
2. Login to your Blogger account.
3. Go to your Blogger Layout > design > Edit HTML.
4. Click the box of expand widget templates.
5. Now find </head>.
6. Just below </head>, paste the following code.

<script type=’text/javascript’>
//<![CDATA[
document.write(‘<style type=”text/css”>.tabber{display:none;}<\/style>’);
function tabberObj(argsObj)
{
var arg;
this.div = null;
this.classMain = “tabber”;
this.classMainLive = “tabberlive”;
this.classTab = “tabbertab”;
this.classTabDefault = “tabbertabdefault”;
this.classNav = “tabbernav”;
this.classTabHide = “tabbertabhide”;
this.classNavActive = “tabberactive”;
this.titleElements = [‘h2′,’h3′,’h4′,’h5′,’h6’];
this.titleElementsStripHTML = true;
this.removeTitle = true;
this.addLinkId = false;
this.linkIdFormat = ‘<tabberid>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;
}
}
tabberObj.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.tabber = this;
DOM_a.tabberIndex = i;
if (this.addLinkId && this.linkIdFormat) {
aId = this.linkIdFormat;
aId = aId.replace(/<tabberid>/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({tabber:this});
}
return this;
};
tabberObj.prototype.navClick = function(event)
{
var
rVal,
a,
self,
tabberIndex,
onClickArgs;
a = this;
if (!a.tabber) { return false; }
self = a.tabber;
tabberIndex = a.tabberIndex;
a.blur();
if (typeof self.onClick == ‘function’) {
onClickArgs = {‘tabber’:self, ‘index’:tabberIndex, ‘event’:event};
/* IE uses a different way to access the event object */
if (!event) { onClickArgs.event = window.event; }
rVal = self.onClick(onClickArgs);
if (rVal === false) { return false; }
}
self.tabShow(tabberIndex);
return false;
};
tabberObj.prototype.tabHideAll = function()
{
var i;
for (i = 0; i < this.tabs.length; i++) {
this.tabHide(i);
}
};
tabberObj.prototype.tabHide = function(tabberIndex)
{
var div;
if (!this.tabs[tabberIndex]) { return false; }
div = this.tabs[tabberIndex].div;
if (!div.className.match(this.REclassTabHide)) {
div.className += ‘ ‘ + this.classTabHide;
}
this.navClearActive(tabberIndex);
return this;
};
tabberObj.prototype.tabShow = function(tabberIndex)
{
var div;
if (!this.tabs[tabberIndex]) { return false; }
this.tabHideAll();
div = this.tabs[tabberIndex].div;
div.className = div.className.replace(this.REclassTabHide, ”);
this.navSetActive(tabberIndex);
if (typeof this.onTabDisplay == ‘function’) {
this.onTabDisplay({‘tabber’:this, ‘index’:tabberIndex});
}
return this;
};
tabberObj.prototype.navSetActive = function(tabberIndex)
{
this.tabs[tabberIndex].li.className = this.classNavActive;
return this;
};
tabberObj.prototype.navClearActive = function(tabberIndex)
{
this.tabs[tabberIndex].li.className = ”;
return this;
};
function tabberAutomatic(tabberArgs)
{
var
tempObj,
divs,
i;
if (!tabberArgs) { tabberArgs = {}; }
tempObj = new tabberObj(tabberArgs);
divs = document.getElementsByTagName(“div”);
for (i=0; i < divs.length; i++) {
if (divs[i].className &&
divs[i].className.match(tempObj.REclassMain)) {
tabberArgs.div = divs[i];
divs[i].tabber = new tabberObj(tabberArgs);
}
}
return this;
}
function tabberAutomaticOnLoad(tabberArgs)
{
var oldOnLoad;
if (!tabberArgs) { tabberArgs = {}; }
oldOnLoad = window.onload;
if (typeof window.onload != ‘function’) {
window.onload = function() {
tabberAutomatic(tabberArgs);
};
} else {
window.onload = function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
}
/* Run tabberAutomaticOnload() unless the “manualStartup” option was specified */
if (typeof tabberOptions == ‘undefined’) {
tabberAutomaticOnLoad();
} else {
if (!tabberOptions[‘manualStartup’]) {
tabberAutomaticOnLoad(tabberOptions);
}
}
//]]>
</script>

7. Now find ]]></b:skin> and paste the following code before it.

/*———- Tabber Start——– */

.tabberlive{

margin:0;

padding:5px;

clear:both;

background:#fff;

}

.tabbernav {

margin-left: 3px;

margin-right: 6px;

padding: 3px 0;

border-bottom: 1px solid #dcdcdc;

font-family:Arial,Helvetica,sans-serif;

font-size:12px;

font-weight:bold;

}

.tabbernav li {

list-style:none;

margin:0;

display:inline;

}

.tabbernav li a {

padding:3px 0.5em;

margin-right:1px;

border:1px solid #dcdcdc;

border-bottom:none;

background:#191919;

text-decoration:none;

color:#ffffff;

}

.tabbernav li a:hover {

color:#191919;

background:#ffffff;

border-color:#dcdcdc;

text-decoration:none;

}

.tabbernav li.tabberactive a,

.tabbernav li.tabberactive a:hover {

background:#ffffff;

color:#191919;

border-bottom: 1px solid #ffffff;

}

.tabberlive .tabbertab {

padding:5px;

border:1px solid #dcdcdc;

border-top:0;

margin-left: 3px;

margin-right: 6px;

background:#ffffff;

}

.tabberlive .tabbertab h2,

.tabberlive .tabbertabhide {

display:none;

}

.tabbertab .widget-content ul{

list-style:none;

margin:0 0 10px 0;

padding:0;

}

.tabbertab .widget-content li {

border-bottom:1px solid #dcdcdc;

margin:0 5px;

padding:2px 0 5px 0;

}

/*——- Tabber End——–*/

You can change the style of widget by changing the given code.

8. Now find Variable Definitions and paste the following code below the variable definitions .

<Variable name=”tbbxbgcolor” description=”Tab box Background Color” type=”color” default=”#f8f8f8″ value=”#f8f8f8″>
<Variable name=”tbbxbrcolor” description=”Tab box Border Color” type=”color” default=”#dcdcdc” value=”#dcdcdc”>
<Variable name=”tbbxcolor1″ description=”Tab box Color 1″ type=”color” default=”#ffffff” value=”#ffffff”>
<Variable name=”tbbxcolor2″ description=”Tab box Color 2″ type=”color” default=”#5588aa” value=”#5588aa”>

9. If you don’t find Variable Definitions then paste the following code below #navbar-iframe .

/* Variable definitions

====================

<Variable name=”tbbxbgcolor” description=”Tab box Background Color” type=”color” default=”#f8f8f8″ value=”#f8f8f8″>

<Variable name=”tbbxbrcolor” description=”Tab box Border Color” type=”color” default=”#dcdcdc” value=”#dcdcdc”>

<Variable name=”tbbxcolor1″ description=”Tab box Color 1″ type=”color” default=”#ffffff” value=”#ffffff”>

<Variable name=”tbbxcolor2″ description=”Tab box Color 2″ type=”color” default=”#5588aa” value=”#5588aa”>

*/

10. Now find <div id=’sidebar-wrapper’> and paste the following code below it.

<div style=’clear:both;’/>

<div class=’tabber’>

<b:section class=’tabbertab’ id=’tab1′ maxwidgets=’1’/>

<b:section class=’tabbertab’ id=’tab2′ maxwidgets=’1’/>

<b:section class=’tabbertab’ id=’tab3′ maxwidgets=’1’/>

<b:section class=’tabbertab’ id=’tab4′ maxwidgets=’1’/>

</div>

11. Now save your template and go to page elements and check your multitab widget. It will look like the picture below.

If you are facing any problem related to this post, then comment me below.

Taken From:http://hackingandcraking.blogspot.com/

Hack Adsense & get unlimited Clicks

Posted in computer,Hacking,news,techno by lfisql on March 19, 2011

If You Are Thinking That This Hack Is About Getting The Passes Of The Adsense Accounts, Then You Are Wrong 

This Is About How To Get Unlimited Impressions And Ads Clicks Without Working For Even A Second


Get traffic into your site, NOW!

Wanna more traffic? YES, YOU CAN!

Need any investment? NO!

What do I have to do?

Nothing but keeps your computer ON.

Is that EASY? If you believe, IT IS.

Okay. Let us start doing this. As I am a web master as well, I 

used to buy traffic from others in order to increase my

website popularity. However, it doesn’t seem to be working

well as it doesn’t do much on the search engine bit and

most of them are either fake traffic or too expensive for me.

But here, today, I am introducing you a BRAND NEW

method that you should KNOW to increase traffic for your

site. You don’t have to have any skill or experience, just

follow my step you will walk into SUCCESS. You can do this

to your site, or you can even SELL traffic to others.

Site requirement in order to receive traffic:

‐ Less than 100kb (Will show you how to check)

‐ No Porn content included (On that page)

‐ No Virus/Malware

‐ No Fancy JavaScript (Those who slow the browser)
So how do I check my page size?

It is easy, open up your IE or FireFox. Press �”Ctrl+S�” or Files�->Save As and choose FULL WEB PAGE. Save it

anywhere you want and go to that location. Select the

folder and the html page and Right click�->Properties. Look

at their disk size and make sure they are under 100KB.

(Otherwise it MAY NOT WORK!)

What do I do NEXT? 

Get into this site and register with them: http://tinyurl.com/ccg4o2

Oh shit, they are in Chinese! Don’t worry, Just follow me.

When you enter the homepage, click on the highlighted link.

Then Follow This

Download the RAR File and Unrar it..

Now we have to set up your site in their index.

You are ALL DONE. Remember to run the software every time you

turn your computer on and it wills GENERATE UNLIMITED TRAFFIC

to your site. Thank you.

*If you have two computer (on different IP), you can use the

software with same username to increase traffic.
If You Don not Believe This Then I Am Giving You My Words

I Have Been Using It For MANY Days

I Am Earning Sometimes Above $10 And Some Times 2 or 3

My Account Has Not Been Blocked So That Means It Is Safe To Use

Enjoy!!!

Taken From:http://hackingandcraking.blogspot.com/

Click Exchange Program for Adsense

Posted in computer,Hacking,news,techno by lfisql on March 18, 2011

Hello friends , this tutorial is for those guys who has already created an account on adsense. If you haven’t created the account on adsense yet then check this topic EARN ONLINE WITH ADSENSE
Moreover herez a trick for creating adsense account in few days ….Approve adsense account in few days …… Try it too for adsense approval.

Anyways now come to the main tutorial. In this tutorial i m showing u that how can u increase your earning on google thru click exchange program.

What is Click Exchange Program ?
==========================

Its simple ,google doesnt allow u to click on ur own ads ….. so herez the solution u click on someone else blog and in return he will click on ur blog ….. but remember take much much care while doing so ….. if u do click exchange with just one person then google will disable u ….

Now read it carefully :
=================

Now This Is The Most Important Part Of The Work Becoz If You Dont Work Properly Then Members Wont WOrk With YOu Again So Understand It Completely

MAke A Yahoo ID And Sign In Yahoo Messanger . Now post ur yahoo account here and add the other yahoo accounts posted here.

After YOu Add The Members You See Different Messages Coming “free For Clicks”. This Means Members Want To Work .

How To Work??
=============

Before Start Working You Have To Understand Few Things
1. Ads
2. Impressions ( imp )
3. Bps

Members Will Work With Request Or Ask You To Req To Start Work

Request Will Be Like This Most Of The Time
3 Ads 30 imp 3 bps

That Means You Have To Open Three Ads On The Blog Of That Member, refresh The Blog 30 times And Open 3 subpages On Each of The Add You Just Opened.

So In The Meanwhile The Member Will Do The Same For You.

How To Know That Others Are Not Cheating And Doing Your Work While You Are Doing His WOrk???

Counter Is For That Purpose Becoz IMP Are Counted By The Counter , When The Member Refreshes Your Page Your Counter Ticks So YOu Will KNow That The Member Is Working.

About Add And Bps

For This There Is Another Solution

When You Open An Add Eg: http//:www.forex.com/productsID66uhrguds55
Copy And Paste The Add Link To The Other Member So That He Can Know What You Have Clicked On.

But Remember Donot Copy http And www Part Simply Copy From forex.com/productsID66uhrguds55 And Paste It.

Same Work With The Bps When YOu Open Bps In New Window Copy And Paste The Link And Send It To The Member.

This Way Cheating Is Avoided.

But remember :
============

Remember Never Click On YOur Own Add Becoz Your Account Will Be Closed Imediatly.

1st All Of The Users Here In This Community Start Working With Each Other To Practise The Method Of THe Work So That YOu DOnt Loose The Members.

If Anybody Form Gets Rejected Dont Worry Register Again With The Same Process.

On Forex Ads You Earn Almost 10 dollars On 25 Clicks On Ads

That Means If 1 Members Click On Your 3 Ads 10 Members click On 30 Ads= 10+ Dollars

If You Work With 10 Members In 1 Day It Means $10+ And 30 Days Means $300+

And The More YOu WOrk The More YOu Earn

 

Adsense integration now easier than ever with Blogger’s Monetize tab

Posted in computer,Hacking,news,techno by lfisql on March 17, 2011

Have you noticed the new “Monetize” tab at the top of your Blogger dashboard? 

This new section of our Blogger dashboards makes it easier than ever to integrate Google Adsense in our blogs and see just how much our blogs are earning.

Google’s Adsense program is a simple solution which many Bloggers use to monetize their sites. For some time now, Blogger have made it easy for us to include Adsense ads in the sidebar (as a page element) and around blog posts (as an option in the Layout>Page Elements section, when you click the “Edit” link for your blog posts).

If you have already configured Adsense in your blog by adding an Adsense page element to the layout, or enabling ads between posts, by clicking on the Monetize tab you will be able to see statistics for your earnings, like this:

On this page, there are also links to view your Adsense Payment History, earnings reports and to switch the account associated with this particular blog. You can also choose to “remove ads” from all aspects of your Blogger layout at the click of a button.

For those who have not yet chosen to monetize their sites with Adsense, or who have configured Adsense manually in their templates, you will see a page like this instead:

This means that your Adsense account has not been associated with this blog. No earnings reports will be displayed, even if – like me – you have manually configured Adsense by adding the required JavaScript to your Blogger template code.

For those of you yet to add Adsense to your layout, simply choose one of the ad-layout options most suitable for your needs anc click the “Next” button. You may be required to set up an Adsense account (or associate an existing account with your Blogger profile), after which your ads will be immediately placed in your layout. Then when you visit the Monetize tab, you will be able to see details of your Adsense earnings for the ads you have placed in your layout.

What you need to know about Adsense monetization and the new Monetize tab

Although Blogger have made it very easy for members to add Adsense to their blogs, not every applicant will be successful in getting their own Adsense account.

Adsense reviews all applicants to the program before agreeing to (or denying) a new account. In order to apply for an Adsense account, you must be over 18 years old and have a website which complies with Adsense policies. If you post any questionable content on your site, you really should check these policies to ensure your site complies before submitting your application.

Also, the reports displayed on the Monetize tab will only show page views and earnings from the time that you connected your Adsense account with this blog. If you have previously linked your Adsense account with your Blogger profile, it seems the “All Time” earnings will display earnings from today onwards (one of my blogs uses an Adsense Page Element, but is only displaying earnings from today).

A new channel in your Adsense account for each Blogger blog you monetize

If you log into your Adsense account, you will notice a new channel has been set up for each of your blogs, which contains the URL of your blog in the title.

The information from this channel is what’s used to present the earnings data for the Monetize section of each blog you write.

Not yet an ideal solution for everyone…

I am very happy to see that the Blogger team have put such effort towards integrating all of the Google services we Bloggers currently use. However, I am a little disappointed at some aspects of this new feature.

For my own blogs, I have added Adsense manually, by editing the Blogger template and inserting ad codes where I would like them to be displayed. For this reason, I am unable to see any reports on the Monetize tab. In fact, it appears as though I have not set Adsense up at all.

Also, the earnings displayed on the Monetize page will only include the earnings for this particular blog, not your total earnings from any different sites operated.

However, these are small issues, and perhaps these issues will not affect most other Blogger users.

What do you think?

Will this new “Monetize” dashboard feature make it easier for you to connect your Adsense account with your blogs? How well do you think this feature performs so far?

Please feel free to leave your comments and suggestions below.

Taken From:http://hackingandcraking.blogspot.com/

No more Adsense accounts in India

Posted in computer,Hacking,news,techno by lfisql on March 16, 2011

//

Its A Very Sad News To Share …

Adsense Stopped Approving New Accounts To India Neither You Can Change It From Some other Country To India
Basically It Means No More Accounts For Indians

The Only Way To Get An Account Is Make A Blog Now Keep Updating It A Little Bit For Six Months

And After 6 Months You Might Get An Account With That Blog

And Even Pakistan Is Also Added To The List Of Those Countries Where You Cannot Change Payee Name Neither Address And 6 Months Restriction Is Also Applied I Think

No sure For The Last Point

But Indeed a Very Sad News …..

Taken From:http://hackingandcraking.blogspot.com/

Approve adsense account in few days

Posted in computer,Hacking,social,techno by lfisql on March 13, 2011

//

Adsense has become very careful in the approval of account specially in middle east countries like Pakistan ,India etc . Anyways we have found a trick for the adsense approval …… herez the trick .

For Pakistanis :
============
If u are feeling problem in aproving your account then do the following steps during registration on adsense but remember before apply ur blog must have atleast 10 topics,just copy paste material from net …..

1- Put your city : quetta

2- Country name : pakistan

3- adress : write any adress

4- phone no : write any mob no

5- postal adress : 87300

Now submit it … it will be approved just after one or two days . After that sign in and go in personal settings and change all of ur settings i.e adress,phone no etc to originals.

For Indians :
==========

No Need to own a web site of six month old.

Rule to get Adsense approval:::

1-Register your self at indyarocks.
http://www.indyarocks.com/

2-Upload a profile image.

3-Complete your profile.

4-Upload 10 photos in photo album.

5-Write 2 blogs of 100 words

Now apply adsense using your gmail.You will get adsense approved with in 2 days.

Best of luck guys …..

Taken From:http://hackingandcraking.blogspot.com/

Web Site Promotion Services

Posted in computer,news,social,techno by lfisql on March 1, 2011

Have you considered using web site promotion services If you are looking for a clever, new way to market your web site, you may want to investigate some of the different web site promotion services that can do the work for you. Web site promotion services design and implement specialized web site marketing campaigns for online business owners.
Indian writers are also experts in book research and writing for authors, white paper research and writing, as well as journalistic writing that includes articles on current events and/or social events and issues. You can also outsource India for travel writing services that include reviews and site selection, magazine articles on almost any subject and business writing — case studies, communication, cultural and management issues.

What does targeted traffic mean? Consider this: two major search engines in the United States approximately receive 35 million visitors everyday; however, not all of these people may be looking for your site or may be able to locate your site. Those specific site users whose needs and wants specially match your products and services are your targeted traffic.

If you are planning to advertise through a Web site, employing the help of professional Web site promotion service providers is one of the wisest things you can do to ensure growth of your business and increase in sales. These service providers are experts in the field of Web site advertising and can dedicatedly plan, execute and monitor progress of promotional strategies for your site.

There are lists and then there are consumer reviews. Read the articles and also check the prices. The web host companies are listed as per their price, the service they provide and also the technical support they offer. The price varies; it can be anything between $4.90 and $19.90 per month. Cheap web hosting prices vary as per the facilities they provide. The disk space, the bandwidth, free set up etc.

However, the more specific you are, the better will be your results. Every one submits articles to get their products and services out in the market. This can be easily done by establishing a link in the web content or the site that the content is submitted to. And since many of the sites don’t accept articles that blatantly advertise the products or services, these articles are disguised as informative ones.

Try going to online marketplaces where individuals and companies offer specific services at very competitive prices. After your initial search, you can begin making calls to compare the companies you are considering based on the kind of service they provide and the rates they charge.

As per the industry standards, the best web host should beat others in terms of both service and options as well as should be able to solve any problem immediately that their clients may face. Apart from these, the best web host must have the courtesy to communicate and keep the client updated on the current status regarding solving their problems.