Search content
Sort by

Showing 20 of 24 results by ckz666
Post
Topic
Board Pools
Re: Lottery Solo Pool Miner Race on ckpool
by
ckz666
on 01/07/2024, 12:08:33 UTC
Hello,

Username: ckz666
Device type: Bitaxe Ultra 204

BitAxe 1: bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.ckz666_1
BitAxe 2: bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.ckz666_2
BitAxe 3: bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.ckz666_3

BTC-Adress bc1q5h82795hnl94tk6em8yleutl89y0grrkpqpc66

BR ckz666
Post
Topic
Board Announcements (Altcoins)
Re: 🔴HADRON🔴⠀WEB⠀BROWSER⠀AI⠀MINING🔴 Mine⠀on⠀Monday⠀apply⠀now,⠀AIRDRP⠀bounty🔴
by
ckz666
on 11/01/2018, 05:49:41 UTC
I can also help for translation in German. PM me if u like.
Post
Topic
Board Announcements (Altcoins)
Re: 🔴HADRON🔴⠀WEB⠀BROWSER⠀AI⠀MINING🔴 Start⠀mining⠀in⠀30⠀seconds,AIRDRP⠀bount🔴
by
ckz666
on 09/01/2018, 13:03:28 UTC
MacPro 2015 - macOS High Sierra, of course with Safari 11.0.2
Iphone 7 iOS11.2.1
iPhone 6 iOS11.2.1

Post
Topic
Board Projektentwicklung
Re: 💹 Coinlend.de - Der Lending-Bot für Poloniex und Bitfinex
by
ckz666
on 05/06/2017, 19:47:02 UTC
mega klasse tool Smiley

endlich nicht mehr stundenlang vor der poliniex website hocken und schauen dass auch immer alle Coins verliehen sind Smiley

 Grin
Post
Topic
Board Service Discussion
Topic OP
just another Bitcoin Mixer - 5ifblitg2ywjjo2t.onion
by
ckz666
on 05/06/2017, 10:45:38 UTC
hi,

anyone is using this service?

Post
Topic
Board Projektentwicklung
Re: Mit Festnetzflatrate Bitcoins verdienen
by
ckz666
on 21/02/2015, 20:11:52 UTC
JA, aber Finnland wird nicht durch die CountryFlat1/2 abgedeckt... oder weiß es jemand besser hier?
Post
Topic
Board Projektentwicklung
Re: Mit Festnetzflatrate Bitcoins verdienen
by
ckz666
on 21/02/2015, 14:42:59 UTC
Ja, Liechtenstein war das einzig lohnenswerte noch....

Na schade, war ne schöne Sache..
Post
Topic
Board Biete
Re: BMW 316 ti Compact
by
ckz666
on 05/01/2015, 17:38:12 UTC
Hallo,

verkaufe hier meinen 3er auch gegen Bitcoins. Meine Vorstellung sind so 12,5BTC

http://suchen.mobile.de/auto-inserat/bmw-316ti-compact-ilsenburg/203393003.html?lang=de&utm_source=DirectMail&utm_medium=textlink&utm_campaign=Recommend_DES


Falls Interesse besteht, einfach PM an mich.

Ist immernoch zu haben 😄
Post
Topic
Board Service Announcements
Re: Amnesia Dice
by
ckz666
on 30/12/2014, 20:23:05 UTC
Is this based on BitcoinDice or CoinDice from Johny?

