Bitcoin Forum
June 25, 2024, 05:47:32 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 »
301  Bitcoin / Bitcoin Discussion / Re: Who Are Mt Gox! on: July 21, 2011, 11:16:19 PM
We are working on this, and the tibanne.com website is scheduled to be re-built from zero soon (the current one is just some template from templatemonster with some text we created one year and half ago).

In the meantime if you want to see us, we got interviewed a few times in the bitcoinshow Wink
302  Bitcoin / Bitcoin Discussion / Re: Dwolla E-mails on: July 19, 2011, 08:55:00 AM
I got it too
303  Economy / Trading Discussion / Re: MtGox and the Euro - is it resolved? on: July 19, 2011, 12:29:56 AM
The new bank account is opened Tuesday at 11:30, and we should have the IBAN by 13:00. As soon as we have it, it will be posted online.

All withdraws so far will be processed Tuesday evening, or Wednesday in worst case.

Uh... 11:30 and 13:00 where???

In this case, French time (GMT+0200 I think).
304  Economy / Trading Discussion / Re: Australian Dollars - What's the best way to trade them for BTC & Vice Versa. on: July 19, 2011, 12:29:31 AM
Thanks Mark. That's good news!

If I get a technocash account can I use that instead of my account number and BSB?


We have plans to allow direct deposits to other technocash accounts. In that case the transfer is instant (well, as soon as we receive it and confirm it to technocash) and can even happen during weekends.
305  Economy / Trading Discussion / Looking for Australians to test post deposits on: July 19, 2011, 12:11:00 AM
Hi,

We can accept postal cash deposit ($20~$2000 I think), so I'd need some people to test that and see if it works.

Contact me ( admin@mtgox.com ) so I can send you a barcode you'll have to print to go to the post (or not print, I don't know if you can key it manually). Anyway I need people who are in Australia to test this.
306  Economy / Trading Discussion / Re: MtGox and the Euro - is it resolved? on: July 19, 2011, 12:07:32 AM
The new bank account is opened Tuesday at 11:30, and we should have the IBAN by 13:00. As soon as we have it, it will be posted online.

All withdraws so far will be processed Tuesday evening, or Wednesday in worst case.
307  Economy / Trading Discussion / Re: REQ: mtgox Trading API Sample Code [PHP] on: July 18, 2011, 11:48:00 PM
You may want to read that:

https://en.bitcoin.it/wiki/MtGox/API#Authentication
308  Economy / Trading Discussion / Re: Australian Dollars - What's the best way to trade them for BTC & Vice Versa. on: July 18, 2011, 11:46:52 PM
How long are these supposed to take?

I've made a withdrawal on Monday the 11th and the MtGox USD came out of my account. I specified the ACCT number and BSB and I'm sure I entered these correctly. It's now Monday the 18th and I just checked my bank account at the ATM only ten minutes ago and its and its still not in there.
Have PM'd Mark but no reply as yet. I know it says it needs to be manually processed but i'd at least like an update on what's happened.

Has anyone tried withdrawing via this method? How long did it take?

It takes some time as we are waiting on Technocash to provide us with automated withdrawals.

In the meantime we process those manually, which takes slightly more time than what we'd want. All withdraws are tracked and will be eventually processed, we have waited a bit to see if we could spare ourselves the need to input manually each withdraw, but it looks like we'll have to.

All pending AU withdraws will be processed on our side today, which means Technocash will send them today or tomorrow, and you get your funds by Thursday.

As for people wondering why it costs us more than regular people in Australia to accept payments/send funds, you'll note we've been open with our bank in AU and explained exactly what bitcoins are. The resulting pricing is linked to the risk factor they evaluated.
309  Local / Discussions générales et utilisation du Bitcoin / Re: Un mec vient de déposer la marque Bitcoin on: July 17, 2011, 02:25:58 PM
Pour info Tibanne Co. Ltd. (basé au Japon) a commencé l'enregistrement en Europe et au Japon.

Le but est d'enregistrer la marque "Bitcoin" pour en faire une marque libre (les conditions diront que "n'importe qui peut utiliser la marque Bitcoin a condition que cela référence la monnaie virtuelle Bitcoin créée en 2009 par Satoshi Nakamoto").

Notre intérêt est simple, en tant que MtGox on veut qu'un maximum de monde accepte des bitcoins Wink
Je suis pas sur que légalement ca tienne, mais l'initiative est intéressante Smiley

Si un avocat bidon aux USA peut faire ça en prétendant "premier a faire un usage commercial", y'a pas de raison qu'on ne puisse pas non plus.

Sinon j'ai déjà eu une contestation pour mon dépôt de marque en Europe d'un allemand qui signifie qu'il a fait son dépot avant moi~ ça va être drôle!
310  Bitcoin / Bitcoin Discussion / Re: Mt.Gox scares people into selling on: July 17, 2011, 02:22:44 PM
Its a shame because that wouldn't have been necessary. If it would at least have been prominently announced beforehand, we could have prepared and probably mitigated the impact.

Would have been nice if we could have been informed more than 7 days in advance too.

The old bank closed the account friday morning as promised, and the new bank was decided by the authorities at the same time, however the new bank denied to give us a rendezvous to open the new bank account before tuesday.

