1
Share Script Vote/Voting For Your Niche Websites Share Script Vote/Voting For Your Niche Websites

Hi there, I am going to share my little script that I've made for one of my products, two months ago. Thought you will find this very...

0
Share Poker Resources Site Generator Script Share Poker Resources Site Generator Script

hey all, This is something that is part of a bigger project, but thought I would share this with you. This is a Poker Resources site generat...

0
METHOD Made 1,500$ This Week - Black Ops 3 Script METHOD Made 1,500$ This Week - Black Ops 3 Script

Hello ! ChingLiu again :P I'm now here to share my brand new script AND my method with elites. It's your turn to bank now! - How...

1
Make Your First Adsense Verry Easy $$$$ Make Your First Adsense Verry Easy $$$$

Hi, guys . I have been in this forum for a while now , and this is my first share. I have been using adsense for a while now, its not on...

1
Share code imacro freebitco.in (Earn Bitcoins Free) Share code imacro freebitco.in (Earn Bitcoins Free)

Today, i will sharing for everyone code imacro freebitco.in. Auto click and earn money online free Captcha solve is with https://2captch...

0
Share Software Tumblr Queue Bot Share Software Tumblr Queue Bot

Finally done with this. Was a pain to code and I spent most of my time debugging. Enjoy! Dedicated to my hate club who enjoy harassing me ...

Sunday, May 31, 2015

Share Script Vote/Voting For Your Niche Websites

Hi there, I am going to share my little script that I've made for one of my products, two months ago.
Thought you will find this very useful and interesting...
It is created to be modified but it looks too real to even think that it is modified .

Since this little script contain zero images, let me prepare you with requiremenents, in order for this to be fully working.



Code:
<div id="tb_outer"> <div id="tb_inner"> <div id="tb_question"> <span>Did it work ?</span> </div>
<div id="tb_voting"> <div id="tb_text"> Works? <span>Cast your vote</span> </div>
<div id="tb_vote"> <div id="tb_vote-no"> <a href="javascript:;"> <i class="fa fa-thumbs-o-down"></i><span>128</span> </a> </div>
<div id="tb_vote-yes"> <a href="javascript:;"> <i class="fa fa-thumbs-o-up"></i><span>637</span> </a> </div> </div> </div> </div></div>


CSS:


#tb_outer { position: fixed; top: 120px; left: 0; z-index: 9999999999;
-webkit-box-shadow: 0 0 50px 3px rgba(0, 0, 0, .2); box-shadow: 0 0 50px 3px rgba(0, 0, 0, .2);}
#tb_inner { background: rgba(112, 112, 112, 1); background: -webkit-linear-gradient(top, rgba(124, 124, 124, .8) 0%, rgba(112, 112, 112, .9) 50%, rgba(101, 101, 101, .95) 50%); background: -moz-linear-gradient(top, rgba(124, 124, 124, .8) 0%, rgba(112, 112, 112, .9) 50%, rgba(101, 101, 101, .95) 50%); background: -o-linear-gradient(top, rgba(124, 124, 124, .8) 0%, rgba(112, 112, 112, .9) 50%, rgba(101, 101, 101, .95) 50%); background: -ms-linear-gradient(top, rgba(124, 124, 124, .8) 0%, rgba(112, 112, 112, .9) 50%, rgba(101, 101, 101, .95) 50%); background: linear-gradient(top, rgba(124, 124, 124, .8) 0%, rgba(112, 112, 112, .9) 50%, rgba(101, 101, 101, .95) 50%);
font-family: 'Source Sans Pro'; color: #fefefe; text-shadow: 0 1px 1px rgba(0, 0, 0, .3); margin: auto; position: relative; overflow: hidden; cursor: default;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2), inset 0 1px 0 1px rgba(255, 255, 255, .35), inset 0 0 0 2px rgba(255, 255, 255, .15), inset 0 0 20px 5px rgba(200, 200, 200, .5), inset 0 -1px 0 rgba(0, 0, 0, .3), 0 2px 1px -1px rgba(0, 0, 0, .2); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2), inset 0 1px 0 1px rgba(255, 255, 255, .35), inset 0 0 0 2px rgba(255, 255, 255, .15), inset 0 0 20px 5px rgba(200, 200, 200, .5), inset 0 -1px 0 rgba(0, 0, 0, .3), 0 2px 1px -1px rgba(0, 0, 0, .2);}
#tb_question { width: 30px; height: 112px; padding: 4px;}
#tb_question span { display: inline-block; position: absolute; top: 50px; font-size: 18px; width: 140px; text-align: center; text-transform: capitalize; font-weight: bold; left: -51px;
-webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -o-transform: rotate(-90deg); -ms-transform: rotate(-90deg); transform: rotate(-90deg);}
#tb_voting { display: none; padding: 4px; width: 64px;}
#tb_text { font-size: 14px; text-transform: uppercase; text-align: center; margin-bottom: 10px;}
#tb_text span { display: block; font-size: 10px; font-style: italic; text-transform: lowercase;}
#tb_vote { font-size: 18px; text-align: center;}
#tb_vote > div { display: inline-block;}
#tb_vote a { color: #fff; text-decoration: none;
-webkit-transition: .3s all ease-in-out; -moz-transition: .3s all ease-in-out; -o-transition: .3s all ease-in-out; -ms-transition: .3s all ease-in-out; transition: .3s all ease-in-out;}
#tb_vote a:hover:not(#tb_vote-disable), #tb_vote-active { color: #222 !important; text-shadow: 0 1px 0 rgba(255, 255, 255, .3);}
#tb_vote-no { margin-bottom: 10px;}
#tb_vote i { padding-right: 6px;}
#tb_vote-disable { cursor: default;
-webkit-filter: blur(1px); -moz-filter: blur(1px); -o-filter: blur(1px); -ms-filter: blur(1px); filter: blur(1px); opacity: .6;}
#tb_vote-disable:hover { color: inherit;}


