Bitcoin Forum
April 27, 2024, 03:00:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 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 »
2161  Bitcoin / Bitcoin Discussion / Re: Impressive bitcoin one liners for non bitcoiners on: October 06, 2011, 06:26:11 AM
Bitcoin: legal headache.

The line I usually use: "Bitcoin is a peer-to-peer crypto currency backed by proof-of-work and a public psuedonymous transaction record."

proof-of-work means when the boss looks over your shoulder you point and say "look what i did!".

does proof-of-work have any other meaning to the average person?
2162  Bitcoin / Project Development / Re: Bitcoin Co-op - Let's build some new businesses! on: October 06, 2011, 12:39:40 AM
great project you have there, its almost like our www.bitcoinstarter.com

would you put this on glbse.com ?

thanks. i thought bitstarter was looking for investors to invest their bitcoins in start up projects?

i'm not asking for any bitcoins from anyone for this. any direct monetary investment would come from my pocket. just want to trade people's skills and time for a % in what they work on.

most probably won't put it on gblse.com...

too complicated. too messy. too many complaints about that site's ease-of-use.
2163  Economy / Speculation / Re: The Next 365 Days of Bitcoin on: October 05, 2011, 03:16:38 PM

ouch. looks like a fun read but it's total eyeball punishment for an old guy (33) like me.

i'm pasting it into notepad...
2164  Bitcoin / Project Development / [BOUNTY] 0.2 btc for a regular expression in php [CLOSED] on: October 05, 2011, 02:50:39 PM
just looking for a quick regexp for this please:

input string has <lots of stuff> including <stuff in angled brackets>.

i need it to output something like:

Code:
array (
[0]=>lots of stuff
[1]=>stuff in angled brackets
)

need a little php code block for this, thanks.


EDIT: worked this out myself.

Code:
preg_match_all("/<[^>]+>/",$tmp,$out, PREG_PATTERN_ORDER);
2165  Bitcoin / Bitcoin Discussion / Re: Satoshi's 20,000 BTC? on: October 05, 2011, 02:40:34 PM

but they could only do it once.

after that, the 300,000 coins would have been distributed more evenly thereby giving up the power to do it again.



That is like saying that you can only kill a person once. After killing me, you'd never have the power to do it again. Does that make me the winner or the loser?

i already decided a while ago which one you were actually.

but silly me took you off 'ignore' for this thread.
2166  Economy / Services / Re: Professional logo designs for 8 BTC (Proofs from Bitcoin community included) on: October 05, 2011, 02:34:51 PM
Do you do free or really cheap logos for non-profit movements?

Logos of his caliber for 8 BTC IS "really cheap."  That's an amazing deal and I hope everyone here takes advantage of that.

Zaise - are you still offering this?

i'd also like to know... these logos are awesome.


2167  Bitcoin / Bitcoin Discussion / Re: Satoshi's 20,000 BTC? on: October 05, 2011, 01:55:02 PM
Satoshi probably has ten times that amount, or more.

As for people being afraid about it, it's the same reason children fear the bogeyman under the bed; utterly irrational.

Of course. Just like the boogeyman, Satoshi doesn't actually exist. There's a small group of early adoptors though, who all have 300k+ bitcoins, who could all singlehandedly wreck bitcoin temporarily at any moment they choose. If you have to be affraid of it or not is another question though.

but they could only do it once.

after that, the 300,000 coins would have been distributed more evenly thereby giving up the power to do it again.

2168  Bitcoin / Bitcoin Discussion / Re: MtGox adds redeemer for private keys including Casascius Physical Bitcoins on: October 05, 2011, 01:52:12 PM
hmmm more ways to put money into gox.

if i weren't having trouble getting money out of gox, i'd find this really handy.

well, hopefully it sets the scene for more websites to do something similar.

good stuff.
2169  Other / Politics & Society / Re: Piracy is good? on: October 05, 2011, 11:58:38 AM
thanks, i'm half way through it and want to make a couple of notes:

it's apparently from 2005
youtube was founded in feb 2005
2170  Other / Beginners & Help / Re: Sourcing bitcoins on: October 05, 2011, 10:28:10 AM
What are the easiest ways to anonymously get bitcoins to start trading in in the first place? I know I can go through a trade exchange, but then I have to give them my paypal/bank account/blah details, and I'd rather not do that.

I'm wondering:

how traceable are virtual credit cards?

can I buy bitcoins for cash (EUR or GBP) anywhere?

see my sig.

it's a nice image, vladimir, but it doesn't link anywhere.
2171  Economy / Currency exchange / Re: Has anyone successfully withdrawn USD or BTC from Mtgox since September 22? on: October 05, 2011, 09:20:56 AM
What happen with people that have not provided documents prior to the suspicious activities?

