Search content
Sort by

Showing 20 of 188 results by drawoc
Post
Topic
Board Services
Re: Bootstrap css expert
by
drawoc
on 07/08/2012, 01:31:40 UTC
PM'd you.
Post
Topic
Board Services
Re: Looking for someone to write a file copy script
by
drawoc
on 20/07/2012, 00:44:55 UTC
For 3 BTC I can write a python script that does this for you.

I should be able to have it written for you within a day of whenever you give me the go-ahead.
Post
Topic
Board Services
Re: Looking for a web designer.
by
drawoc
on 07/07/2012, 00:13:01 UTC
PM'd you.
Post
Topic
Board Bitcoin Technical Support
Re: HELP NEEDED!! (0.5 btc bounty)
by
drawoc
on 06/06/2012, 20:20:14 UTC
You can get a list of ip addresses for a ton of tor exit nodes like this:
Code:
curl http://exitlist.torproject.org/exit-addresses | grep -o -e "ExitAddress [^ ]*" | sed "s/ExitAddress //" > ipban.txt

If you run this in a bash terminal, it'll download a list of tor exit nodes from the tor project, format it in a nice, easy to use format, and save it to a file named ipban.txt.
You might want to set up, eg. a cron job to run this and update the file every once and a while.

Then, you just need to make your script deny anyone with one of these ip addresses. Then, nobody can access your site over tor.

This is what that command gives me at the moment:
http://pastebin.com/0iM6GrkM
Post
Topic
Board Beginners & Help
Re: Tying into the bitcoin network programmatically
by
drawoc
on 20/02/2012, 22:15:59 UTC
The typical (and most well-tested) route would be to run bitcoind, like DeathAndTaxes said.