Javascript:

// Vote Cast Action// ->
$("#tb_question").on('mouseenter', function () { $.when($(this).fadeOut()).then(function () { $("#tb_voting").fadeIn(); });});
$("#tb_voting").on('mouseleave', function () { $.when($(this).fadeOut()).then(function () { $("#tb_question").fadeIn(); });});

var like = $("#tb_vote-yes").find("span").html(), dislike = $("#tb_vote-no").find("span").html();
$("#tb_vote-yes, #tb_vote-no").on('click', function () { if ($.cookie("tb_like") == null && $.cookie("tb_dislike") == null) { $(this).find("a").attr("id", "tb_vote-active"); $(this).siblings().find("a").attr("id", "tb_vote-disable");
if ($(this).find("span").html() == like) { $(this).find("span").html(parseInt(like) + 1); $.cookie("tb_like", "vote", { expires: 30, path: '/' }); } else { $(this).find("span").html(parseInt(dislike) + 1); $.cookie("tb_dislike", "vote", { expires: 30, path: '/' }); } }
return false;});
if ($.cookie("tb_like") != null) { $("#tb_vote-yes") .find("a").attr("id", "tb_vote-active") .find("span").html(parseInt(like) + 1);
$("#tb_vote-no") .find("a").attr("id", "tb_vote-disable");}else if ($.cookie("tb_dislike") != null) { $("#tb_vote-no") .find("a").attr("id", "tb_vote-active") .find("span").html(parseInt(dislike) + 1);
$("#tb_vote-yes") .find("a").attr("id", "tb_vote-disable");}
// <-

Freedom:
- You may change anything in this script, such as improving it and using database if you want real voting and not modified one with cookies.- You may change design of it using provided CSS.- However you may not sell this script or post on any other forums without my permission. Thanks in advance.
Well that would be all, thank you for looking my thread, I hope it's not Low Quality post because I will try to post only quality stuff that I create by my self. Enjoy and good luck!

Share Poker Resources Site Generator Script

hey all,
This is something that is part of a bigger project, but thought I would share this with you.
This is a Poker Resources site generator script. Without mentioning the site on here. This niche has over 3 million daily users and about 40 million users total.
This is an entire site script and I have also include some instructions and a sample widget image for your locker.


METHOD Made 1,500$ This Week - Black Ops 3 Script


Hello ! ChingLiu again :P

I'm now here to share my brand new script AND my method with elites. It's your turn to bank now!



- How to install PHP SCRIPT
1) First download my Black Ops 3 script here:
dropbox.com/s/430plnmsm9wdao8/Black%20Ops%203%20-%20ChingLiu.rar?dl=0


Virustotal:tinyurl.com/qxopqpw

2) Replace my content locker code with your's.

- press "CTRL+F" and enter "kamehame" to locate my content locker code and replace it with your's
- again press "CTRL+F" and enter "onclick="call_locker" to locate my onclick code and replace it with your's (if you're not from Grip)

- For better results, use a good locker design (related to Black Ops 3). I'd recommend you to use the same as I do:
mediafire.com/convkey/6236/vz2u2c44lzweu43zg.jpg

3) Your lockers should work now. Upload index.php and other Black Ops 3 folders with it to your host (Use FTP client to do so)

Enter the domain location into your browser to see this amazing script!


- Method

I don't know how will you use the script, but however you do, the traffic you get to it
converts like crazy. The more traffic you drive to this script, the more money you make.

I'll now tell you what I did and how I made 1,500 this week so far from advertising - it may not be too detailed but I hope that you will get the concept.

1) I went to Facebook, boosted a couple of my posts for "Black Ops 3 beta download" and + created 4 "Get click to your site" ads on Facebook. I spent like 100$ xD

2) I went to Bing and created 2 ads as well, spent about 25$ + 75$ coupon.

That's 200$ investment to make 1500$, 1200$ profit! :D

I targeted US, UK and AU traffic.


I hope that you found this thread usefull and I hope that I will help you bank hard in following time!

