Search content
Sort by

Showing 20 of 146 results by arby
Post
Topic
Board Off-topic
Re: How are you today?(Daily Thread)
by
arby
on 22/11/2015, 00:36:18 UTC
Depressed.
Post
Topic
Board Off-topic
Re: Post your Total time logged into Bitcointalk
by
arby
on 20/11/2015, 18:07:27 UTC
Total time logged in: 7 days, 2 hours and 32 minutes.
Post
Topic
Board Off-topic
Re: How many bitcoin addresses do you have ?
by
arby
on 20/11/2015, 17:23:26 UTC
I have over 20 addresses but only use 2-4 of them.
Post
Topic
Board Digital goods
Topic OP
Buying Keybase Invite
by
arby
on 18/11/2015, 18:38:31 UTC
Looking for an invite to Keybase.
PM or post here a price or you can give one to me for free.
Post
Topic
Board Services
Re: Anyone in the UK that wants to earn money?
by
arby
on 18/11/2015, 17:58:55 UTC
Are you amazon refunding items or what?
Masterbrain just use a reship service instead of people. reship.com
Post
Topic
Board Digital goods
Re: Selling Amazon Giftcard $50
by
arby
on 18/11/2015, 17:27:45 UTC
I have a $50 giftcard purchased from gyft.com that I don't need anymore and want to sell it.

Price: $35 Bitcoin

can you show me your gyft.com account via teamviewer to prve it is indded bought on gyft,i may buy it
LMK
Yes i'll PM you a join.me link.
Post
Topic
Board Digital goods
Re: XBOX LIVE 13 MONTH CODES x2 ($40)
by
arby
on 18/11/2015, 17:12:14 UTC
Where did you get the codes from? I'm interested.
I didn't know a "13" month code existed.
Post
Topic
Board Digital goods
Topic OP
Selling Amazon Giftcard $50
by
arby
on 18/11/2015, 17:10:15 UTC
I have a $50 giftcard purchased from gyft.com that I don't need anymore and want to sell it.

Price: $35 Bitcoin
Post
Topic
Board Beginners & Help
Re: Best bitcoin wallet
by
arby
on 18/11/2015, 16:16:56 UTC
Electrum is the best in my opinion lightweight and the seed recovery is a very useful feature.
Post
Topic
Board Scam Accusations
Re: [20BTC bounty for conviction]STR8 Spaso is a scammer!
by
arby
on 17/11/2015, 23:32:52 UTC
Wonder which one of the moderator/admins is gonna go scope the dudes IP and get a general location of the guy to send in the Cuban hit squads.

lol - I emailed Roger the Name, country, and address of the douche. If he wants to throw a lil btc for it, fine, if not oh wells.


I have already sent everything about the scammer to roger. But as thread says, the 20BTC for "conviction". You'll be paid full amount if you get him convicted, nothing else for some other things.

eh, I'm not a fan of bitcounbounty hunter website. Nor the actual rules to get bounties. Do you know it's almost impossible to get convictions? Some say identify which is a little easier. But the whole conviction thing is a little far fetched. Probably will not participate in any more.
If he decides to swat roger for not paying the ransom there is a real chance of conviction, you can get like 5-20 years in prison for it even when your a teen.
Post
Topic
Board Digital goods
Re: [WTS] Darknet Market source code for sale
by
arby
on 17/11/2015, 22:01:20 UTC
I have not seen this source so I don't know if its even secure. I man Evomarket source (which I have) was released and many people are using that source now. Just re-theme.

Why is yours so much more better than one of the top sources?
Do you mind giving it to me for a price or free?
--
The Bitwasp project is a good option to look at and build off of instead of buying this for 100 BTC.
And to whoever buys this don't post here saying your buying it and be sure to re-theme it Wink
Post
Topic
Board Archival
Re: Last Drink You drank. (daily thread)
by
arby
on 17/11/2015, 19:14:06 UTC
Rockstar Energy & Coke the two things that are horrible for my body.
Post
Topic
Board Off-topic
Re: What makes you happy?
by
arby
on 17/11/2015, 19:01:23 UTC
The internet.
Post
Topic
Board Off-topic
Re: What Browser You Use
by
arby
on 17/11/2015, 15:27:59 UTC
Chrome because of the sync features.
Post
Topic
Board Off-topic
Re: Do you believe in aliens?
by
arby
on 17/11/2015, 15:08:44 UTC
Yes, but I might not see it in my lifetime unless we become immortal someday.
Post
Topic
Board Altcoin Discussion
Topic OP
[TUT] Script - Get an e-mail when a block is found + updown checker (XPM)
by
arby
on 25/07/2013, 08:25:26 UTC
Ok well, as many others I am mining from different machines, and well, checking all of them for found blocks is very hard, also I am not using the same wallet for all of them so basically I prefer the machines to e-mail me when they find a block.

