Bitcoin Forum
May 26, 2024, 05:48:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 109 »
261  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: December 19, 2015, 06:41:33 PM
Ok repo has been updated to use AreYouAHuman instead of funcaptcha.
https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box

262  Economy / Micro Earnings / Re: PSA: Bots have figured out funcaptcha on: December 19, 2015, 06:38:16 PM
My faucet was emptied in about an hour from a bot. Funcaptcha has been great against bots, but doesn't look like anymore.

The culprit referrer: 35iPaDcjQqViRkXXHnagGYoKGxvCpEmcZk



The referrer has a you tube account https://www.youtube.com/user/ARAMIC2007

Got his addy from here 35iPaDcjQqViRkXXHnagGYoKGxvCpEmcZk

Yea I saw that too... What is interesting is that every single account this person "referred" is also a multisig address. Typically I only see a few multisig addresses here and there, then all of a sudden every single person is "referred" by this guy and every single one also has a multisig address. No coincidence.
263  Economy / Micro Earnings / Re: PSA: Bots have figured out funcaptcha on: December 19, 2015, 06:33:08 PM
do you can share your faucet link? maybe this user use surfing sites to collecting referrals! the amount stolen is not high.

I'm afraid it would have been much higher if I had a larger balance in my faucet.
It was definitely a bot attack.
264  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: December 19, 2015, 05:32:11 PM
Anyone running this script be careful!! There's a bot on the loose that is solving the funcaptcha's. They emptied my faucet in about an hour. I'll be releasing an update with a new anti-bot, likely Are You A Human.

265  Economy / Micro Earnings / PSA: Bots have figured out funcaptcha on: December 19, 2015, 05:29:07 PM
My faucet was emptied in about an hour from a bot. Funcaptcha has been great against bots, but doesn't look like anymore.

The culprit referrer: 35iPaDcjQqViRkXXHnagGYoKGxvCpEmcZk

266  Economy / Gambling / Re: Introducing PevPot.com The Bitcoin Lottery on: December 18, 2015, 06:43:56 PM
and the winner is announced:  https://www.pevpot.com/draw/6 !

Link returns `not found`   should be  `/draws/`
267  Economy / Auctions / Re: BITCOINSTATUS starting at 0.01BTC on: December 18, 2015, 06:01:16 PM
Does the price include code of example page? Grin

Just the domain.
268  Economy / Auctions / Re: BITCOINSTATUS starting at 0.01BTC on: December 17, 2015, 01:28:19 PM
B-B-BUMP
269  Economy / Auctions / Re: BITCOINSTATUS starting at 0.01BTC on: December 15, 2015, 01:41:13 PM
BUMP
270  Economy / Auctions / Re: BITCOINSTATUS starting at 0.01BTC on: December 13, 2015, 05:26:46 PM
I forgot to tick "notify me of replies"  Cheesy
271  Economy / Auctions / BITCOINSTATUS starting at 0.01BTC on: December 13, 2015, 05:23:12 PM
Up for auction is the TLD BitcoinStat.us

Winner will get the domain pushed to their namecheap account.
If you don't have a namecheap account you will need to create one. Don't worry they accept bitcoin Wink

Starting Bid: 0.01 BTC
Minimum Bid Increments: 0.001BTC
Auction Ends: 12/20/2015 http://www.timeanddate.com/countdown/generic?iso=20151220T10&p0=770&font=cursive&csz=1

Great domain to create an information/stats website on the bitcoin network.

Example usage:


Happy bidding!
272  Bitcoin / Project Development / Re: need help with api on: December 11, 2015, 08:51:18 PM
sorry while posying it here i mistakenly removed it...but its still not working

What error are you receiving?
Or is it just a blank white  page?
Make sure you have enabled api access AND white listed your Web servers IP
273  Bitcoin / Project Development / Re: need help with api on: December 11, 2015, 08:20:42 PM
hey guys i am here stuck with api problem i want to fetch bitcoin wallet balance using api but i am new to some languages like json and nodejs m totally noob in them so it will be very helpful if anyone can give me a full example with codes blockchain api will be good and also i am looking for youtube api video fetching too(optionally) . any help will be apriciated
Here ya go mister.

https://www.youtube.com/watch?v=D2__AFoOdec
thanks for the link sir but i have already seen this and some other video tutorial from youtube i did a lot of work on them and got able to get an {"error":"Unknown method"} . i will be glad if someone can help me with the codes.i mean give me the codes

Sounds like you didn't retrieve the JSON response as JSON.
Can you share some of the code you've tried? Otherwise it's difficult for us to help you.
Code:
 <?php

$guid 
"";
$main_password "";


