Bitcoin Forum
July 22, 2024, 07:46:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 [116] 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 »
2301  Economy / Service Discussion / Re: mtgox IS DOWN! 1 hour archived! on: April 21, 2013, 03:50:15 PM
It is funny how out of the four slogans on their main page, only 1 is actually semi-true.

Take a guess at which

2302  Alternate cryptocurrencies / Altcoin Discussion / So what do I do with my ripples? on: April 21, 2013, 02:56:31 PM
The question is serious. I still don't understand how or why you would use it, where you can use it etc.
2303  Alternate cryptocurrencies / Altcoin Discussion / Re: [FC] New forum on: April 21, 2013, 02:09:23 PM
I have created FeatherCoinTalk. Thoughts?
Layout a bit hard on the eyes.
2304  Alternate cryptocurrencies / Altcoin Discussion / Re: [GIVEAWAY] DividendRippler.com Beta Testing on: April 21, 2013, 02:05:00 PM
I just convinced myself I don't really understand ripple all that well. I mean, I have 20k ripples from the ripple giveaway, but how do I use them?
2305  Alternate cryptocurrencies / Altcoin Discussion / Re: [GIVEAWAY] DividendRippler.com Beta Testing on: April 21, 2013, 01:49:23 PM
I was about to do it, but I gave up. Wasn't comfortable with the risks and these IOU(I owe you?). I don't like to owe people!
2306  Alternate cryptocurrencies / Altcoin Discussion / Re: [GIVEAWAY] DividendRippler.com Beta Testing on: April 21, 2013, 01:44:22 PM
LOL TTbit, a project of mine was called TTBits.
2307  Alternate cryptocurrencies / Altcoin Discussion / Re: CT Path Finder - Optimize your cryptocurrency trading on: April 21, 2013, 11:44:55 AM
Very nice. Good work!
2308  Economy / Economics / Re: This idea might save Bitcoin low trade volums on: April 21, 2013, 10:07:10 AM
Fast forward a little and this will inflate bitcoin, as there will always be coins that will be lost/deleted, thus the 21 million coins cap will never be reached.
2309  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Genesis Block Generator on: April 21, 2013, 08:04:29 AM
I was able to implement the block hashing part, will clean it up and release later.
2310  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Genesis Block Generator on: April 21, 2013, 05:07:41 AM
I am glad it works for you. But a lot of users, me included are on Windows.
2311  Alternate cryptocurrencies / Altcoin Discussion / [ANN] Genesis Block Generator on: April 21, 2013, 03:50:39 AM
Ok, thread title is a bit misleading, I haven't actually done the genesis block calculation part done. I'd like to also take a minute or two and explain to you that I aren't exactly a good coder, I started doing C in my early days of mining in 2011 and playing with cgminer and nonces and stuff. I refused to read a book on C, so everything I've learned about C is through trial&error, well OK I have not learned much so trial&error is how I get my results. The equivalent of this would be trying to drive a car as if you have 10 years behind the wheel without actually knowing how to.

So basically do not expect the best code, I could have done things in there that aren't efficient, or just plain simply wrong and that would be because I don't know how to do them in a different way.

The code is here http://pastebin.com/nhuuV7y9, pure C. No binaries for obvious reasons. The code relies on OpenSSL. Since you will need OpenSSL either way, as it is a Bitcoin dependency, I believe it won't be an issue.
*Implemented Genesis Block finder

Cons
  • Program assumes one input and one output. So trying to create a merkle hash like the one in Freicoin with multiple inputs and outputs is not possible with this program.
  • Program at the moment assumes 50 coins, but this can be changed in the code very easily.
  • This is probably the most important one. I can re-create the Bitcoin merkle hash with ease, but when I tried to test it with Litecoin's timestamp message, it failed. Something to do with Unicode. I will not lie, my understanding of Unicode and ASCII is even less than my understanding of C. Basically, try to avoid apostrophes,commas and other special characters. Someone more knowledgeable can patch this

Usage
Quote
program <pubkey> <timestamp> <nBits>

Example
Quote
programname 04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef3 8c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks" 486604799
Which will output
Quote
Coinbase: 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f7 2206f6e206272696e6b206f66207365636f6e6420
6261696c6f757420666f722062616e6b73

PubkeyScript: 4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4ce f38c4f35504e51ec112de5c384df7ba0b8d57
8a4c702b6bf11d5fac

Merkle Hash: 3ba3edfd7a7b12b27ac72c3e67768f617fc81bc3888a51323a9fb8aa4b1e5e4a
Byteswapped: 4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b

The timestamp needs to be in quotes if it's longer than a word, because it will get treated as separate arguments than a whole string.

So yeah, more cons than pros, but if you like what I've done, please drop some reward to the address on my signature Smiley
2312  Bitcoin / Development & Technical Discussion / Re: Blockchain http notifications on: April 21, 2013, 01:39:24 AM
There is a discernible difference between the blockchain AND blockchain.info. You might want to start using the latter when you refer to the website, and the first when referring to the blockchain, where all the block information and transactions are stored.

Sorry I went off-topic, but you are the second person to call blockchain.info just "blockchain" and this causes confusion for others and possibly make them misinterpret things in the long run.
2313  Bitcoin / Development & Technical Discussion / Re: Password hasher and encrypter, keep your Bitcoins safe! on: April 20, 2013, 03:13:32 PM
And again Python...tbh I am rather tired of Bitcoiners constantly writing stuff in Python.

inb4 then don't use it. But it's true imho.
2314  Economy / Trading Discussion / Re: Amazing: mining rig sold for 50.000$, I cannot beleave it on: April 20, 2013, 08:23:20 AM
It's just a bunch of idiots doing rash decisions of selling something that ain't there yet.
2315  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.22] on: April 20, 2013, 08:14:14 AM
I was wondering what you guys thought of the idea of making a legitimate pool for vanity address mining.
I was looking into the code for it, and it seems pretty workable.
There just needs to be a way to do proof of work with vanityminer. It's the same theory as shares with bitcoin though, so not too complex.
If you are talking about actually mining PRE-EXISTING addresses in their full form, not just small patterns, sure, yes. But if you are talking about just patterns like 1MyAddy, then there is already a pool, it's http://vanitypool.appspot.com
2316  Bitcoin / Bitcoin Discussion / Re: Cryptography's window of usefulness (request for link) on: April 20, 2013, 07:50:32 AM
When quantum computers break normal cryptography, it will be replaced with quantum cryptography, no?
2317  Bitcoin / Bitcoin Technical Support / Re: transaction that won't confirm on: April 19, 2013, 11:34:36 PM
You do realize in order to perform a double spend you need at least 51% of the network power.
Between your edgy username and your comment you know nothing.
What does my username have to do with anything?
2318  Bitcoin / Bitcoin Discussion / Re: OFFICIAL: BTC-e accounts had been hacked on: April 19, 2013, 11:33:06 PM
And the guy couldn't type this in English??? Great way to deal with non-Russian customers.
2319  Economy / Service Discussion / Re: Happy 1,000th Trade Day Mt Gox - oh, we missed it. on: April 19, 2013, 01:03:00 PM
With the 0.5% fee they get per trade, that's a lot of cakes.
2320  Other / Off-topic / Re: Is it time to get rid of Linux/JavaScript/Python kids? on: April 19, 2013, 12:03:15 PM
Have to agree with OP...Python this, python that...learn to code in C/C++ damn it...
Pages: « 1 ... 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 [116] 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!