Bitcoin Forum
June 16, 2024, 06:00:35 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 ... 193 »
2741  Economy / Service Discussion / Re: Where to host a bitcoind server? on: February 25, 2013, 12:31:07 AM
If someone's just looking for a place to host it, see my thread here: https://bitcointalk.org/index.php?topic=146588.0

Please don't host it on some random dude's server, who admits he has no bitcoins, and has no rep, this is recipe for disaster.

I would recommend cold storage solution, only way to keep bitcoins safe.

Normally I would agree with you, but I couldn't do anything with an encrypted wallet anyway. Besides, how do you earn rep if not someone trusting you without it and you coming through for them?

You could just use your logs and get the password from him or sniff all incoming traffic. It takes time to earn rep, being around, helping and using the forums is how you build rep, just like a credit card, over time we will see your a good guy.
2742  Economy / Service Discussion / Re: Where to host a bitcoind server? on: February 24, 2013, 11:31:37 PM
If someone's just looking for a place to host it, see my thread here: https://bitcointalk.org/index.php?topic=146588.0

Please don't host it on some random dude's server, who admits he has no bitcoins, and has no rep, this is recipe for disaster.

I would recommend cold storage solution, only way to keep bitcoins safe.
2743  Economy / Services / Re: PHP Programmer needed for important project on: February 24, 2013, 09:05:22 PM
• This is for a PHP person who understands how passive income works. If you are the "free spirit" type, it helps as well.

I know how a passive income works, and I would like more detail but can we talk here in this open forum so everyone can see what the job is?


Why do you want to do that? Why is it important to you for everyone else to see my plans? It is for this.

I am interested in your answers.

Cause you just said it is basically a wordpressish plugin kinda project a little more detail in the open is better, and you probably interested me. Remember we are the programmers, you have to get us interested in your project, so we can do a quality job. Plus if it is for a CMS or something that needs a plugin, more details about that will get you someone that probably worked with that system.
2744  Bitcoin / Development & Technical Discussion / Re: Create and send transactions in PHP on: February 24, 2013, 06:52:18 PM
I am pretty sure this isn't possible, just cause at some point you need to sign the inputs to prove they are owned by you, and that would require a wallet with the able to sign a raw tx.
2745  Economy / Services / Re: PHP Programmer needed for important project on: February 24, 2013, 06:44:48 PM
• This is for a PHP person who understands how passive income works. If you are the "free spirit" type, it helps as well.

I know how a passive income works, and I would like more detail but can we talk here in this open forum so everyone can see what the job is?
2746  Economy / Lending / Re: Bitcoin-Financial.com on: February 24, 2013, 06:24:13 PM
LMAO nice wordpress theme LOL Also worst image quality ever!

Off topic

Quote
My Troll Club  MPOE-PR, Gweedo, and Daveout

Kinda honored to between these two

Its not word-press figured you would know that since you are a programmer and all.

well it looks like a wordpress theme, but are you going to setup one of these things in every company until you find the dumb people to use it? Or you going to listen us the smart people and move on and try something new?
2747  Bitcoin / Bitcoin Discussion / Re: Most Expensive Thing You Bought With Bitcoin? on: February 24, 2013, 09:46:16 AM
I guess some people are here to show off what they use to compensate for other things. LMAO

I rarely use bitcoins as an actual way to buy materialistic things, I have brought gift cards and codes for things ~1btc. But my largest purchase was my dedicated box.
2748  Bitcoin / Development & Technical Discussion / Re: formatting listtransactions bitcoind PHP on: February 24, 2013, 07:58:37 AM
Do this
Code:
$bitcoin->walletpassphrase($password, 60)

then after the function

Code:
$bitcoin->walletlock();
2749  Bitcoin / Development & Technical Discussion / Re: formatting listtransactions bitcoind PHP on: February 24, 2013, 07:52:42 AM
It can't connect to your bitcoind, or your username and password isn't correct.
2750  Economy / Lending / Re: Bitcoin-Financial.com on: February 24, 2013, 07:47:28 AM
LMAO nice wordpress theme LOL Also worst image quality ever!

Off topic

