Search content
Sort by

Showing 20 of 20 results by cjdduarte
Post
Topic
Board Service Discussion
Re: They have used the services of minegate.org?
by
cjdduarte
on 04/10/2016, 19:44:52 UTC
Would anyone know?

I found the same this link:

https://bitcointalk.org/index.php?topic=878387.1780

why are you asking this in a separate topic?
it is listed as a 7/7 ponzi HYIP
if I'm not mistaken,the owner got an honorary mention as he never even bothered to change the common theme Smiley and left the default
it is like if you come to a personalised wordpress blog and see something like: “Lorem ipsum dolor sit amet, consectetur adipiscing elit"

tl;dr do not invest ,you will lose your money

Tanks  Smiley
Post
Topic
Board Primeiros Passos (Iniciantes)
Re: Como criar uma versão visual de um paper wallet gerado offline no vanitygen?
by
cjdduarte
on 04/10/2016, 19:37:23 UTC
Prezados, queria gerar uma versão grafica offline de um paper wallet gerado offline no vanitygen.
Eu poderia utlizar o https://bitcoinpaperwallet.com/, porém não faz sentido ja que quis criar justamente offline;

Alguém sabe?

Na pagina onde vc gera a papper wallet tem a opção (e inclusive a recomendação) de vc baixar o zip com o codigo do site e rodar ele localmente (offline):
Quote
For secure wallet generation, do not print wallets "live" from bitcoinpaperwallet.com.
Instead, download this generator from GitHub and run the HTML as a "local" file:

Obrigado. Não tinha visto essa opção. Deu certo.
Post
Topic
Board Service Discussion
Topic OP
They have used the services of minegate.org?
by
cjdduarte
on 04/10/2016, 12:12:45 UTC
Would anyone know?

I found the same this link:

https://bitcointalk.org/index.php?topic=878387.1780
Post
Topic
Board Primeiros Passos (Iniciantes)
Topic OP
Como criar uma versão visual de um paper wallet gerado offline no vanitygen?
by
cjdduarte
on 03/10/2016, 18:09:11 UTC
Prezados, queria gerar uma versão grafica offline de um paper wallet gerado offline no vanitygen.
Eu poderia utlizar o https://bitcoinpaperwallet.com/, porém não faz sentido ja que quis criar justamente offline;

Alguém sabe?
Post
Topic
Board Economia & Mercado
Re: Faucet Sustentável- Levels Up (Nível atual: 2 of 100) !!!
by
cjdduarte
on 13/05/2016, 12:37:04 UTC
1 satoshi every 240 minutes. Cheesy

Ataque de Bot na hora, e proveniente do Brasil.
Já está normalizado.
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels Up (Current Level: 2 of 100) !!!
by
cjdduarte
on 13/05/2016, 12:23:46 UTC

You have a double claim rewards button; not sure if you could click either one, but you should probably remove the one that doesn't rely on the anti-bot verification links, as long as it's not against any terms of use that FaucetBox has.

I'll fix it .
I address ( BTC ) that you are getting by reference these bots.
Deaminates it.
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels Up (Current Level: 2 of 100) !!!
by
cjdduarte
on 13/05/2016, 04:21:04 UTC
I know you're getting botted at the moment, so check this out:

https://bitcointalk.org/index.php?topic=1200700.0

Specifically check out this part:
Real AntiBot Links

Download & unpack:
http://bit.makejar.com/labs/anti-bot-links-200/antibotlinks.zip


Code:
Files to add:
/libs/antibotlinks.php


Files to edit:
/index.php
/templates/*theme-name*/index.php


Ok, let's start.

First make a backup of your faucet (everything could go wrong, better safe than sorry).

Then

Copy:
antibotlinks.php

To:
/libs/antibotlinks.php


Now you will need to edit 2 files. I suggest using Notepad++ https://notepad-plus-plus.org/ to edit files but any good editor will do the job.
This is based on FB R60 but should work with newer/older versions.

Open:
/index.php

Find:
        $data['captcha_info'] = $captcha;

add after:
        # AntiBotLinks
        require_once('libs/antibotlinks.php');
        $antibotlinks = new antibotlinks(true);// true if GD is on on the server, false is less secure
        if (array_key_exists('address', $_POST)) {
          if (!$antibotlinks->check()) {
            $antibotlinks->generate(5, true);// number of links once they fail to solve min 3 - max 5, the second param MUST BE true
          }
        } else {
          $antibotlinks->generate(3);// initial number of links min 3 - max 5
        }


Find:
           $data['captcha_valid'] &&

add after:

           # AntiBotLinks
           $antibotlinks->is_valid() &&
           

Open:
/templates/*theme-name*/index.php

Find:


Add before:
# AntiBotLinks START
?>


# AntiBotLinks END
?>



Find:
                            if(!$data["captcha_valid"]): ?>
                           

Invalid captcha code!


                            endif; ?>


Add after (the input field must be between
and
):

# AntiBotLinks START
?>

                           
                            if(!$antibotlinks->is_valid()): ?>
                           

Invalid AntiBot verification!


                            endif; ?>
# AntiBotLinks END
?>



Somewhere between
and
add (you need to do it 5 times, this is where the links will appear):

# AntiBotLinks START
?>

                        echo $antibotlinks->show_link(); ?>
# AntiBotLinks END
?>


And finally remove the default CLAIM button :)

Thank you , I was just looking at this script .
See if it's OK now .
 Huh Huh Huh