This script is in English, I will soon release a French and Italian script too!

As I said before, more cool shares are comming, so stay tuned!

Cheers!

Make Your First Adsense Verry Easy $$$$


Hi, guys .

I have been in this forum for a while now , and this is my first share.

I have been using adsense for a while now, its not only my main source of income , but thankz god i make decent amount of money.

So let me share how to make your first adsense $$.

In my opinion there is two ways you can make $$ , The first way is what i called Quick way, and the other is long term way.

So let me explain both ways.

Quick Way:

1) Create a site , it should be video uploading site you can use (phpmelody, or other similar scripts).-

2) Post 10 or more interesting videos / day (it can be home videos, viral videos, animal videos, you get the point).
3) Join multiple Facebook groups as possible, and post your videos one by one to those groups.
4) Important: You must also build a Facebook fan page , and name similar to your website name , and then grow your audience , this can help you to reduce time you post on multiple groups.
5)Boom , Quick Cash $$


Longterm way:

1) Create your niche site , it should be what you like and focus on adding a good content.
3) Do keyword research and make sure the keyword you choice , must be profitable. (Look some tutorial how to find a profitable niche).
2) Do Seo , and other stuff that make your site on first page of google.
3) Wait sometime ,it may take 1- 2 month depending on your domain you choice and competition.
4) Boom , there you get an autopilot $$.


Bonus: Quick Traffic.

After you make your site and you rank a keyword, then go youtube , and look for the latest movie trailers.

E.x : B a t m a n vs S u p e r m a n

Comment like this :

Can't wait to see this movie. do you want to see what is also amazing.
1 Type in Google (Your Keyword)
2 Select 1st Site
3-look for right side ( basically direct them to your Popular posts, or Videos).

Yo get the point, this makes you gain a lot of traffic to your site.

Hope This Helps.

Share code imacro freebitco.in (Earn Bitcoins Free)


Today, i will sharing for everyone code imacro freebitco.in. Auto click and earn money online free





Captcha solve is with https://2captcha.com/ all you have to do is change api key to your own key


VERSION BUILD=8820413
SET !EXTRACT_TEST_POPUP NO
SET !ERRORIGNORE YES
SET !TIMEOUT_PAGE 999
TAB T=1
URL GOTO=http://freebitco.in/
TAG POS=1 TYPE=A ATTR=TXT:Captcha<SP>difficult<SP>to<SP>read?<SP>Get<SP>a<SP>Solve*
TAG POS=1 TYPE=IMG ATTR=SRC:https://api-secure.solvemedia.com/media/reload-whV2.gif
FILEDELETE NAME=D:\media.png
WAIT SECONDS=3
ONDOWNLOAD FOLDER=D:\ FILE=media.png WAIT=YES
TAG POS=1 TYPE=IMG ATTR=ID:adcopy-puzzle-image-image CONTENT=EVENT:SAVE_ELEMENT_SCREENSHOT
WAIT SECONDS=3
TAB OPEN
TAB T=2
URL GOTO=http://2captcha.com/imacros.html
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://rucaptcha.com/in.php ATTR=NAME:key CONTENT= api key
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:http://rucaptcha.com/in.php ATTR=NAME:file CONTENT=D:\media.png
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=TYPE:submit&&VALUE:recognize
WAIT SECONDS=1
SET !EXTRACT NULL
TAG POS=1 TYPE=* ATTR=TXT:* EXTRACT=TXT
WAIT SECONDS=1
TAB CLOSE
TAB T=1
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:adcopy_response CONTENT={{!EXTRACT}}
wait seconds=2
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:free_play_form ATTR=ID:free_play_form_button
wait seconds=3600

Share Software Tumblr Queue Bot

Finally done with this. Was a pain to code and I spent most of my time debugging. Enjoy!
Dedicated to my hate club who enjoy harassing me for not making "real" bots even though I do. 

If you plan to leech this, I will find you.
jk I don't mind if you share this, just link back to this thread. Give credit where it's due.

Tumbled

 ​



Features
Manual Mode
Makes it easier to post aka One Click Queue

Auto Mode
Batch image uploading to Tumblr

Low Footprint
Only uses about 40-50 mb/ram.

Uses Tumblr API
As long as Tumblr doesn't change their API, this bot will always work.

Update
Can update if there is a bug (your choice).
That way you don't have to keep checking this thread.

How To Use
1. Click the question mark if you don't how to use OAuth.
2. Select Image Folder
3. Click the queue button

Heads up
* Tumblr's API is fragile, so be gentle. The bot may be stuck on an image.
You'll have to close it and try again.
* Don't delete any of the files in the folder. The bot needs them to work.

I will not make another bot for Tumblr.

Download:
http://d-h.st/9niZ

Virustotal:
0/56
https://www.virustotal.com/en/file/...89b539429f988374383c1247/analysis/1433119619/
Metascan:
1/44 Baidu 
https://www.metascan-online.com/en/scanresult/file/c41f38f441a4444ea0209899588b3ea5