Bitcoin Forum
May 10, 2024, 02:42:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 »
1321  Bitcoin / Project Development / Re: Shares of GLBSE now listed ON GLBSE on: August 09, 2011, 05:28:26 AM
So...if I've got this right;
- Only people who have shares are a member.
- Only members can invite other members (as long as it's a majority vote).
- And, the requirements to be a member are unknown.
1322  Economy / Speculation / Re: UP or DOWN GAME!!! on: August 09, 2011, 05:18:24 AM
1323  Other / Beginners & Help / Re: Need some bitcoins fast on: August 09, 2011, 02:12:56 AM
sorry new to forums completely lol but i just need some bitcoin's and dont know how to get some.
Send via PayPal, wait 180 days and I'll send the coins.
1324  Other / Beginners & Help / Re: List of Bitcoin Scam Sites? on: August 09, 2011, 01:50:58 AM
List of scam sites with a rating + comment system?
1325  Other / Beginners & Help / Re: Value Derivation on: August 09, 2011, 01:32:02 AM
Who issues bitcoins and what are they worth in terms of USD?   What guarantees are associated with bitcoins?
1) The people set the price of BTC<>USD.
2) There re no guarantees.

How does one get them?  And how many merchants actually accept them?  Are they bits of data?  Is it data mining?  What is it?  Heard about it on radio... a caller called in.
https://en.bitcoin.it/wiki/Introduction
https://en.bitcoin.it/wiki/Trade
1326  Other / Beginners & Help / Re: Value Derivation on: August 09, 2011, 01:24:55 AM
Who issues bitcoins and what are they worth in terms of USD?   What guarantees are associated with bitcoins?
1) The people set the price of BTC<>USD.
2) There re no guarantees.
1327  Other / Beginners & Help / Re: Free Bitcoins on: August 09, 2011, 01:24:08 AM
Cool, do they really give free bitcoins?

through my site..

It has Linux support?
I dont know what linux is  Embarrassed
But you just sign up through my site
Just lost a little bit of respect for you. Sad
1328  Economy / Invites & Accounts / [WTB] Brazzers Account on: August 09, 2011, 12:47:24 AM
So, what's the best offer?
1329  Bitcoin / Bitcoin Discussion / Re: Free Unmetered Hosting to get the party started! on: August 09, 2011, 12:30:26 AM
Do you have a AUP or TOS?

No we do not, just don't be an idiot and host child pornography, or pornography. We will not defend any cases if your site ever contains that.
So, you don't mind if I scan your server and infect it?
Hypothetically speaking of course...

Why would you do that? I don't think I need a TOS since a lot of people shouldn't be stupid enough to do anything of that matter.
Well, if there are no rules against it...I don't see it as my problem.
Just trying to help you. >.>
1330  Bitcoin / Bitcoin Discussion / Re: Free Unmetered Hosting to get the party started! on: August 09, 2011, 12:22:15 AM
Do you have a AUP or TOS?

No we do not, just don't be an idiot and host child pornography, or pornography. We will not defend any cases if your site ever contains that.
So, you don't mind if I scan your server and infect it?
Hypothetically speaking of course...
1331  Bitcoin / Bitcoin Discussion / Re: Free Unmetered Hosting to get the party started! on: August 08, 2011, 11:52:46 PM
Do you have a AUP or TOS?
1332  Other / Beginners & Help / Re: Bitcoin WebHosting [New!] on: August 08, 2011, 11:51:55 PM
Well everything is unmetered/unlimited.
Well, which is it?
unmetered or unlimited?
1333  Bitcoin / Project Development / Re: 2 BTC bounty for a bit of code on: August 08, 2011, 11:28:31 PM
Well ok, you should test the code later: http://www.downforeveryoneorjustme.com/mtgox.com
Looks up to me.
1334  Bitcoin / Project Development / Re: 2 BTC bounty for a bit of code on: August 08, 2011, 11:15:44 PM
Code:
<?php
$a
=file_get_contents("https://mtgox.com/code/data/ticker.php");
$res=(json_decode($atrue));
$low $res['ticker']['low'];

$a=file_get_contents("http://bitcoincharts.com/t/weighted_prices.json");
$res=(json_decode($atrue));
$day $res['USD']['24h'];

echo 
min($low$day);
?>

Hmmm.... Does that code return a value to you? Maybe it's a problem with my server, but on my link it just hangs. Does it return a value for anyone else who clicks on it? http://spendbitcoins.com/jefftest/last-24hr.php
I modified it just a tiny bit, tested it on my server and it works.
Code:
<?php
$a
=file_get_contents("https://mtgox.com/code/data/ticker.php");
$res=json_decode($atrue);
$low $res['ticker']['low'];

$a=file_get_contents("http://bitcoincharts.com/t/weighted_prices.json");
$res=json_decode($atrue);
$day $res['USD']['24h'];

echo 
"\$low = ".$low."<br />";
echo 
"\$day = ".$day."<br />";
?>
For some reason wrapping json_decode() in parenthesis slowed it down a lot.
1335  Other / Beginners & Help / Re: my $82 paypal for 10 bitcoins on: August 08, 2011, 11:04:36 PM
There should be a rule purely against selling via PayPal. >.>
1336  Bitcoin / Project Development / Re: 2 BTC bounty for a bit of code on: August 08, 2011, 11:02:51 PM
Hmmm.... My code returns this:

http://spendbitcoins.com/last-24hr.php

While your code returns this:

http://spendbitcoins.com/jefftest/last-24hr.php

How do I get your code to just return a figure like mine does? Sorry for my ignorance. I'm not a programmer at all. Wink

Code:
<?php
$a
=file_get_contents("https://mtgox.com/code/data/ticker.php");
$res=(json_decode($atrue));
$low $res['ticker']['low'];

$a=file_get_contents("http://bitcoincharts.com/t/weighted_prices.json");
$res=(json_decode($atrue));
$day $res['USD']['24h'];

echo 
min($low$day);
?>
1337  Other / Beginners & Help / Re: Mybitcoin.com is accepting claims!!! on: August 08, 2011, 10:28:07 PM
So fast? When did you file your claim?
Around 8am CST.
1338  Other / Beginners & Help / Re: Mybitcoin.com is accepting claims!!! on: August 08, 2011, 10:15:00 PM
I've already got my coins back, so it's legit.
1339  Bitcoin / Bitcoin Discussion / Re: What Bitcoin stocks are good to buy? on: August 08, 2011, 10:13:51 PM
1340  Other / Beginners & Help / Re: Can't get bitcoinplus to generate on: August 08, 2011, 09:11:49 PM
BitcoinPlus was created to have 1k+ members mine for you and MAYBE generate a 1/1000th of a coin over a few days.
CPU power sucks. Tongue
Pages: « 1 ... 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!