Post
Topic
Board Micro Earnings
Re: [Updated 07/nov/2015] Faucet Owners Against Scammers and Bots
by
cjdduarte
on 13/05/2016, 04:07:26 UTC

antibotlinks.zip

"And finally remove the default CLAIM button Smiley"


I did not understand this part  Embarrassed
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels Up (Current Level: 2 of 100) !!!
by
cjdduarte
on 12/05/2016, 23:08:14 UTC

I had to make a small adjustment because of a problem with ads .
Once correct , increased again.


 Cry
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels Up (Current Level: 2 of 100) !!!
by
cjdduarte
on 12/05/2016, 23:02:05 UTC
Well, I'll definitely accept this:


Thanks!


 Smiley Smiley Smiley Smiley Smiley Smiley
Post
Topic
Board Economia & Mercado
Topic OP
Faucet Sustentável- Levels Up (Nível atual: 2 of 100) !!!
by
cjdduarte
on 12/05/2016, 16:52:08 UTC
Olá a todos,   Smiley

Bem vindos a visitar o minha faucet bitcoin !

http://www.sustainablefaucet.com/

O que significa os níveis?

Esta faucet foi pensada em você de forma sustentável. Quanto mais os anunciantes pagam por esta faucet, mais você ganha. Quanto mais os lucros aumentam, o nível também aumenta e os ganhos com a faucet também aumentam. Tudo depende de você.


UPDATE:


may/10: Level 1: 50-200 (99.0%), 999 (1.0%)
may/11: Level 2: 200 (88.8%), 500 (5.5%), 1000 (3%), 2000 (2%), 5000 (1%), 9999 (0.5%)
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels up (1 to 100) !!!
by
cjdduarte
on 12/05/2016, 14:34:05 UTC
Hey OP, just a heads up; it would be good to change the title to the following:

Sustainable Faucet - Levels Up (Current Level: 2 of 100) !!!

Thanks for the sugestion.
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels up (1 to 100) !!!
by
cjdduarte
on 12/05/2016, 00:23:51 UTC
you update level daily, later you see the advertising stats, i have understand good ?

if your start with 50-200 with 99% every 60 minutes, i think not have more user tomorrow

Level updated !!!!!!!! Smiley Smiley Smiley
Post
Topic
Board Micro Earnings
Re: Top 12 profitable ad-networks for bitcoin faucet owners and my earning stats.
by
cjdduarte
on 11/05/2016, 17:34:02 UTC
you will update this list?
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels up (1 to 100) !!!
by
cjdduarte
on 11/05/2016, 16:13:29 UTC
Ok, different reward system idea, let's see if it will work, I hope so.

Thanks for 132 satoshi reward, a bit low yet, need to upgrade levels.  Smiley
What do you think about add more ads?

Hi , my focus is on this time. I am evaluating other options ads for optimization. But I'm also evaluating the visual pollution of the site .
And the level , I will update you in next 12 hours when you have more data to analyze .
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels up (1 to 100) !!!
by
cjdduarte
on 11/05/2016, 14:12:32 UTC
50 satoshi in 1h? it's big joke Grin the work is not worth the effort

Hi,

See my previous comment .
I will soon raise the level. That was the beginning and needed an initial parameter .
Thank you.
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels up (1 to 100) !!!
by
cjdduarte
on 11/05/2016, 13:50:46 UTC
So let me get this straight: We, as users, have no control over individual levels for our accounts, but rather, you're speaking of raising the "level" of the faucet? So once more advertisers bid on your advertisements, you'll earn higher earnings, which in turn, you will raise the level of the faucet. Did I get that right?

Your concept is amazing. It pretty much allows for users to dictate the popularity of your faucet, and I really hope that you stick to this model. After a small initial investment, you're allowing the advertisers to pay for the faucet, basically.

This is definitely a sustainable method of running a faucet, and I can see a lot of future faucet admins adopting this model.

I will definitely use this model for my faucet. And I'll give you credit for it, of course, with a backlink to your faucet.

Best of luck to your faucet, and I'll be checking in on it from time to time!

It is just that.
His explanation was the best possible.  Smiley Smiley Smiley

I intend to review the gains vs satoshis every 72 hours and go up into the "level " transparently.
Post
Topic
Board Micro Earnings
Re: Sustainable Faucet - Levels up (1 to 100) !!!
by
cjdduarte
on 11/05/2016, 03:28:34 UTC
You have different idea. So I try to use this faucet. Best of luck!

Thanks for the comment.
I will posting here as each new level will pay as the objectives are achieved .
Post
Topic
Board Micro Earnings
Topic OP
Sustainable Faucet - Levels Up (Current Level: 2 of 100) !!!
by
cjdduarte
on 11/05/2016, 02:05:19 UTC
Hello,   Smiley

Welcome to visit my bitcoin faucet!

http://www.sustainablefaucet.com/

What does it mean levels?

This faucet was thinking of you sustainably. The more advertisers pay for this faucet , the more you earn. The more profits increase, the level also increases and gains on taps also increase. Everything depends on you.


UPDATE:

may/10: Level 1: 50-200 (99.0%), 999 (1.0%)
may/11: Level 2: 200 (89.8%), 500 (6%), 1000 (3%), 2000 (1.5%), 5000 (0.3%), 9999 (0.2%)
Post
Topic
Board Criptomoedas Alternativas
Re: Blockchain - lisk?
by
cjdduarte
on 03/05/2016, 17:11:16 UTC
Desculpem a ignorância, pois sou novato.
Lisk não se minera? Não li nada a respeito.