Bitcoin Forum
May 23, 2024, 04:17:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [45] 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 ... 146 »
881  Bitcoin / Bitcoin Discussion / Re: The weirdest addresses you have encountered on: July 01, 2012, 04:15:25 PM
1111111111111111111114oLvT2             (21 ones in a row, weird length)
Not a real address, it is literally just the number 0 encoded as a bitcoin address. It's nice that someone's sent some coins to it, though. If those coins ever go anywhere, it'll constitute absolute proof that the whole system is completely broken and we're all doomed.

This: validateaddress 1111111111111111111114oLvT2
Returns true

It's valid but can't be used?
I think he ment if someone "found" the private key then Bitcoin is doomed as that could possibly conclude that sha256 mechinism is flawed which in turn means the banks are teh sucks and Bitcoin two!
882  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation on: July 01, 2012, 04:14:18 PM
I've changed my mind, I'll just do it myself and pay people to verify the information. That might work better.
883  Bitcoin / Bitcoin Discussion / Re: Reverse psycology ad? on: July 01, 2012, 02:48:48 PM
I would like to see Ballmer doing a Bitcoin! Bitcoin! Bitcoin! in the future

http://www.youtube.com/watch?v=8To-6VIJZRE
BWUAHAH what a video to wake up to.
884  Bitcoin / Bitcoin Discussion / Re: Reverse psycology ad? on: July 01, 2012, 01:53:28 PM
I dont know much about areagance except what i remember from my child hood, what would you recommend?
885  Bitcoin / Bitcoin Discussion / Re: The weirdest addresses you have encountered on: July 01, 2012, 10:58:54 AM
1Ass8PJDPPYpsCYN8fpVeXegVpb2kXsr21
hehe
886  Bitcoin / Bitcoin Discussion / Reverse psycology ad? on: July 01, 2012, 08:58:23 AM
What if we made an ad that depecited the 'dream' currency and the reader isnt allowed to use it. The reader /viewer of the ad will be so ticked off they cant have it they search up bitcoins
887  Bitcoin / Project Development / Re: [BOUNTY 5 BTC] Bitcoin Pseudocode Client and Documentation 1+ BTC for 1st report on: July 01, 2012, 06:26:00 AM
The first person to submit the first report will get 1BTC more then usual. so that’s 2 Bitcoins total.

Here is the main page: http://xenland.github.com/Bitcoin-Pseudocode-Client/index.html
and I fixed the verify bitcoin address page (but still needs some worked to be finished with) http://xenland.github.com/Bitcoin-Pseudocode-Client/index.html
888  Bitcoin / Bitcoin Discussion / Re: [ANN] Cheaper In Bitcoins (Beta) | Winner Drawn Awaiting Confirm. on: July 01, 2012, 02:50:01 AM
Also forgot to mention publicly I shipped out the last winners prize.
889  Bitcoin / Project Development / Re: [POS] Easy POS implementation of bitcoin on: July 01, 2012, 02:47:43 AM
Excellent!
890  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation (Bitcoin Developers Dream Docs) on: July 01, 2012, 02:45:52 AM
 Grin
891  Bitcoin / Bitcoin Discussion / Re: Using bitcoin addresses for captcha..... on: June 30, 2012, 06:27:40 AM
What about combining the image idea along with the highlighted areas?

Or if you absolutly had to use text you could colorize the bitcoin address with 10 different colors and then in an image tell the user what color selected. No bot could solve that! Okay the bot could guess but it would only be correct once out of every ten tries(more times if your lucky)
892  Bitcoin / Bitcoin Discussion / Re: Using bitcoin addresses for captcha..... on: June 30, 2012, 03:28:16 AM
Whats if the amount is in an image format Tongue
893  Bitcoin / Bitcoin Discussion / Re: Using bitcoin addresses for captcha..... on: June 30, 2012, 02:09:23 AM
What if you took bitcoin address and turned them into firstbits style addresses and displayed them and users need to enter that correctly as the captcha ?

Can you display only parts of bitcoin addresses in this way programatically ?

What's the diference between that and just grabbing 5 or 6 random letters/numbers?

You cant pay a normal captcha instead of solving it Smiley

