Bitcoin Forum
May 27, 2024, 08:15:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 95 [96] 97 98 »
1901  Economy / Gambling / Re: SatoshiPoker.org - Lowest Rake - 10 BTC Jackpot on: May 25, 2013, 11:32:25 PM
Really great to see all the tourneys, thanks! Smiley

Please still consider this (I can see it's maybe not easy because there might be only "break after .. min" option right now, so perhaps only for future)

Right now there is a break in the freeroll from 12:05 for 2 minutes. While the GTD has started. Basically I have no time to go to go to toilet, get drinks, etc. Could the breaks always be at xx:55 and for 5 minutes?

Thanks, keep up the good work Smiley

Yeah, I have never seen a site that doesn't give 5 minutes (really more, since they wait until all tables are finished with the hand). I'm also used to the X:55 break times.
1902  Economy / Service Discussion / Re: Mt Gox laughable support answers on: May 25, 2013, 02:57:51 AM
I doubt BTC-E has better support :p

But I suggest you visit #mtgox on IRC with questions, I think you get better answers there Wink
1903  Other / Beginners & Help / Re: NEWB TIP!!!! (Earn Some Quick Money on Vircurex right now!!!) on: May 24, 2013, 07:43:53 AM
Quote
(soon it could be as high as .0004)
Yeh, but also:
Quote
(soon it could be as low as .00001)

Look at Chinacoin, was 0.00365 BTC now 0.00074 BTC :p alt coins can go fast both ways.
1904  Economy / Gambling / Re: SatoshiPoker.org - Lowest Rake - 10 BTC Jackpot on: May 24, 2013, 04:06:56 AM
Right now there is a break in the freeroll from 12:05 for 2 minutes. While the GTD has started. Basically I have no time to go to go to toilet, get drinks, etc. Could the breaks always be at xx:55 and for 5 minutes?

Thanks, keep up the good work Smiley
1905  Economy / Gambling / Re: 100 Satoshi Chip Giveway! - SatoshiPoker.org on: May 24, 2013, 03:21:48 AM
Damn.. I don't meet the criteria Smiley

But I guess it's ok cuz I won already pretty much with the freerolls and GTDs.. great value on this site guys!! Recommended Smiley just hope it will be more busy soon.
1906  Bitcoin / Bitcoin Technical Support / Re: Shit someone help PLEASE BTC-e account almost got hacked WTF on: May 23, 2013, 04:22:57 PM
Sounds very much like a virus/trojan to remotely control your computer (because of the cursor thing
- it's kinda same like TeamViewer.) So I do not think they have your password (edit: well actually they might have, but I mean that they even have much more than that since they can control your PC.) You should change your passwords. And run some virusscanners/malware checkers while not being connected to the internet (I assume it's a different PC than you are using now.) If you don't find anything I would personally still make backups and format/reinstall your PC.


You are kidding, right?

Disconnect. Backup data (carefully). Reinstall. Secure. Change all passwords everywhere (all different). Drink milk.



Running some virusscanners/malware checkers won't hurt. I would personally be interested in what virus it was so you can make sure you won't get it again. Other than that I basically said the same thing as you maybe I just didn't say it clear enough.
1907  Economy / Gambling / Re: Dabs Lotto Number 2. Up to 100% payout (read the fine print please) on: May 23, 2013, 10:04:49 AM
Sounds all great and fair. Only that 80% / 20% deal makes the first game have terrible odds (unless I as a player decide to play the next one too.) I think it's obvious, but small example: if I bet 0.5, someone else also 0.5 and besides that nobody else, then the maximum we can win from a 50% coinflip is 0.8. Perhaps you could make that more "natural" like 97% / 3% first game and every game 3% more to jackpot. If it's 80% / 20% in the end and people bet around the same amount every week then of course you don't really have this problem anymore. I can't be bothered to calculate it all exactly but I assume the things I say here are correct, if not please correct me hehe :p good luck anyways.. I will keep an eye on it and might join with some small money.
1908  Economy / Lending / Re: 1500 loan for 2100 loan payback on: May 23, 2013, 04:55:51 AM
I am not sure if we can sell that note for $2100.
1909  Other / Beginners & Help / Re: Paying .1 BTC for simple Javascript fix on: May 23, 2013, 04:24:16 AM
Yeh I forget there was an "else". The problem: first it checks for length, if it's only 15 characters it will show error, but then it will go to the next "if" and if it has correct characters it will go to the "else" and show the QR code even though it's less than 25 characters.


You could combine this:
Code:
if (text.length < 25) {
document.getElementById('qr').innerHTML = create_qrcode(error);
}

if(text.match(/[^123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]+/g)) {
document.getElementById('qr').innerHTML = create_qrcode(error);
}
to:
Code:
if (text.length < 25 || text.match(/[^123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]+/g)) {
document.getElementById('qr').innerHTML = create_qrcode(error);
}

This should work, you can test it also here: http://jsfiddle.net/J325A/ (you can modify the "text" to invalid address then run again.)

1910  Bitcoin / Bitcoin Technical Support / Re: First btc-e NOW MY BITTALK ACCOUNT IS HACKED on: May 22, 2013, 01:32:40 AM
No offense, but I am not sure what part of "change your passwords" you don't understand. And obviously you should not do that on the same PC.
1911  Other / Beginners & Help / Re: Paying .1 BTC for simple Javascript fix on: May 21, 2013, 09:31:56 AM
In qrconf.jf

Add the following:
Code:
if(text.match(/[^123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]+/g)) {
document.getElementById('qr').innerHTML = create_qrcode('Error!');
}
after:
Code:
replace(/^[\s\u3000]+|[\s\u3000]+$/g, '');
on a new line.

OR

I would personally prefer to just remove all the non bitcoin address characters from the input instead of showing an error. For that, replace:
Code:
replace(/^[\s\u3000]+|[\s\u3000]+$/g, '');
with:
Code:
replace(/[^123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]+/g, '');


Bitcoin address for tip is in signature Wink
1912  Bitcoin / Bitcoin Technical Support / Re: Shit someone help PLEASE BTC-e account almost got hacked WTF on: May 21, 2013, 07:58:27 AM
Then never mind about finding the virus etc yet. First change all your passwords Wink especially the ones saved in Google Chrome and important ones.
1913  Bitcoin / Bitcoin Technical Support / Re: Shit someone help PLEASE BTC-e account almost got hacked WTF on: May 21, 2013, 07:43:30 AM
Did you disconnect your infected PC already? That is the first thing you must do. Then check the password manager and change your passwords on another PC or phone for the "most important" sites first (eg the one where you keep money, e-mails, etc.)
1914  Bitcoin / Bitcoin Technical Support / Re: Shit someone help PLEASE BTC-e account almost got hacked WTF on: May 21, 2013, 07:31:41 AM
Sounds very much like a virus/trojan to remotely control your computer (because of the cursor thing
- it's kinda same like TeamViewer.) So I do not think they have your password (edit: well actually they might have, but I mean that they even have much more than that since they can control your PC.) You should change your passwords. And run some virusscanners/malware checkers while not being connected to the internet (I assume it's a different PC than you are using now.) If you don't find anything I would personally still make backups and format/reinstall your PC.
1915  Economy / Gambling / Re: SatoshiPoker.org - IMPORTANT UPDATE - Lowest Rake - 10 BTC Jackpot on: May 19, 2013, 06:32:01 AM
I'm still trying to figure out how to fund my account.

HTML5

FF
Might be related to:
The deposit/withdraw functionality is still being added on the HTML5 client. For now you can deposit with the main client (windows desktop), or wait for a freeroll. We are working on this and will have an update for this function ASAP.

Thanks for all your patience.
Wink
1916  Other / Beginners & Help / Re: PREPARE YOURSELVES BITCOIN-PIZZA-DAY IS COMING on: May 18, 2013, 05:36:14 PM
Quote
10,000... Thats quite a bit.. you could sell those on https://www.bitcoinmarket.com/ for $41USD right now..
Dammnnn Shocked 10k btc for 41$ is not bad.
1917  Economy / Gambling / Re: Casinobit - LIVE ROULETTE - No Registration - FREE BTC on: May 17, 2013, 09:36:17 AM
Interesting concept. Gave it a try. Lost unfortunately :p Tx id: 70cc4c9b2b3252ff31ac46eb0219ddc0e2a3a7572d0ae726d878258175de45b2
1918  Economy / Gambling / Re: SatoshiPoker.org - IMPORTANT UPDATE - Lowest Rake - 10 BTC Jackpot on: May 17, 2013, 04:57:23 AM
I sent 561 chips to within, can admin confirm the transfer please? Thanks and to within: gg
1919  Economy / Gambling / Re: SatoshiPoker.org - IMPORTANT UPDATE - Lowest Rake - 10 BTC Jackpot on: May 17, 2013, 02:49:48 AM
Few suggestions:


Besides the HU SNG we could try 6max s110 and s220.. maybe we can get 6 players for it if it's not too expensive Smiley even though I would prefer tourneys especially since register for SNG 6max might take long.



I find the R/A tourneys a bit weird sometimes. Starting chips: s1500, rebuy s1500 allowed at s100 or less. Rebuy 2x: available Huh. I can't remember experiencing this at stars or party. Most times you can just rebuy at starting chips or less (s1500) if I remember correct? The weird issue with this is that you must go allin with this to either double or get 100 or less. Because if you get 100 or less you can easily get 3000 chips and be chipleader.

Example: if you play good and manage to win up to s2500. Then nooby loses, rebuys 2x and has s3000. This seems unfair to me. So either rebuy 2x has to be disabled OR you can rebuy already at starting chips (so obviously a "good" player would rebuy at start of tourney.) The last option seems common to me (if I remember correctly I don't play R/A that often.)

Unless of course this is on purpose and you try to provoke a strange even more aggressive strategy :p



I would personally like some more normal 6max s500+50 BI tourneys. I also think people don't like 110 turbo R/A so much, even though $1 turbo R/A is popular structure on other poker clients.




And I like the idea of 10.000 nightly GTD.. just not sure when it is :p



edit: We just finished the tourney at 12:00 PM (for me in Asia) and the next is 08:00 PM.. 8 hours between the tourneys is just a lot, I hope there will be more tourneys soon :p even though it's probably night every where in USA/EU, still worth a try :p
1920  Economy / Services / Re: 0.1+ BTC for mtgox-api php code snipped (recent buys/sells) on: May 17, 2013, 01:38:29 AM
Not good?  Lips sealed Cheesy
Pages: « 1 ... 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 95 [96] 97 98 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!