Also the script checks if primecoind is still running, and if it's not it tries to start it again.

1. Install a mail server (if you don't have one) so that you can receive e-mails

On Debian/Ubuntu you should install exim4 in order to get your e-mail working.
Code:
apt-get update
apt-get upgrade
apt-get install exim4-daemon-light mailutils
dpkg-reconfigure exim4-config

On CentOS/Slackware/Arch/Gentoo I am sure you will find many tutorials of doing this.

2. Save this script in a file and make it executable (chmod +x filename)

Code:
#!/bin/bash

primecoind=`which primecoind`

#we check if primecoind is running and if not we start it again
if ! pgrep -f $primecoind >/dev/null 2>&1; then
$primecoind --daemon
sleep 10
fi

#we check if a block was found or not
generated=`cat $HOME/.primecoin/debug.log | grep generated | grep -v prime | sed 's/generated //g'`

if [ -z "$generated" ] ; then
exit
fi

#we found a block
ip=`hostname -I`
$primecoind listtransactions | /usr/bin/mail -s "I found one! $generated XPM $ip" -r primecoind@$ip  your@email.com

#clean up and server restart
$primecoind stop
sleep 10
rm -rf $HOME/.primecoin/debug.log
$primecoind --daemon

3. Add this to your cron daemon

Code:
crontab -e

And add the following:

For 15 minutes checks:

Code:
0,15,30,45 * * * * /path/to/yourscript

For hourly checks:

Code:
0 */2 * * *  /path/to/yourscript

Save and close.

To check that it was added:

Code:
crontab -l

Regards

P.S. This script can be easily modified to work with any daemon by fiddling with 'which primecoind' maybe replacing it with 'which bitcoind', not just the primecoin one, because I think they all work the same way.
Post
Topic
Board Beginners & Help
Re: Ukash bitcoin scam
by
arby
on 19/06/2012, 09:58:31 UTC
I do not know if you are talking about the same person, but "bitcoinseller" (the nickname) is also on btc-e.

As soon as I spoke on their chat, he sent me a PM stating that he is willing to sell me bitcoins for $5.2, when the price on the website was $6.4.

I said just "hi" on the chat, nothing about buying bitcoins, so obviously he was contacting anyone that talked there.

I told him, ok, but to send the bitcoins first, he said he does not agree, and I asked him to search for another victim.

When something sounds too good to be true, it usually is.



Post
Topic
Board Electrum
Re: [ANNOUNCE] Electrum - a new thin client
by
arby
on 09/06/2012, 13:47:01 UTC
Edit:

It was because I was using 0.41, after updating to the latest client (0.56) everything seems to be working fine.


I keep getting server not ready.

I have been trying to use electrum.novit.ro, btcback.com, ecdsa.org, electrum.bitcoin.sk.

electrum.bitcoin.sk seems to be working but, it does not show my recent transactions.

Anyway, what server are you using? I tried to find a server list but I was unable to.


anyone else having a LOT of problems with their servers recently?

Not that I know of... Which server in particular?
Post
Topic
Board Electrum
Re: [ANNOUNCE] Electrum - a new thin client
by
arby
on 09/06/2012, 13:30:54 UTC
anyone else having a LOT of problems with their servers recently?
Post
Topic
Board Currency exchange
Topic OP
Selling UKASH and PaySafeCard Vouchers
by
arby
on 04/06/2012, 05:50:03 UTC
Selling GERMAN Ukash and PaySafeCard 10 EUR Vouchers.


10 EUR Ukash Voucher           == 2.3 BTC

10 EUR PaySafeCard Voucher == 2.1 BTC


Rates are subject to change. Discounts for big quantities.