Sometimes they are so difficult to solve I just want to tip them a satoshi to let me use the friggin site!
Oh i get it : pay this tiny amount to signup and to prove your not a bot
894  Bitcoin / Bitcoin Discussion / Re: Using bitcoin addresses for captcha..... on: June 30, 2012, 02:08:43 AM
I could see this working if it required a scan of a qr code and then typing it in but i guess that wouldnt work becuase a bot could read qr codes... Idk
895  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation (Bitcoin Developers Dream Docs) on: June 30, 2012, 02:04:24 AM
Looking at php decode encode base58 scripts i guess it isnt just removal of letters i overlooked it none the less dont have time to desrcibe the procceses for the next week or so
896  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation (Bitcoin Developers Dream Docs) on: June 30, 2012, 01:47:07 AM
I would note that your Bitcoin address verification is incomplete, to actually fully verify that an address is valid you would also need to base58-decode the address and check the checksum.  In general I wouldn't worry about checking the length/first character before decoding since you can easily check the exact length and network ID byte after decoding as well as easily verifying private keys or other types of addresses with very nearly the same code, but I suppose that's up to personal preference since the 00 mainnet byte does always give a 1 at the beginning of the encoded address.
Thanks for the input, I'll be sure to look into that when I have time. If memory serves, I concluded base58 is really just alphanumerical string with out the 4 letters. I couldn't find any detailed information on the check sums to conclude it was required(or added any significance) to validate an address. Maybe if you could explain the processes of decoding that is required to validate. (As my examples shows you may not have to display how a SHA256() hash operation works that’s a little TOO detailed)

If you want the BTC just take what I started with for the incomplete subject and rewrite/append to it. and post it here.

Rules Are
The details should include at a minimum of two first formats.
1st format is a general description of the steps necessary to achieve the subject mechanism
2nd format is a pseudo code example of how the mechanism is performed.
897  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation (Bitcoin Developers Dream Docs) on: June 30, 2012, 12:49:06 AM
If you can find a good system to reward people who contribute to the project I will be willing to pledge some coins as well. At this point I wouldn't know how to "rate" the work and divide the reward fairly, I will watch this topic and see what happens Smiley
That might be why nobody wants to contribute; the incentive is unknown.

What about 1BTC (+Tachikomas' rate)  for every mechanism written in detail.
The details should include at a minimum of two first formats.
1st format is a general description of the steps necessary to achieve the subject mechanism
2nd format is a pseudo code example of how the mechanism is performed.
(Pseudo code Standard: http://users.csc.calpoly.edu/~jdalbey/SWE/pdl_std.html )
3rd format(optional): Example how to do it in a applicable programming language(PHP, Java, JS Actionscript, LOLCODE)

Sources are required.
Pseudo code is required. (Styling is optional)

The topics need to be written are:
*Create a Bitcoin address (Already started but I don't have time to finish it yet someone could get easy BTC with this.)
*Query for a list of public Bitcoin nodes.
*Requesting information from other nodes (Should include instructions with all available current commands the official Bitcoin client accepts)
*Verifying the Block chain and individual blocks (Should include instructions on how to download/request blocks from other nodes)


I hope i didn't forget anything
898  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation (Bitcoin Developers Dream Docs) on: June 29, 2012, 09:18:29 PM
This is a great idea. I noticed you are giving a way a bounty for contributions. How are you going to (fairly) divide those?

I have thought of a quite a few ways but I haven't quite decided yet. I'm open to suggestions. There will almost more then liekly BTC in the future to give to more contributors, I just wanted to attract others to help contribute knowledge first before I decided.

The less work I have to do the better they will be compensated.

I noticed the bitcoin client information on how its mechanisms is scattered around and is almost always describing it at all different angles(Gets boring quick when attempting to research or develop).
For instance the description of a Bitcoin address not only involved the mechanisms on generating an address but also described the benefits and pitfalls of it in real world applications saying things like "Bitcoin address is like an email address", or "Bitcoin addresses are small enough to fit on QR codes"; You know things that are not developer related.

So my aim here is to acknowledge that the developer reading about Bitcoin client mechanism is already sold on using it now they just need to get to work on developing it and not spend so much "research hours" memorizing everything.

Basically: My vision for this documentation project is so a developer can click on the subject like "Create a Bitcoin address" and learn how to create a Bitcoin address just by reading one page. The developer then can do all the work in converted the pseudo code mechanisms to their selected programming language. (I sound like a broken record i know but I feel it helps get my point across)
899  Bitcoin / Project Development / Re: Bitcoin Pseudocode Client and Documentation (Bitcoin Developers Dream Docs) on: June 29, 2012, 08:42:44 PM
Almost done with the documentation on creating a Bitcoin address
http://xenland.github.com/Bitcoin-Pseudocode-Client/
900  Bitcoin / Bitcoin Discussion / Re: Bitcoin Pesudocode Client (5 BTC total for contributors) on: June 29, 2012, 08:40:46 PM
Updated documentation (Almost finished with writing on how to generate a bitcoin address with pseudo code)
http://xenland.github.com/Bitcoin-Pseudocode-Client/
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [45] 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 ... 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!