Search content
Sort by

Showing 20 of 1,155 results by Stinky_Pete
Post
Topic
Board Goods
Re: I wanna buy on UK Ebay but dont have an account there.
by
Stinky_Pete
on 15/12/2014, 17:17:20 UTC
I need someone to help me buy items on ebay so I can resell them.

Why not open a UK account yourself?
Post
Topic
Board Goods
Re: I wanna buy on UK Ebay but dont have an account there.
by
Stinky_Pete
on 15/12/2014, 17:16:12 UTC
I need someone to help me buy items on ebay so I can resell them.

So do the items have to come to your country at all? Why not have someone in UK who will buy and send on to the final purchaser?
Post
Topic
Board Goods
Re: I wanna buy on UK Ebay but dont have an account there.
by
Stinky_Pete
on 15/12/2014, 17:14:01 UTC
What items are you wanting and are you wanting people to buy them and ship them to you or get them directly sent? You should provide more details and you'll likely get more interest.

im ooking to buy and have them sent to me, I will pay upfront of course, but the issue I need help is getting it here without paying so much import tax, they charge 24 percent tax on items that come in to my country.
Which country is that? Why not save everyone's time and tells us everything now?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold
by
Stinky_Pete
on 13/12/2014, 18:13:00 UTC
Both bonuses received, thank you.  Smiley
Post
Topic
Board Altcoin Discussion
Re: If you had any bitcoin addresses with a balance in May, 2014 claim FREE ~0.02BTC
by
Stinky_Pete
on 09/12/2014, 00:27:32 UTC
Is this safe to download? Is it going to steal my wallet.dat?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Storj - Decentralized Storage
by
Stinky_Pete
on 01/12/2014, 18:15:52 UTC
Hi, If i put in the 0.4btc to buy 10,000 storjcoins, what happens after that? I would like early access to the driveshare program, but do we get paid in early access? Also how much do we get paid
http://storj.io/earlyaccess

Payment levels to be decided by the 'the market' IIRC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][GRE] GreenCoin | On Bittrex now!
by
Stinky_Pete
on 25/11/2014, 20:56:23 UTC
Someone stole my bike a few weeks ago  Angry

Have a good ride  Smiley
Post
Topic
Board Computer hardware
Re: [Sell] ASICMiner Prisma x2
by
Stinky_Pete
on 25/11/2014, 18:03:31 UTC
Where in the world are you? What about shipping and taxes.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Storjcoin X (SJCX) - A Coin for Decentralized Cloud Storage
by
Stinky_Pete
on 24/11/2014, 17:38:53 UTC
Hi everybody. Silly question but I figured I have few SJCX with poloniex exchange. I'd like to do withdrawal but I am not sure how it works. Please correct me if I am wrong but the only thing I need is to send those coins to my bitcoin address and make sure I have private key right? Or does SJCX use different type of addresses like other alt coins?

Thanks for any help!
Wrong. You can't withdraw your SJCX because there isn't a SJCX wallet.
Post
Topic
Board Off-topic
Re: hackers can steal data wirelessly from pcs that arent even online
by
Stinky_Pete
on 24/11/2014, 00:11:43 UTC
There is a small battery in the CPU (? - I believe this is where it is) that keeps power so the BOIS settings can be 'remembered'

In reality the simplest solution would be to line the inside of your computer with tinfoil. This would prevent an attacker from being able to receive any signal your computer is transmitting, as well as to prevent you from looking crazy. 

Not in the CPU, it's a separate component on the motherboard.

Lining the case will not help if it is the cable to your monitor that is leaking the RF. So you would have to wrap the foil around that cable, and earth it.

Or you could put another, very noisy, RF setup in the same room.
Post
Topic
Board Group buys
Re: [Closed] Bitfury miner group buy + hosting (with ESCROW)
by
Stinky_Pete
on 23/11/2014, 22:49:42 UTC
Hi

Thanks for the photo, its nice to see where the money went!

I'm fine with the idea of selling the hardware directly to you.

Thanks for the best organised and run group buy that I've been part of ~ its a shame the difficulty climbed so high, so quickly.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Syscoin - Business on the Blockchain
by
Stinky_Pete
on 23/11/2014, 22:40:52 UTC
Edit: this is way to complicated for the average person just saying.

