Bitcoin Forum
May 03, 2024, 04:24:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 »
81  Economy / Gambling / Re: BitCat.ch - automated bitcoin game on: July 04, 2011, 07:18:55 PM
It's up but it's clearly not working correctly. I don't suggest going in now.

Bummer.

I'm sure it'll get fixed. Game seems to have a good rep.
82  Economy / Gambling / Re: BitCat.ch - automated bitcoin game on: July 04, 2011, 06:50:30 PM
Sended btc back to Kais, MtRev, drrussellshane, and geek-trader


Going to fix bugs  Undecided



Actually, I think you forgot about me. =[

Now that the site is back up, I'd check to see if your bets are on the list. Mine showed up there.

Ah well, might as well play out the hand.
83  Economy / Gambling / Re: BitCat.ch - automated bitcoin game on: July 04, 2011, 07:07:23 AM
Sended btc back to Kais, MtRev, drrussellshane, and geek-trader


Going to fix bugs  Undecided



Sent PM re: bet around time of crash.
84  Economy / Trading Discussion / Re: New Arbitrage Strategy on: July 03, 2011, 09:41:01 PM
Thanks to trade fees, and no fee trading on MTgox, margins are pretty much already gone.
85  Economy / Economics / Re: [Bitcoin Sun] The economic impact of the Mt. Gox crisis on: July 03, 2011, 02:45:07 AM
"bitcoin's goods and services economy"

lol -- such a thing never existed in the first place. All facade; a few small deals as demonstration at best. The volume of actual trading was never anywhere near what would be required to sustain current prices.

I personally believe that the Mt. Gox hack only altered price by a little; we're still facing the chaos from the jump-to-30-then-drop-to-10 bubble. That was just stupid and most likely scared newcomers more than the downtime. The whole speculation game just looks much more unstable ever since that happened.

Sure, the hacks play a role. But that article is trying to blame a bit too much on Mt. Gox.

I think your cynicism blocks your understanding of the issue - if there was a reasonable way to spend BTC on things people valued (like groceries, gas or entertainment), they wouldn't be so eager to cash out.

Let them trade and keep the market active while the bitcoin economy gets its act together on the commerce side. It's only a matter of time, really.
86  Bitcoin / Bitcoin Technical Support / Re: How do I speed up confirmation? on: June 29, 2011, 07:25:27 AM
To revive an old thread - is there any data or visualizations that clock relationship between transaction fee size and confirmation rate?
87  Economy / Services / Re: [WTB] Help with Paypal's Currency API [2 BTC?] on: June 29, 2011, 06:29:31 AM
@nhodges: I should probably move this discussion (at this point) to the tech boards, but did you try running that code? I got it up and running this morning, but the results it feeds out are wildly different from what they should be. Like, inconsistently off by around 10 or 15%.

Hoping to not have to spend a whole lot of time on this, but I may hafta.
88  Economy / Services / Re: [WTB] Help with Paypal's Currency API [2 BTC?] on: June 28, 2011, 03:28:18 AM
Damn that was quick. Shoulda remembered SO. How much you want for your help? Smiley
89  Economy / Services / [WTB] Help with Paypal's Currency API [2 BTC?] on: June 28, 2011, 03:21:21 AM
I'm looking for help delving into Paypal's currency converter API. I've written code in PHP / Jscript to do some simple conversions of currency for a spreadsheet I designed in Google to help manage my BTC finances, but it was fairly easy to achieve thanks to Google's simple APIs.

Paypal's APIs are significantly more convoluted. Witness the documentation you have to wade through to get the rates Paypal use to convert currency.

Here's the documentation for the currency converter API:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_APConvertCurrency

Here's the documentation for the parent API, the Adaptive Payments API:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_APIntro

I could figure it out, if I didn't have a day job and a need for sleep, and I'd gladly rip off some GitHub code to do this, if there were any to be had.

I can put up a couple BTC for the time of whomever can meet with me on Skype and help explain it. If it adds incentive for anyone, I'll post the source here on the forum for group consumption.

Ideally, the output should be as easy to manage (in JSON format) as the output of the Google currency converter API is.
90  Economy / Service Discussion / Re: Google Apps and MTGox Trade Data on: June 27, 2011, 07:19:50 AM
Quick update: I lied - I didn't go to sleep, solved it using your useragent CURL idea, and used my own server as Google's data source.  I'll update the thread tomorrow with the breakdown and solution in case anyone else tries to do this.

Thanks a ton.
91  Economy / Service Discussion / Re: Google Apps and MTGox Trade Data on: June 27, 2011, 07:13:22 AM
EDIT: I'm not sure what you're trying to do but you might want to check out this thread: http://forum.bitcoin.org/index.php?topic=22886

It's Google's App Scripting language - it's used to do fancy stuff to just about everything on their platform. I was specifically using it to import live JSON data into a spreadsheet.
92  Economy / Service Discussion / Re: Google Apps and MTGox Trade Data on: June 27, 2011, 07:05:56 AM
That's a bit annoying - about to head off to bed.  Google Apps (from what I'm reading in the forums) doesn't allow you to set the USERAGENT, so I'll probably have to load a script up onto my server to mirror the MTGOX feed, and then try to load that in as a data source to Google Apps.

If I have time to do this tomorrow, I'll update the thread as to whether it works. I was having issues getting Curl to grab and mirror the data when using MTgox as a direct source, or using this as a source: http://btc.jalder.com/mtgox.php (which, theoretically, wouldn't be subject to the USERAGENT limitation).