Aparently he left a backdoor in it to be able to steal deposited coins. I have yet to confirm (I'm a PHP dev and still need to look over the code)

Good job on releasing a dice game for tor network though.



i got it from here: https://github.com/felinegambler/BitcoinDice

pls send me pm if have confirmed informations, ty ..
Post
Topic
Board Service Announcements
Topic OP
Amnesia Dice
by
ckz666
on 30/12/2014, 17:59:01 UTC
try your luck @ amnesiaszkvulu2a.onion
Post
Topic
Board Biete
Topic OP
BMW 316 ti Compact
by
ckz666
on 21/12/2014, 09:03:24 UTC
Hallo,

verkaufe hier meinen 3er auch gegen Bitcoins. Meine Vorstellung sind so 12,5BTC

http://suchen.mobile.de/auto-inserat/bmw-316ti-compact-ilsenburg/203393003.html?lang=de&utm_source=DirectMail&utm_medium=textlink&utm_campaign=Recommend_DES


Falls Interesse besteht, einfach PM an mich.
Post
Topic
Board Mining (Altcoins)
Topic OP
looking for X13 cpuminer binary for OS X 10.10
by
ckz666
on 19/11/2014, 22:08:58 UTC
hello all,


looking for X13 cpuminer binary for OS X 10.10

i googled it till my fingers was bleeding...  Wink

thank's in advance
Post
Topic
Board Project Development
Topic OP
b(i)tc(oin)-lookup - a quick and dirty bash-script
by
ckz666
on 18/11/2014, 17:52:28 UTC
hello all,

i was bored and wrote this little script on my old Macbook to waste my time and to see if it can find any hit (i know that this is almost impossible)  Grin

Code:
#!/bin/bash
#
#
# b(i)tc(oin)-lookup
#
# generate a bitcoin address including privatekey with vanitygen and check for received coins in
# (local)blockchain.
# you can use any blockexplorer/blockchain api, but i prefer local blockchain (like insight) for speed.
# don't spent found coins!


banner()
{
clear
echo "       #############################"
echo "      ##     b(i)tc(oin)-lookup  ##"
echo "     ##          by ckz666      ##"
echo "    #############################"
echo
echo "     coin me if u like it ;)"
echo "1CKZ666MXRwjhFjQpMTgDxKjYCU2fadMDi"
echo
}

if [[ ! -f vanitygen ]]
then
banner
echo "- vanitygen not found!"
echo
exit
fi

banner

count0=0
count1=0
btccount=0

while :
do

vani=$(./vanitygen 2> /dev/null -q 1)
addr=$(echo $vani | sed -e s/[[:space:]]Privkey:.*// -e s?.*Address:[[:space:]]??)
priv=$(echo $vani | sed -e s?.*Privkey:[[:space:]]??)
btc=$(curl -s http://localhost:3000/api/addr/$addr/totalReceived)
count0=$(($count0+1))

if [[ $btc > 0 ]]
then
count1=$(($count1+1))
btccount=$(($btccount + $btc))
echo "$addr:$priv-$btc" >> btcoins
fi
echo -ne " Found $count1 hits with $btccount satoshi's => Try $count0 - $addr $btc \033[0K\r"
done

you need vanitygen (catch it here https://github.com/samr7/vanitygen) in the same dir as this script.

Have fun with this Wink

Post
Topic
Board Biete
Topic OP
2 Stück Bitburner XX (ca 16 GHs) und 1x ASIC Blockerupter USB (ca 333 Mhs)
by
ckz666
on 25/03/2014, 11:04:21 UTC
Hallo,

verkaufe 2 Stück Bitburner XX (ca 16 GHs) und 1x ASIC Blockerupter USB (ca 333 Mhs).

Alles zusammen 270€ oder 0,5 BTC.

Die Teile liefen bei mir für ca 5 Monate.  Nach möglichkeit ist Selbstabholung bevorzugt. Komme aus dem Umkreis Braunschweig.


MfG Chris.
Post
Topic
Board Hardware
Re: [CLOSED] Avalon ASIC chip distribution
by
ckz666
on 22/05/2013, 13:01:12 UTC
SUP;burnin;ckz666
Post
Topic
Board Hardware
Re: [CLOSED] Avalon ASIC chip distribution
by
ckz666
on 16/05/2013, 19:42:07 UTC
damn, i got it...

ty Wink
Post
Topic
Board Hardware
Re: [CLOSED] Avalon ASIC chip distribution
by
ckz666
on 16/05/2013, 19:32:06 UTC
http://store.avalon-asics.com/?page_id=9605

look at point 2...

these chips will be available until at least end of the year, 2013.

does it means if somethings going wrong we wait till xmas?
oO omg...
Post
Topic
Board Biete
Re: [Gruppenkauf] Avalon ASIC Chips (SebastianJu) Batch 2: 1517 ASICs weg 11517 sold
by
ckz666
on 13/05/2013, 12:40:02 UTC
Ich hätt am Wochenende Zeit Wink In der Woche bin ich leider in Holland am arbeiten...
Post
Topic
Board Biete
Re: [Gruppenkauf] Avalon ASIC Chips (SebastianJu) Batch 2: 1517 ASICs weg 11517 sold
by
ckz666
on 13/05/2013, 12:37:14 UTC
Braunschweig? Mensch das ist ja direkt um die Ecke bei mir Wink

wäre mal für ein Treffen mit allen die auch aus der Nähe kommen ...
Post
Topic
Board Hardware
Re: [ANN] Avalon ASIC chip distribution
by
ckz666
on 26/04/2013, 18:25:50 UTC
ckz666; 40; 3.44; 1CKZ666MXRwjhFjQpMTgDxKjYCU2fadMDi