Quote
My Troll Club  MPOE-PR, Gweedo, and Daveout

Kinda honored to between these two
2751  Bitcoin / Development & Technical Discussion / Re: formatting listtransactions bitcoind PHP on: February 24, 2013, 06:55:23 AM
Then check where that post variable is coming from and make sure you have the correct input name in where the post name is coming from.
2752  Bitcoin / Development & Technical Discussion / Re: formatting listtransactions bitcoind PHP on: February 24, 2013, 06:10:16 AM
so if i was to want to send coins to an address i would use code like this?

Code:
<?php


  
require_once 'jsonRPCClient.php';
    
$bitcoin = new jsonRPCClient('http://xxxx:xxxx@10.0.0.2:8332/');
  
print_r($bitcoin->walletpassphrase(password3));

?>

<?php


  
require_once 'jsonRPCClient.php';
    
$bitcoin = new jsonRPCClient('http://xxx:xxx@XXXXXX:8332/');
  
print_r($bitcoin->settxfee(0.0005));

?>

<?php
$address 
$_POST['account'];
$to $_POST['toaddress'];
$amount $_POST['amount'];


  require_once 
'jsonRPCClient.php';
   
$bitcoin = new jsonRPCClient('http://xxxx:xxxx@xxxx:8332/');
  
print_r($bitcoin->sendfrom($address$to$amount1commentcomment));

?>

I have a feeling i have this all wrong  Huh  Huh

Code:
<?php
$address 
$_POST['account'];
$to $_POST['toaddress'];
$amount floatval($_POST['amount']);


  require_once 
'jsonRPCClient.php';
   
$bitcoin = new jsonRPCClient('http://xxxx:xxxx@xxxx:8332/');
  
print_r($bitcoin->sendfrom($address$to$amount1commentcomment));

?>

try that it should work now
2753  Other / Beginners & Help / Re: How would you invest $1 million into Bitcoin? on: February 24, 2013, 05:59:03 AM
I would slowly buy bitcoins cause if you do that, then your capital will rise over time.
2754  Bitcoin / Development & Technical Discussion / Re: formatting listtransactions bitcoind PHP on: February 24, 2013, 05:50:04 AM
no that looks right
2755  Other / Beginners & Help / Re: Starting a Bitcoin Bank. on: February 24, 2013, 03:50:40 AM
Lol I guarantee it wont be hacked. You can choose if you want your wallet stored offline or online. Offline would be more secure and the fees would have to be higher.(Better for higher btc balances) Or Online for Low btc balances

You can't guarantee that. Look at how many times mt gox was hacked before they got it together, and your one guy, they have a team.
2756  Other / Beginners & Help / Re: Block size limit question on: February 24, 2013, 03:49:50 AM
Fork the clients, increase the limit, and get 51% of miners to use it.
2757  Other / Beginners & Help / Re: Starting a Bitcoin Bank. on: February 24, 2013, 03:37:47 AM
This is a horrible idea, and will just paint a big target on your site. Look at Mt Gox, they were hacked so much.
2758  Other / Beginners & Help / Re: Bitcoin + Development Best Practices on: February 24, 2013, 02:47:06 AM
Yea a VMDK would work better, qcow2 is kinda hard to get it working without converting it. I just try to use it in virtualbox on a mac OSX 10.8 and I couldn't get it to boot.
2759  Alternate cryptocurrencies / Altcoin Discussion / Re: ripple: let's test it! on: February 23, 2013, 11:56:30 PM
Hah, molecular's gateway is taking off. There's a few bids for BTC molecular/XRP...

heh, indeed.


How does one become a gateway?

You need to setup a rippled but the source isn't release the last time I checked so right now you can't
2760  Other / Beginners & Help / Re: Bitcoin + Development Best Practices on: February 23, 2013, 11:30:45 PM
Not so much a hosting system a development image. I'll publish and thow up a link.

If your developing a hosting system to allow them to use your bitcoind, then I would for sure have your bitcoind behind a script that does a lot of the heavy lifting and more security checks.

ohh a server image, ok yea throw it up I would take a look at it.
Pages: « 1 ... 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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 ... 193 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!