Incidentally, I also had problems getting Google to not time out on the Jalder.com source as well. The only conclusion that I can reach is that Google hates MTgox.

That this is the only conclusion I can reach is a sure-fire sign I need some sleep. I'll attack it again in the morning.

Thanks for the pointers.

(incidentally, this is the simple Curl script I was using:

<?php
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    //curl_setopt($ch, CURLOPT_URL, "http://btc.jalder.com/mtgox.php");
    curl_setopt($ch, CURLOPT_URL, "http://mtgox.com/code/data/ticker.php");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $output = curl_exec($ch);
    curl_close($ch);
    echo $output;
?>


What you're saying is to simply add:

curl_setopt($ch, CURLOPT_USERAGENT, "php bot");

And I should be copacetic?)
93  Economy / Service Discussion / Re: Google Apps and MTGox Trade Data on: June 27, 2011, 05:54:16 AM
As a follow up - I went ahead and wrote functions for all the trade APIs I could find out there, and mtGox is the only one still not resolving. Did a bit more research, found some folks who said that the best way to retrieve data was thru the WS methods (which is quite a bit more complex than I wanted to make for a simple spreadsheet).

Any help is appreciated.
94  Economy / Service Discussion / Google Apps and MTGox Trade Data [resolved] on: June 27, 2011, 05:16:53 AM
Update: Wasn't able to pull in mtgox trade data into Google App Scripts (so that it could be manipulated as live data in Google Spreadsheets), so I wound up making a mirror script on my personal domain. I had to use the Curl option to set the user agent (something you can't control, to the best of my knowledge, within Google). That, inelegantly, solved my problem.

tl;dr: Google App Scripting can't grab mtgox live trade data without going through an intermediary script. Solution is in this thread.


I'm trying to write a simple script to pull in the latest MTgox Trade Data into a spreadsheet.

Here's what my function looks like:

function mtGoxTradeData() {
  var jsondata = UrlFetchApp.fetch("https://mtgox.com/code/data/ticker.php");
  var object = Utilities.jsonParse(jsondata.getContentText());
  return object.ticker.last;
  
}


For some reason - retrieval of MTGox's API data always times out. When I do the same on ExchangeBitCoins, it gets the data flawlessly.

function exchangeBitCoinsTradeData() {
  var jsondata = UrlFetchApp.fetch("https://www.exchangebitcoins.com/data/ticker");
  var object = Utilities.jsonParse(jsondata.getContentText());
  return object.ticker.last;
  
}


Not sure what the deal is. Anyone experienced with Google's app platform?
95  Economy / Currency exchange / Re: $1000 for 76 BTC on: June 26, 2011, 04:24:23 PM
Looks fishy to me....

I don't know what to say, chief. It's not a fishy deal?

At any rate, Google me. I put out my home phone number and my current location via Google Latitude on my personal blog, so it's not hard to track me down.
96  Economy / Currency exchange / Re: Bitomat in English (greasemonkey) on: June 26, 2011, 04:17:28 PM
Awesome!

Now someone just needs to make a greasemonkey script that will automatically convert all the denominations on foreign markets to the currency you want to look at them in.
97  Economy / Marketplace / Re: STOP MAKING THE SAME GAMES OVER AND OVER!!!!! on: June 25, 2011, 10:55:56 PM
I gotta be honest - I don't mind there being a variety of games to play. I understand why people get annoyed at the spam (and continue to second the idea of putting them all into a separate sub-forum).

Here's why the games are a good idea to have around, even if they are considered a "scam" by some users.

* There aren't a lot of things to spend BTC on right now. It's an easy, low-risk way to get to know the system and the quirks of sending and recieving BTC.
* These games are much less rigged than anything you find in your typical casino.
* Gaming for money is addictive, and it's also something with mainstream appeal. You want to spread BTC to the masses? Have accessible games with a high chance of winning, and you'll educate more people quicker than anything.

There are downsides - these are just my observations as someone who enjoys playing the odds while I'm at work (the way I see it, most of my coworkers are playing farmville - at least I have a chance at getting a couple bucks back - :-) ).
98  Economy / Currency exchange / $1000 for 76 BTC [closed] on: June 25, 2011, 10:18:59 PM
Looking to spend $1000 on 76 BTC.

* Offer is good through the weekend (US Central Time).
* I'm American, so the quickest way for the transfer to go thru is Paypal.
* If I were doing it on a weekday, I'd consider using a wire transfer, but I'm pretty sure my local bank can't support that on a weekend.
* I can provide identity verification of your choice to hedge against chargeback risk (I'm a moderately well known tech pundit, so it'd be pretty easy to track me down, anyway).

It's below market rates, I know, but most of the markets up don't have the depth to get that volume at a reasonable rate.

Contact me via PM. I'll mark the title [closed] if I make a deal.

Edit: Alternatively, if you're in Dallas, I can probably do an in person exchange.
99  Economy / Trading Discussion / Re: My Mt. Gox account recovery request has been accepted on: June 24, 2011, 06:57:15 AM
Got the notice that my claim went thru, too. Looks like tomorrow's the big day.
100  Economy / Marketplace / Re: The Great 1.1X Bitcoin Rush-- New round at 5:15 EST! on: June 22, 2011, 10:06:29 PM
Got paid out and transaction confirmed in the first round in less than ten minutes. Throwing in for another round before I knock off for the night. Go for it! Almost nothing to lose. Smiley
Pages: « 1 2 3 4 [5] 6 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!