Bitcoin Forum
May 24, 2024, 05:11:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 »
1081  Bitcoin / Mining / Re: if deepbit.net gets anymore hashing speed it could compromise the system on: May 08, 2011, 03:37:56 PM
I set up a pool miner for the first time this morning on the computer of my wife (a gamer, so she a better card then I have). I also chose deepbit.net, because someone else mentioned it to me before. It would be nice to have a good comparison sheet, comparing all the pools besides each other on various points.
1082  Bitcoin / Mining / Re: Are there any "communist" pools? on: May 08, 2011, 11:14:13 AM
This went way off-topic.
1083  Bitcoin / Mining / Re: Are there any "communist" pools? on: May 08, 2011, 11:02:18 AM
Well, I think there are no good examples of state-run communist systems (maybe the ones that LMGTFY mentioned, but I don't know the details about those examples). Some of the socialist states in South-America (Bolivia) are IMHO better examples of communist states then the old communist states ever were.
1084  Bitcoin / Mining / Re: Are there any "communist" pools? on: May 08, 2011, 10:03:30 AM
This thread makes me lol though.  I love it when communists/socialists try to make things work in a real economic model.

Yeah, like the current economic model is perfect (US government having to take socialist measures to prevent their economy from collapsing).
Better than communism.  Wink

Better for Freeriders (read: bankers) Wink


Ha ha, the bankers certainly are doing very well.  The current system is horrible, but I think the Soviet Union showed that it (the current system) is still better than a State-run communist system.  Perhaps not for much longer.  End the Fed.  Smiley 

People from the Americas always refer to the USSR as THE model for communism, which was horrible in its implementation as a communist system. They also don't consider what happened before the red revolutions that led to the development of communist system. You see the same patterns coming back these days (just like the return of fascism in Europe). History is repeating itself.
1085  Bitcoin / Mining / Re: Are there any "communist" pools? on: May 08, 2011, 09:22:44 AM
This thread makes me lol though.  I love it when communists/socialists try to make things work in a real economic model.

Yeah, like the current economic model is perfect (US government having to take socialist measures to prevent their economy from collapsing).
Better than communism.  Wink

Better for Freeriders (read: bankers) Wink
1086  Bitcoin / Mining / Re: Are there any "communist" pools? on: May 08, 2011, 09:10:20 AM
This thread makes me lol though.  I love it when communists/socialists try to make things work in a real economic model.

Yeah, like the current economic model is perfect (US government having to take socialist measures to prevent their economy from collapsing).
1087  Economy / Marketplace / Re: The Million Bitcoin Homepage! on: May 08, 2011, 08:51:54 AM
This one is already around for some time...

http://bitpixel.bitcoin.nl/
1088  Bitcoin / Mining / Re: Are there any "communist" pools? on: May 08, 2011, 08:42:06 AM
Communism works if the participants do the work for the community, not for themselves. (think of worker bees in a hive)

What you could try is have mining set up, but instead of sharing the bitcoins under the participants, the bitcoins could go to a common goal (promoting bitcoin/bitcoin market stabilization/charity). Freeriders then don't have any incentives to join.
1089  Economy / Marketplace / Re: [BUYING] MyBitcoin.com on: May 08, 2011, 06:32:01 AM
I'd love for support as far as writing documentation goes or designing graphics if you have any experience with that.

Documentation: I wrote the wiki page for MyBitcoin SCI, mentioned above.
Graphics: There are people to find with better skills.
Coding: PHP and Python in both OO and functional programming.
Translation: Dutch
1090  Economy / Marketplace / Re: Ayariku Bazar on: May 07, 2011, 08:18:56 PM
If we can get 12 more orders by the end of this weekend, all in bitcoins, we will drop PayPal. As loudly as we can, informing customers that PP is no longer supported and guiding them to buy with BTC.

Does this mean bitcoin purchases are going well?
1091  Economy / Marketplace / Re: [BUYING] MyBitcoin.com on: May 07, 2011, 08:12:28 PM
btw, how long are you willing to wait for MyBitcoin before you start coding your own service? I might be able to help a bit with that.
1092  Economy / Marketplace / Re: Help needed finishing shopping cart integration on: May 07, 2011, 08:07:29 PM
Sorry, BioMike, I guess I'm a little dense; where does this code go?

It goes in its own page.

Example:
Code: ("shoppingcart.php")
<form action="mybitcoin.php" method="post>
...
input fields that you need in mybitcoin.php (or you get them from a checkout db)
...
<input type="submit" value="Checkout with MyBitcoin">
</form>

Code: ("mybitcoin.php")
Read the fields from shoppingcart.php or checkout database and parse them into $plaintext_querystring

$plaintext_querystring="amount=".$amount."&currency=".$currency."&payee_bcaddr=".$payee_bc_addr."&payee_name=".$payee_name."&note=".$note."&success_url=".$success_url."&cancel_url=".$cancel_url."&baggage=".$baggage;

$result=mbc_encryptformdata($plaintext_querystring);

$redirect_url="https://www.mybitcoin.com/sci/paypage.php?t=".$result['SCI Encrypted Form Data Token'];
header("Location: $redirect_url");
1093  Economy / Marketplace / Re: [BUYING] MyBitcoin.com on: May 07, 2011, 08:01:09 PM
I use it for Operation Fabulous. I haven't encountered any problems to date. Only some complaints that users have to do a captcha. I plan to integrate the MtGox merchants tools as well at some point.
1094  Economy / Marketplace / Re: [BUYING] MyBitcoin.com on: May 07, 2011, 07:17:02 PM
It's not so difficult to setup. The documentation is just lacking.

I wrote this in the past (still need to update it though (did some just ago)).
https://en.bitcoin.it/wiki/MyBitcoin_SCI

I even wrote a Python client for it.
1095  Economy / Marketplace / Re: Help needed finishing shopping cart integration on: May 07, 2011, 07:11:24 PM
After presenting the form to the user to fill in the amount (or other vars), send the data through the following code:

Code:
$plaintext_querystring="amount=".$amount."&currency=".$currency."&payee_bcaddr=".$payee_bc_addr."&payee_name=".$payee_name."&note=".$note."&success_url=".$success_url."&cancel_url=".$cancel_url."&baggage=".$baggage;

$result=mbc_encryptformdata($plaintext_querystring);

$redirect_url="https://www.mybitcoin.com/sci/paypage.php?t=".$result['SCI Encrypted Form Data Token'];
header("Location: $redirect_url");

You can also get most vars from your own database/cart and fill in the blanks from there.
1096  Bitcoin / Bitcoin Discussion / Re: Does Bitcoin have any active enemies? on: May 07, 2011, 05:43:15 PM
If yes,
1. Who/what are they?

Carrots

Quote
2. Can they  hurt  us?

Yeah. They can. The are Bitcoins arch-nemesis.

Quote
3. If so, in what way?

Ever got hit by one?

Quote
4. How can we protect ourselves?

Rabbits!

Quote
5. How can we make peace?

Never! We will conquer them!

Quote
6. Who and/or what can help us in doing so?

Teh rabbits!
1097  Bitcoin / Bitcoin Discussion / Re: the Free Software Foundation accepts bitcoin donations!??? on: May 06, 2011, 06:06:49 PM
Finally. Going to send some later today.
1098  Economy / Marketplace / Re: [LOAN] 1000 BTC needed & will pay with interest for mining rig on: May 05, 2011, 10:27:06 AM
How much will that generate per hour? I guess less?
1099  Economy / Marketplace / Re: [LOAN] 1000 BTC needed & will pay with interest for mining rig on: May 05, 2011, 05:47:50 AM
ssh / vnc / remote desktop... depending on the OS and what you want to achieve.
1100  Economy / Marketplace / Re: bitmunchies now delivers DiGiorno on: May 04, 2011, 10:04:01 PM
You might want to warn buyers for the dry ice. You can get nasty burn wounds from that when handling without gloves.
Pages: « 1 ... 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!