$bal json_decode(file_get_contents("https://blockchain.info/merchant/$guid/balance?
password=
$main_password"), true);



$parseaddy $bal[balance];




echo 
"Your Address Has a balance of";

echo 
$parseaddy;

echo 
"satoshi<br>";

echo 
"<br>Kindly Use it to Fund your Account";


?>






well i dont even know that i am doing it correctly or not but here is the code check it and tell me where i am doing the mistake
You're missing your quotes

$parseaddy = $bal["balance"];
274  Bitcoin / Project Development / Re: need help with api on: December 11, 2015, 01:41:03 PM
hey guys i am here stuck with api problem i want to fetch bitcoin wallet balance using api but i am new to some languages like json and nodejs m totally noob in them so it will be very helpful if anyone can give me a full example with codes blockchain api will be good and also i am looking for youtube api video fetching too(optionally) . any help will be apriciated
Here ya go mister.

https://www.youtube.com/watch?v=D2__AFoOdec
thanks for the link sir but i have already seen this and some other video tutorial from youtube i did a lot of work on them and got able to get an {"error":"Unknown method"} . i will be glad if someone can help me with the codes.i mean give me the codes

Sounds like you didn't retrieve the JSON response as JSON.
Can you share some of the code you've tried? Otherwise it's difficult for us to help you.
275  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: December 11, 2015, 01:58:46 AM
@coinableS

i used your script and working good. thanks script and help.

site working now ourdomain.com/faucetbox now you know. if we want to work facuet page on ourdomain.com what must i do?   

1. Move the files from /faucetbox  to your domain root.
2. change line 365 on /faucetbox/index.php to ourdomain.com/?ref=YOUR_BITCOIN_ADDRESS
3. change lines 22, 39, 136, 264, and 637 to ourdomain.com 
276  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: December 07, 2015, 01:34:48 PM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that Cheesy

You can change the directories by renaming the folders, then going into the index.php file in /faucetbox, then click ctrl+f and search for "/faucetboxgame" (without quotations) find all of them, and rename them to whatever you've named the faucetboxgame directory to. Do the same in the index.php file in /faucetboxgame, just vice versa.

Also, coinableS, I've changed

Code:
//custom parameters
$api_key = "1234XYB"; //faucetbox API KEY
$startBal = 300; //starting balance for users
$reefAmount = 300; //referral amount
$timeBetweenClaims = 1800; //wait time between claims in seconds
$private_key = "1a1a1a_1a1a1a_1a_1a1"; //funcaptcha private key
$publicKey = "1b1b1_1b1b_1b1b1b1"; //funcaptcha public key

To

Code:
//custom parameters
$api_key = "1234XYB"; //faucetbox API KEY
$startBal = 200; //starting balance for users
$reefAmount = 300; //referral amount
$timeBetweenClaims = 3600; //wait time between claims in seconds
$private_key = "1a1a1a_1a1a1a_1a_1a1"; //funcaptcha private key
$publicKey = "1b1b1_1b1b_1b1b1b1"; //funcaptcha public key

But it still seems to dispense 300 satoshis in the user balance. Any ideas why this is happening? I have changed the names of the directories, not sure if that affected it or not.

I accidentally had the 300 starting balance hard coded for returning visitors. Oops!  The github repo has been updated to fix the bug. The change is only a one-liner on /faucetbox/index.php so you don't have to re-download the entire project just that one file.

277  Economy / Gambling / Re: Introducing PevPot.com The Bitcoin Lottery on: December 07, 2015, 12:27:08 AM
Like the concept of this site. Nice to see a reputable member running a lotto. Going to give this one a try for next draw.
278  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: December 06, 2015, 12:52:02 AM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that Cheesy

EDIT: You can post guidelines to me privately too and I pay commission, but same commission you get also if post them publick and I use them. I think there is no other problem than explaining how to do that, but as you know I have already tried to do that with partically success, so I might learn quick.

The altcoin commit from 8 hours ago was not stable and was reverted almost immediately.  This will require more development before it can be rolled out. Sorry for any confusion this may have caused.
279  Bitcoin / Bitcoin Discussion / Re: Can't believe i was able to register this bitcoin domain on: December 04, 2015, 01:31:20 PM
By "free", do you mean as in, no one had claimed it, or "free" as in... money free?

Either way, lucky you. Good job. Hope you make good use of that good domain, don't make it inactive, nor a ponzi Cheesy

It could have been free as in no money as well. Namecheap was doing a promo where if you buy their professional hosting services you get a free .website domain.
280  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: December 01, 2015, 08:12:52 PM
Here is my edition of this great script: http://winco.in/faucetbox

I have privately already tipped coinableS, but if he someday converts this to altcoins available at faucetbox, maybe I buy more pints for him Grin
Nicely done knighttrader!
This could very easily be adapted to altcoins on faucebox. I could make the update if others would find it useful.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 109 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!