Bitcoind is just the normal client, but without the gui, and with an interface for programmatic access. (It's in the same download as the GUI client)
Then, you talk to bitcoind with the JSON-RPC interface.

These links on the wiki should help:
https://en.bitcoin.it/wiki/Running_Bitcoin
https://en.bitcoin.it/wiki/PHP_developer_intro
https://en.bitcoin.it/wiki/API_reference_%28JSON-RPC%29
https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list
Post
Topic
Board Services
Re: [WTB] Looking for PHP/MySQL coder to modify OpenCart
by
drawoc
on 20/02/2012, 21:25:13 UTC
PM'd you.
Post
Topic
Board Marketplace
Re: Show your firstbits - get 2 bitcents
by
drawoc
on 11/09/2011, 18:44:09 UTC
Yes, and that would be a fine independent variable, various min, max, averages per transaction. I could calculate it I had a dump of all addresses per block. Can the blk*.dat tell me that? I don't want to DoS blockexplorer with wget/curl requests.
Yep, it's all in blockindex.dat. You might want to look into this patch:
https://bitcointalk.org/index.php?topic=724.0
Post
Topic
Board Off-topic
Re: How IPv6 will destroy bitcoins
by
drawoc
on 29/08/2011, 17:18:30 UTC
When will IPv6 will destroy bitcoins Huh

It won't - IPv6 makes no difference in the scope of things over IPv4.
Post
Topic
Board Services
Re: [CLOSED] 1BTC to assist me with sending/recieving email on my ubuntu server
by
drawoc
on 18/08/2011, 18:43:10 UTC
Thanks everyone!

Glad you've got it working. Just curious, what was the solution that worked in the end?
Post
Topic
Board Services
Re: 1BTC to assist me with sending/recieving email on my ubuntu server
by
drawoc
on 18/08/2011, 17:06:41 UTC
If you run this command,
Code:
sudo dpkg-reconfigure postfix

you'll eventually get to a screen like this:
Code:

  ┌──────────────────────────────────────────────┤ Postfix Configuration ├───────────────────────────────────────────────┐
  │ Please specify the limit that Postfix should place on mailbox files to prevent runaway software errors. A value of   │
  │ zero (0) means no limit. The upstream default is 51200000.                                                           │
  │                                                                                                                      │
  │ Mailbox size limit (bytes):                                                                                          │
  │                                                                                                                      │
  │ 0___________________________________________________________________________________________________________________ │
  │                                                                                                                      │
  │                                                                                                          │
  │                                                                                                                      │
  └──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
                                                                                                                           

Right now, postfix is complaining that the maximum size of a single email is larger than the maximum size of the entire mailbox. You could simply type in a lager value for the entire mailbox at this screen, and it should fix that problem. 0 means no limit on the maximum size. I think the default maximum email size is 10240000, so if you do set a mailbox size limit, make sure it's more than that.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin bounty website
by
drawoc
on 17/08/2011, 20:22:48 UTC
I'm taking this proposal as an idea to possibly working on. The only thing pop me in mind is, Is this method won't be to hard for the average user ? I wanna keep every escrowed transactions easy for everyone.

Well, the idea is that this happens behind the scenes on the server side. The users might not even know you're doing it. The goal is that anyone who now hacks your server can't send the bitcoins to themself, only to one of the parties in the transaction. In other words, it becomes impossible for anyone to steal bitcoins off of the server, thus increasing security.
Post
Topic
Board Services
Re: 1BTC to assist me with sending/recieving email on my ubuntu server
by
drawoc
on 17/08/2011, 20:01:16 UTC
Yes, please read us the logs.

You can get the most recent log messages with:
Code:
tail /var/log/mail.log

Also, have you configured postfix yet?
You can do so with:
Code:
sudo dpkg-reconfigure postfix
This should give you a nice user interface to help configure your server.
Post
Topic
Board Off-topic
Re: How IPv6 will destroy bitcoins
by
drawoc
on 17/08/2011, 19:42:25 UTC
It is already trivial to determine the country of an IPv4 address based on public information form IANA and the various RIRs.

Yeah, if your ISP really wanted to block your access to the Bitcoin network, they definitely wouldn't need IPv6 to do it.

IPv6 would actually help the network because no more NAT means more nodes accepting incoming connections. That's good because it means data travels faster from node to node.
Post
Topic
Board Mining support
Re: is there any free windows os??
by
drawoc
on 14/08/2011, 20:29:24 UTC
Anyone know a good guide for installing this on a machine that already has Ubuntu on it? (to dual boot)

https://help.ubuntu.com/community/DualBoot/WindowsLast
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin bounty website
by
drawoc
on 14/08/2011, 03:28:05 UTC
1 and 2 is doable using the current system:
Upon receiving some funds you can create an temporary address/private key pair, send the funds to this new address, and use the generated private key to generate the two outgoing transactions. Now store both transactions and throw away the temporary private key.
That way the original address does not vanish and so no coins will be lost.

Nice, didn't think of that.

Are there any escrow services that use this method? If not, there should be!

Agreed. Maybe we should contact Btcrow, and suggest it to them? (I don't think anyone's using it yet.)
Post
Topic
Board Meta
Re: God damn loan requests
by
drawoc
on 13/08/2011, 04:06:16 UTC
Yes, thank you!
Post
Topic
Board Meta
Re: God damn loan requests
by
drawoc
on 13/08/2011, 03:24:09 UTC
+1 The services board is really getting crowded with loans. Needs own sub forum.
Post
Topic
Board Beginners & Help
Re: Connecting to trade APIs in R?
by
drawoc
on 13/08/2011, 02:59:27 UTC
In file(con, "r") : unsupported URL scheme

The URL scheme is, in this case https. This means that R doesn't have https support. Google suggests looking into the package RCurl.

Note that I've never programmed in R before.
Post
Topic
Board Project Development
Re: [Announcement] DownloadCoin Beta launches!
by
drawoc
on 13/08/2011, 02:31:51 UTC
It would be nice if you could automatically withdraw funds instead of making me manually watch the balance and withdraw. For example, every day you could send the balance of any account with over 0.01 BTC in it. Because you'd be sending all of the payouts at once you could use a sendmany to save on transaction fees. Sounds like a better idea to me.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin bounty website
by
drawoc
on 12/08/2011, 04:28:37 UTC
Thinking of security, would it be possible to write the platform in a way which prevents the site owners, moderators and any intruders from having access to the funds?

You could generate a new address every time that a sponsor wants to sponsor a project. Then when payment arrives, generate one transaction for every possible outcome (one transaction that sends the bitcoins back to the sponsor, and one that sends it to the developer) but don't broadcast them. After that, you delete the address' private key. When the outcome is determined (bounty should be sent to developer or returned to sponsor), simply broadcast that transaction on the network.

This way, the most damage an attacker could do would be to choose whether the bounty went to the developer or the sponsor. The attacker could never send any of the coins to himself (unless he was the dev/sponsor).

This has a few downsides:
  • If the sponsor sends coins to an address after its private key is destroyed, those coins are gone.
  • You still keep the private key around until a payment is received.
  • All developers must be known before the bounty is moved to escrow. Any developer that appears late in the game cannot collect bounties held in escrow before he started work on a project.

It would be nice if we could create transactions that said to forward all funds sent to one address, present and future, to another address. That would kill problems 1 and 2. (Also useful for ex. importing an untrusted address into one's wallet.) If this isn't possible currently w/ script, it sure would be nice to see implemented. (Bounty anyone?  Tongue Gotta love irony.)