too
Post
Topic
Board Beginners & Help
Re: URGENT QUESTION : How to send from 1 address?
by
Stinky_Pete
on 23/11/2014, 22:37:44 UTC
i'm wondering if it is possible with blockchain to send an amount from 1 address to 100 different addresses?

Many wallets allow you to send different amounts to different addresses all in the same transaction. Bitcoin Core has the "sendmany" command, for example. I use it to fund physical bitcoins and paper wallets (50 at a time). I don't know if its GUI lets you.

If you have access to a qt-wallet, you can do it from the console


sendmany "fromaccount" {"address":amount,...} ( minconf "comment" )

Send multiple times. Amounts are double-precision floating point numbers.
Requires wallet passphrase to be set with walletpassphrase call.

Arguments:
1. "fromaccount" (string, required) The account to send the funds from, can be "" for the default account
2. "amounts" (string, required) A json object with addresses and amounts
{
"address":amount (numeric) The bitcoin address is the key, the numeric amount in btc is the value
,...
}
3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.
4. "comment" (string, optional) A comment

Result:
"transactionid" (string) The transaction id for the send. Only 1 transaction is created regardless of
the number of addresses.

Examples:

Send two amounts to two different addresses:
> bitcoin-cli sendmany "tabby" "{\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\":0.01,\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\":0.02}"

Send two amounts to two different addresses setting the confirmation and comment:
> bitcoin-cli sendmany "tabby" "{\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\":0.01,\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\":0.02}" 6 "testing"

As a json rpc call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "sendmany", "params": ["tabby", "{\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\":0.01,\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\":0.02}", 6, "testing"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
(code -1)
Post
Topic
Board Mining support
Re: I want to know how to do solo mining will pay in btc
by
Stinky_Pete
on 23/11/2014, 22:34:36 UTC
What hardware do you have? What OS? What coin do you want to mine? Why solomining?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][Checkcoin] Explore the world using Checkcoin [PR PHASE]
by
Stinky_Pete
on 22/11/2014, 12:44:54 UTC
Had a great afternoon talking about Checkcoin and the future of cryptocurrency with @Geojan.



We look forward to meeting with more of you in Arnhem later this month!
Can we get names (real names or forum names) for these guys, and who is on the Checkcoin team?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][GRE] GreenCoin | On Bittrex now!
by
Stinky_Pete
on 21/11/2014, 23:04:14 UTC
Seems to me that you need more producers. Even with the bounty there are not more people joining. Probably need to make more noise in the forums for other green/low-energy forums. Perhaps get some sort of cross-posting agreement? What sort of relationships are there between the different coins?

I thought we were banned from posting address on this forum in a giveaway thread - too much 'spam' for everyone else.
Post
Topic
Board Off-topic
Re: hackers can steal data wirelessly from pcs that arent even online
by
Stinky_Pete
on 21/11/2014, 00:47:11 UTC
Anyone here want to buy a tin-foil hat? Made to measure. I accept bit-coin.
Post
Topic
Board Service Discussion
Topic OP
Bitcoin Payment Recieved scam
by
Stinky_Pete
on 20/11/2014, 19:37:32 UTC
I've just received an e-mail from no-reply@blokchains.info titled "Bitcoin Payment Recieved" claiming that I've received $2,031.88

Of course it's asking my to log on to my blockchain account.

I'm treating it as a scam because a) mispelling in title b) e-mail is NOT from blockchain address, and c) I don't have a blockchain account.


TREAT AS SUSPECT!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BITTREX][POS][FOOD] Plankton | White Paper | Multi-Pool | Tipping App
by
Stinky_Pete
on 19/11/2014, 16:48:33 UTC
I sent some food to my wallet . However the wallet is always offline. I used the nodes that were posted last in this thread in Plankton.conf and even backed up wallet.dat and used it again in a reinstall. Wallet is still offline .. help Sad

OS? Which release of the wallet?

OS: Windows 7
Wallet Version : 2.0.0.0

That's what I'm using with no difficulty. Have you checked your firewall?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BITTREX][POS][FOOD] Plankton | White Paper | Multi-Pool | Tipping App
by
Stinky_Pete
on 17/11/2014, 17:00:42 UTC
I sent some food to my wallet . However the wallet is always offline. I used the nodes that were posted last in this thread in Plankton.conf and even backed up wallet.dat and used it again in a reinstall. Wallet is still offline .. help Sad

OS? Which release of the wallet?