they submit docs and wait and wait and wait.
2172  Economy / Currency exchange / Re: Has anyone successfully withdrawn USD or BTC from Mtgox since September 22? on: October 05, 2011, 08:00:21 AM
How long does the process take once documents have been submitted to increase the limit?
How many weeks?
thanks

how many months? Cheesy

i've see many positive answers to this question:

Have you been able to withdraw USD or BTC from your MtGox account?

but absolutely no answers to this question:

Have you been able to get it unfrozen, if it was frozen at this time?

anyone out there actually had their account unfrozen successfully, which was pending review?
2173  Economy / Services / Re: Wanted: PHP email parser on: October 05, 2011, 04:24:36 AM
thanks very much for the code, bitsky.

here it is in case anyone else finds it helpful:

Code:
#!/usr/bin/php
<?

$mbox=imap_open('{mail.mymaildomain.com:110/pop3}INBOX', 'user@mymaildomain.com', 'mypassword') or die('POP3 connection failed');
$mails=imap_num_msg($mbox);
echo $mails." new mails arrived\n";
for ($i=1; $i<=$mails; $i++)
        {
        $mbody=imap_body($mbox, $i);
        $lines=explode("\n", $mbody);
        foreach ($lines as $tmp)
                {
                $tmp=trim($tmp);
                if (empty($tmp)) { continue; }
                echo "BODY[".$tmp."]\n";
                }
#       imap_delete($mbox, $i);
        }
#imap_expunge($mbox);
imap_close($mbox);

?>

basically i set up a new pop box, and a cron to run this script every 10 minutes.

edit: i tested the delete/expunge commands too and it works fine, thanks Cheesy
2174  Bitcoin / Project Development / Re: Bitcoin Co-op - Let's build some new businesses! on: October 05, 2011, 02:29:48 AM
I like this initiative had been thinking of doing this myself Smiley I'll watch this thread!

who did your awesome logo by the way?

I had someone on the forum create it but I believe they are long gone :/ I'll see if they are still around!

i'm hoping i can get some designers and programmers thinking long term... i suspect most will prefer some kind of immediate payment (which i can do a little bit to get the ball rolling).

but maybe once things get going and we've got a few successful projects running, more might be tempted to come on board for a % deal.

so far no responses for bitcoincoop logo.
2175  Bitcoin / Project Development / Re: Bitcoin Co-op - Let's build some new businesses! on: October 05, 2011, 01:52:32 AM
I like this initiative had been thinking of doing this myself Smiley I'll watch this thread!

who did your awesome logo by the way?
2176  Bitcoin / Project Development / Re: Bitcoin Co-op - Let's build some new businesses! on: October 04, 2011, 11:14:32 PM
thank you both for your interest.

at the moment, there are more ideas in my head than i have managed to put down on paper, both for how this co-op will work and for some of the projects it could be working on.

s&m (ha, just noticed that), i'm sure your talents will come in handy too.


anyway, for the actual projects, i think we should start with something simple (simple like a coin toss game, although maybe more interesting).

i'm open to suggestions at this point for just about any kind of bitcoin-related online business, but will probably start with the smaller, quicker ones so that we can get a feel for how such a co-op will work, and also so that development of bitcoincoop.com can keep pace with the rest of what we're doing.

...will come back and post with some actual direction, if no other suggestions are forthcoming.
2177  Economy / Trading Discussion / Re: MTGOX Withdrawal issue on: October 04, 2011, 10:02:09 PM
i've just found out about https://mtgox.com/forms/verification

i wonder if people who have merely sent email to the aml address, will need to resubmit using that form.
2178  Bitcoin / Bitcoin Discussion / Re: MoonCoin Message I discovered, not many saw this? on: October 04, 2011, 01:49:33 PM
Guilty until proven innocent.

Just curious though; isn't it the other way around in courts? Innocent into proven guilty?


it used to be.

but try asking a suspected terrorist or pedophile if that's how the courts works today.
2179  Bitcoin / Bitcoin Discussion / Re: screenshots of ancient bitcoin client? on: October 04, 2011, 01:35:51 PM
They didn't look too different, http://web.archive.org/web/20100106082749/http://www.bitcoin.org/

The biggest difference is the notes field an ip based transactions.

ah okay so that's 0.2.

when satoshi first introduced bitcoin, did he write a gui?

...or what date was the first gui made?
2180  Bitcoin / Bitcoin Discussion / screenshots of ancient bitcoin client? on: October 04, 2011, 01:07:42 PM
does anyone have (or could make) screenshots of very early bitcoin client software?

for those of us that just got started this year, were the early versions (pre 0.3) much different in looks/functionality?

i'd be interested to see what the very first ones looked like.
Pages: « 1 ... 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 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!