New account will be open at 11:30 tuesday morning, and we'll put the new IBAN on the page a few hours later (don't know exactly how long the meeting will last). Once done we'll rush the dev of import API to make deposits available as soon as funds are in.
311  Economy / Trading Discussion / Re: Mt. Gox Announcement - Extension of Reduced Trade Fees on: July 16, 2011, 02:47:32 PM
It'd be nice if mtgox could send out my LR withdrawals in less than 72 hours. All you have to do is hit a button.

It makes me wonder if mtgox actually has 100% reserves of the money it is supposed to.

It takes time to convert funds from USD to LR, and LR is totally unbalanced (we get way more LR withdraws than deposits). This forces us to convert LR all the time, and also explains the 1% fee.
312  Bitcoin / Project Development / Re: [Pre Announcement] PHPCoin on: July 15, 2011, 12:01:40 AM
As password security is the subject of the moment, due that MtGox thing, here's my system's function for it:

Code:
<?php
       $salt 
md5(rand().$name.microtime());
       
$passh hash("ripemd160",$pass.$salt);
       
mysql_query("INSERT INTO users(user,pass,name,email) VALUES('$user','$passh','$name','$email')");
       
$myuid mysql_insert_id();
       
mysql_query("INSERT INTO salt(uid,salt) VALUES($myuid,'$salt')");
       
$success "You're now registered to this system";
?>


Your method is not good enough (not mentioning it seems you are not escaping properly variables when passing them to mysql).

I could do 50000 iterations of ripemd160 in 94.16ms without any optimization. I'd suggest you at least add some iterations to make bruteforcing harder.
313  Local / Discussions générales et utilisation du Bitcoin / Re: Un mec vient de déposer la marque Bitcoin on: July 14, 2011, 11:58:26 PM
Pour info Tibanne Co. Ltd. (basé au Japon) a commencé l'enregistrement en Europe et au Japon.

Le but est d'enregistrer la marque "Bitcoin" pour en faire une marque libre (les conditions diront que "n'importe qui peut utiliser la marque Bitcoin a condition que cela référence la monnaie virtuelle Bitcoin créée en 2009 par Satoshi Nakamoto").

Notre intérêt est simple, en tant que MtGox on veut qu'un maximum de monde accepte des bitcoins Wink
314  Economy / Trading Discussion / Re: Is MtGox being attacked again? on: July 14, 2011, 11:42:19 PM
Quote
[NOTICE] PROLEXIC TECHNOLOGIES NETWORK EVENT NOTIFICATION

As of 03:20 UTC July 14, 2011 Prolexic is currently experiencing attack traffic that was intermittently causing infrastructure instabilities in the SJC data center. Approved isolation counter measures have been implemented in order to eliminate any further fallout. A detailed executive incident analysis report will be released within 24 hours to all affected customers.

We apologize for any inconvenience. If you experience any further issues please contact us immediately.

Kindest regards,

Dan Goetz
Security Operations Center Manager
Prolexic Technologies
315  Economy / Marketplace / Re: Mt. Gox Announcement - Extension of Reduced Trade Fees on: July 14, 2011, 11:40:47 PM
i still cant get my account recovered =\

everytime i file a claim, it tells me to expect an email, but nothing ever shows up. i want a free yubikey =\

Hi,

Have you tried with a different email address?


Mark
316  Economy / Marketplace / Re: MtGox SEPA withdraw never arrived, No answers from Support on: July 13, 2011, 02:28:29 PM
For information we have just flushed all the pending withdraws, as today is the last day we can send anything through our bank in Europe (they accepted to lift the limits today for this reason).

All the pending withdraws are being executed by the bank as I write those lines, and will arrive by friday.

All the withdraws made from now will be processed by the new bank starting saturday or monday.
317  Economy / Trading Discussion / Re: MTgox API Poll Failing [Not Solved ... ?] on: July 13, 2011, 02:24:06 PM
Prolexic's system is based not on fixed polling delays or similar, but on a (supposedly) intelligent system that catches abusive users by analyzing server load and how an average request looks like.

I could try to ask them to unblock you but I'd need a bit more informations (actual query look, source ip, possibly a traceroute, etc)
318  Bitcoin / Bitcoin Discussion / Re: No European money into mtgox this week, slow your sales. on: July 12, 2011, 11:34:43 PM
Should be noted that:

- During the week we'll continue receiving transfers sent during the weekend
- It is now possible to deposit to our GBP account in UK (which also accept other currencies and will convert those)
319  Economy / Marketplace / Re: https for mtgox on: July 12, 2011, 11:28:44 PM
Could anyone here provide a screenshot ?
320  Economy / Trading Discussion / Re: MTgox API Poll Failing [Not Solved ... ?] on: July 12, 2011, 12:37:02 PM
Are you sure you're keeping the data in cache to avoid querying too much the API ?

For information our DDoS protection service (Prolexic) drops requests without user agent, and will block ips which present weird behaviour.

I'm currently not caching any data (my script is still just a few lines long, my php skills rusty, and I haven't even written the caching function yet).

Is it possible to whitelist my server for a while, at least until I get my script written?

Also, a rough idea on what rate limits should be set to so I don't aggravate your DDoS protection would be cool

I have no idea of the applied limits nor any way to whitelist anything. The blocking is handled by Prolexic (our DDoS protection provider) and I don't have direct control over their system.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!