Bitcoin Forum
April 26, 2024, 08:06:18 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 ... 142 »
241  Other / Off-topic / Re: 2013-02-14 Cargo Cult - Keiser report 406 - Warning no bitcoin on: February 15, 2013, 01:07:48 AM
here i thought Keiser made a report called "Warning, no bitcoin"
242  Alternate cryptocurrencies / Altcoin Discussion / Re: [Moved all My funds off BTC-E] BTC-e editing chat wow - on: February 15, 2013, 01:00:52 AM
I has been banned lol. They can't even get the english translation correct. haha

haha yeah, that 'has' should have a z in it
243  Other / Beginners & Help / Re: How to buy large volumes of Bitcoins anonymously? on: February 15, 2013, 12:57:03 AM
now this will seem off-topic because it's not about amazon gift cards...

but i was just going to say that 'localbitcoins' probably don't really have to be local if you're trading in huge amounts

i mean, if you had an opportunity to do a good $100,000 deal, it might be worth jumping on a plane and flying to the other side of the world for
244  Economy / Service Announcements / Re: [ANN] bitaddress.org Safe JavaScript Bitcoin address/private key on: February 14, 2013, 11:28:33 PM
edit: i realised this is actually working fine in regular Chrome, but the bug appears in incognito mode only.

I can't reproduce in chromium Version 24.0.1312.56 Ubuntu 12.10 (24.0.1312.56-0ubuntu0.12.10.3).

i can't reproduce it on any other machine i've tried either... this old WinXp pc from the 80's must be having it's own issues.
245  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin port of Bitaddress.org? on: February 14, 2013, 01:50:13 PM


damn, no litecoins found at that address Cheesy
246  Other / Off-topic / Re: Question for the php-heads... on: February 14, 2013, 12:56:04 PM
PHP can sometimes do weird things with variable types... try this and get back to us:

Code:
$rucoin->sendfrom('', $addy, (float) $amount);

Hmmm, I will have to give that a try sometime, was actually coming back to report that I got it working with:

Code:
$rucoin->sendfrom('', $addy, (double)$amount);

just as good
247  Other / Off-topic / Re: Question for the php-heads... on: February 14, 2013, 09:35:04 AM
Alright, I have this code:

Code:
<?php
require '../htdocs/config.php';
require 
'../util.php';

function 
update_req($reqid$status)
{
    
$query "
        UPDATE requests
        SET status='
$status'
        WHERE
            reqid='
$reqid'
            AND curr_type='RUC'
        "
;
    
do_query($query);
}

$query "
    SELECT
        requests.reqid AS reqid,
        uid,
        amount,
        addy
    FROM requests
    JOIN rucoin_requests
    ON requests.reqid=rucoin_requests.reqid
    WHERE
        req_type='WITHDR'
        AND amount > 0
        AND status='VERIFY'
        AND curr_type='RUC'
    "
;
$result do_query($query);
$rucoin connect_rucoin();
while (
$row mysql_fetch_assoc($result)) {
    
$reqid $row['reqid'];
    
$uid $row['uid'];
    
$amount $row['amount'];
    
$addy $row['addy'];

    if  (
$rucoin->getbalance('') >= 0)
    {
        
update_req($reqid'PROCES');
        
$rucoin->sendfrom(''$addy$amount);
        
update_req($reqid'FINAL');
    }
}
?>

And it is working perfectly all the way up to:

Code:
$rucoin->sendfrom('', $addy, $amount);

I believe I have a syntax error being fed to the jsonRPCClient as I know the $addy and $amount are both returning correct values, I have tested issuing the command by hand to rucoind so I know it supports the "sendfrom" function and is accessible yet I am receiving an HTTP 500 error from rucoind.

I am using the "$rucoin = connect_rucoin" function in various places to send calls to rucoind and retrieve information, all without error, but this last thing just does not seem to want to work.

Anyone have any ideas...?

PHP can sometimes do weird things with variable types... try this and get back to us:

Code:
$rucoin->sendfrom('', $addy, (float) $amount);
248  Economy / Gambling / Re: Should re-launched BTC Matrix with lower price? on: February 14, 2013, 05:55:25 AM
Hi Bitcoiners and BTC Matrix members,

It's apparently for members that BTC Matrix is not really experiencing activity now days, so I think perhaps 1 BTC entry is too expensive that some people think?
-Mal

Its a form of a ponzi scheme. No one is really interested in that.

haha are you new here?
249  Bitcoin / Hardware / Re: A letter to Advanced Micro Device on: February 14, 2013, 05:54:35 AM
Dear 0.01% of customer base:

No
250  Bitcoin / Bitcoin Technical Support / Re: How does one add an image to a post? on: February 14, 2013, 05:41:53 AM
Click the QUOTE button on my post and look at it's source code.



the height and width parameters are optional
251  Economy / Trading Discussion / Re: BitInstant PHP API Example on: February 14, 2013, 05:37:27 AM
so the conclusion is that you needed to be posting a mandatory field, d.o.b., yet the error message was too vague.
252  Economy / Trading Discussion / Re: BitInstant PHP API Example on: February 14, 2013, 05:26:20 AM
Code:
$data = array(
      "pay_method" => "zipzap",
      "amount" => 80.00,
      "dest_exchange" => "btc",
      "dest_account" => "1FqWCdCdFeok2ifsfYbcFxwiC8pE7h9xhC",
      "notify_email" => "test@example.com",
      "fName" => "John",
      "lName" => "Doe"
);
$data_string = json_encode($data);
253  Economy / Trading Discussion / Re: BitInstant PHP API Example on: February 14, 2013, 05:22:06 AM
could you try letting PHP generate the json instead?

and if so, output the $data_string so that we can see what the difference are (if any).
254  Economy / Trading Discussion / Re: BitInstant PHP API Example on: February 14, 2013, 04:49:51 AM
what do you mean by "post body" ?

how are you encoding it? are you putting that JSON in a string var?

are you using curl?
255  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin port of Bitaddress.org? on: February 14, 2013, 04:45:56 AM
Updated! http://liteaddress.org/
It looks very cool.

wow very nice!

p.s. that time i got to 24 clicks before QR codes went solid black... no idea WTF is going on there

256  Other / Off-topic / Re: Question for the php-heads... on: February 14, 2013, 04:39:54 AM
not that netbeans is perfect, but you can use xdebug in that no problem, you don't have to use vim
257  Economy / Gambling / Re: Idea for a gambling game - Satoshifactor Game on: February 14, 2013, 03:47:59 AM
Let me try to explain it all better:

Anouncing a domain that redirects to a website with this game behind a tor onion but instead of the .onion in the link, using the link with .tor2web.org instead of .onion, so that it can be accessed in any browser without tor.

Could be a domain like: Satoshifactor.com , I would be advertising the domain, not the website that it would redirect to, and so wouldn't need to be liable for the site.

The game is very simple and the site would only need to tell instructions and the bitcoin address of the game:

Every participant sends bitcoins to the bitcoin address of that game, and participations are made public only at the end of each game, that runs every time 5 bets are made.
The number of satoshis that you send is multiplied by the number of satoshis you are left with at, at that address.
If the result from that multiplication is the greater one you win all money that was put on that game and the Casino gets only 2-3% of it.
Even the Casino could play, although it would have the slight advantage of knowing in advance the bets at stake but still there would be no guarantees that it would win as all participants would be listed after the draw, and the five bets of each game are placed with too fast to give much time for the Casino to decide, even with automated bots. And maybe it could provide way of keeping bets secret even to himself so that he wouldn't have such advantages of knowing bets in advance.

so if i have an address that contains 1 trillion satoshis (10,000 BTC) and send 4 satoshis, my score is 4 trillion, so in order for someone to beat me, they need to have a higher score?

people who own 100 btc or less would have almost no chance

how could this remain a secret? the site would have to use a different deposit address for each person, otherwise people could look up the game in the blockchain before sending their bet.
258  Other / Off-topic / Re: Question for the php-heads... on: February 14, 2013, 03:41:28 AM
Aah, the joys of PHP and echo'ing SQL statements carefully crafted by hand Cheesy

yeah these days i'm more likely to be using codeigniter's $db->last_query() function after having it constructed for me Cheesy
259  Economy / Services / Re: Looking for people to store some of the forum's money on: February 14, 2013, 03:33:03 AM
people such as pirateat40 also donated to the forum

do you want theymos to send 50 BTC to him and ask him to pledge those coins for forum use 'when needed' ?
260  Economy / Speculation / Re: Manipulation to induce panic. on: February 14, 2013, 12:53:48 AM
I can't see any other reason for the selloffs. Anyone wanting to offload coins would not do it like this. It's like wasting money, as it's better to gradually offload it at higher prices than just selling down like this.

i see this over and over again but disagree

doing it slowly increases the very real risk that someone else with a similar amount of coins gets in and dumps before you do. it's a game of chicken.
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 ... 142 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!