Bitcoin Forum
May 24, 2024, 04:40:25 AM *
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 64 65 66 67 68 69 70 71 72 73 »
741  Bitcoin / Project Development / Re: CSS help with micro-templating... on: June 01, 2011, 12:07:06 PM
With all the molecules and atoms you made me a bit curios. What is this website about?

It was just an example.

I have a dice game coming up. Each dice consists of a shadow plus a face, and each dice is in a set of 6, and there are 2 sets.

So I thought there may have been a more hierarchal way of arranging them in the page, but since I'm no CSS guru I've ended up just hard-coding pixel locations with the 'position:absolute' feature.

I'm much more at home doing the graphics in Photoshop than I am cutting it up to HTML afterwards, but the guy I usually hire to do that is busy on something else at the moment, so I'm slowly doing it myself Smiley
742  Bitcoin / Project Development / Re: Free Graphics on: June 01, 2011, 11:57:13 AM
I like how it's got a cartoon-feel. Would go well in an animation.

Edit: A good excuse to finally upload something to this domain: http://bitcoinclipart.com/  ...will add more there whenever I get any spare time (never).

743  Bitcoin / Project Development / Re: CSS help with micro-templating... on: June 01, 2011, 11:47:50 AM
What you want to achieve has nothing to do with CSS. You can do it with Javascript.

Okay no problem. I wasn't sure.

I've already built the site now anyway with a bit of copy+paste Smiley

Will hopefully have the new site ready in a day or so.
744  Other / Obsolete (buying) / Re: I have almost $10,000 worth of bitcoins to sell, at 10%+ discount to Mt Gox on: June 01, 2011, 10:02:58 AM
I advise caution for any newbies reading the above offer. Make very sure it's valid before sending any money.
745  Economy / Marketplace / Re: Bitcoin Double - Betting game with faster payouts. on: June 01, 2011, 06:30:13 AM
I just checked its all good thanks bro!
I told you Im not a lair so I will keep shooting straight I want a great rep here thanks!



No problem.

By the way, I'm almost finished work on a new site involving rolling 6 dice... will hopefully be connected to BitcoinBalance soon Smiley
Will also have md5 check with (1,2,3,4,5,6,xxxxxxxxxxxx) for example to show the dice.
746  Economy / Marketplace / Re: Bitcoin Double - Betting game with faster payouts. on: June 01, 2011, 06:23:20 AM
I dont really care I sent the btc I played I won and I lost almost everything i won just trying to withdraw from your site if your sql keeps record of all transactions with drawn you would see I started a withdraw for 4.25 to my wallet and this would have left me 2-3 btc to play with so Im not stressed I got most my invested money back just shitty your site dont record all transactions like bitcoin does. might look  into it. other wise fun game.

I can see the 4.25 DID go to you.

Please check again and come back and tell everyone that in fact my site did send your 4.25... I guess that's why your balance was then showing lower than you expected.

Edit: You can see it here as it hasn't made it into a block yet: http://bitcoincharts.com/bitcoin/
747  Economy / Marketplace / Re: Bitcoin Double - Betting game with faster payouts. on: June 01, 2011, 06:18:22 AM
So player beware site crashes if you pull out funds and you dont get to keep what you win.

Complete B.S.

Site crashes whenever 'bitcoind' crashes it's true, this is rare and affects many other bitcoin-using websites, not just mine.

You are entitled to withdraw everything in your account as many others have done before you.
748  Economy / Marketplace / Re: Bitcoin Double - Betting game with faster payouts. on: June 01, 2011, 06:14:54 AM
So now it only shows btc3.15 and I had btc 7.43 whats up with it?

I had won and had a total of 7.43 and I started a with draw of 4.25 but your website crashed or something so I never got my transfer of the 4.25 back to my wallet and i was going to play with the rest that i won.
but thats not showing up in transactions for my wallet or your site so I guess its a loss.


Where on earth did you see 7.43? I'd really like to know.

Your address shows on block explorer as that you sent a total of 3.5 BTC to my server, and then the SUM of all your wins/losses adds up to -0.35 BTC:

SELECT sum(amount) FROM `transactions` WHERE user_id='39';

sum(amount)
-0.35000000

Every single play/win is recorded in mysql database, would you like me to list them all here with the time and date?

749  Economy / Marketplace / Re: Bitcoin Double - Betting game with faster payouts. on: June 01, 2011, 06:05:43 AM
what kind of crap is that

It's called 'bitcoind' and I agree it's utter shit... I'm restarting it now; Please try your withdrawal again in 5 minutes.

Edit: It's restarted now and I see your balance is 3.15... where did you pull the figure of 7.43 from?
750  Bitcoin / Project Development / Re: CSS help with micro-templating... on: June 01, 2011, 05:39:19 AM
Im assuming you can do some form of Targeting when wanting to refer to a set of rules that you created

Guh?

I can't do much. I just want to define an atom has having a certain look (css, html, images, whatever) and then be able to place that many times in the html without specifically copying and pasting all of the HTML associated with that small block.

Does CSS have a system of sub-classes and sub-sub-classes?

This is how I envisage things:

Code:
.atom {
  width:1px;
  height:1px;
  background-color:red;
}

.molecule {
   atom
   atom
   atom
}

.goo {
   molecule
   molecule
   ...
   molecule
   molecule
}

<div class='goo'>
</div>
751  Bitcoin / Project Development / CSS help with micro-templating... on: June 01, 2011, 05:28:07 AM
Hi,

I don't even know if this is possible but it seems like it should be...

I'd like to build a 'building block' of html which will then be reused in multiple places in my page.

So let's say i have the following which I'd like to class as 'atom':

Code:
.atom {
   width:1px;
   height:1px;
   background-color:red;
}

Then have another class called a 'molecule'... Is it possible to define each molecule as containing exactly 3 atoms, without specifically hard-coding 3 atoms into every molecule div?

Then later what if I want to have:

<div class='goo'>
</div>

...which automatically displays 100 molecules.


So then after my CSS is set up, the HTML to display 300 atoms would simply be:

Code:
<html>
<body>
<div class='goo'>
</div>
</body>
</html>

Is that possible? How to do it?

Thanks Cheesy
752  Other / Obsolete (buying) / Re: 26 BTC for sale will take PAYPAL(with conditions) or Dwolla Investment on: June 01, 2011, 04:53:55 AM
I'll give you $8 per coin and you send first Grin
753  Bitcoin / Bitcoin Discussion / Re: MIA Bitcoin? (Screen Shots) on: June 01, 2011, 12:46:30 AM
I blocked out the amounts I have received, but I kept the start of all the addresses visible.

Sorry to have to tell you this but only 6 characters of an address are required to search for them on Block Explorer.
754  Bitcoin / Bitcoin Discussion / Re: MIA Bitcoin? (Screen Shots) on: June 01, 2011, 12:31:46 AM
Your block count is really low for today... mine shows 127869 currently.

Edit: Sorry I re-read your post and see that your transaction is from block 124730.

Have you tried starting bitcoin with the -rescan option?

Otherwise, I'd try deleting the block chain altogether and downloading it all again.
755  Economy / Economics / Re: The Ultimatum Game on: May 31, 2011, 11:22:19 PM
Quote from: Alex Beckenham link=topic=6234.msg153604#msg153604
@bituser, how do you feel about missing out on 0.5 BTC?

One way to think of this is that you had a sure (almost) 0.5 in your hand, but then you gambled it all in order to get 0.65 (you gambled 100% to get a 30% return).

I don't feel bad at all. As I said in my earlier post, I would always offer 0.5 BTC during a normal game. I only offered the 0.65 BTC as I figured you would want to see fadisaaida's reaction.

So really this experiment is somewhat invalid. The true experiment is between strangers who don't know anything about each other. By discussing the game first and by having witnesses, the outcome is altered.

examples :

1. hah ( if i accept then i will look like a fool with my previous statement

fadisaaida listed this as one of his reasons for not taking the 0.35 BTC. But in the true experiment, he would not have taken a stance and could not be seen as a hypocrite for taking the low-ball offer.

Just some food for thought.

Yes I agree, with respect to the original post, this game was invalid.

I still found it interesting though.
756  Economy / Marketplace / Re: Bitcoin Bubble Game (with jackpot) on: May 31, 2011, 04:57:02 PM
Seems to me, many here are trying to solve a problem that doesn't exist.

What's the problem exactly?
757  Economy / Marketplace / Re: Bitcoin Bubble Game (with jackpot) on: May 31, 2011, 04:32:08 PM
First, let's convert jackpots into $ (the value on date they were won):
DateWon
April 28th-$97

I'm just glad I never sold any of those coins... up to $467.10 now Smiley
758  Bitcoin / Bitcoin Discussion / Re: mybitcoin security vulnerabilities on: May 31, 2011, 03:00:27 PM
Off topic, but I have to ask: Alex, do you live in Australia?  Grin

Yes, land of the slow internet.

I suppose I look upside down to you?
759  Bitcoin / Bitcoin Discussion / Re: Bitcoin services under attack? on: May 31, 2011, 02:57:51 PM
all bitcoin transactions are recorded in the blockchain, if you sent it on its way then it irrelevant if their client died or not
look your transaction up on http://blockexplorer.com/

It's not irrelevant if you've emailed them about it and received no response from them in 10+ days.

I accidentally duped a 10 BTC transaction to a merchant using mybitcoin.com and am yet to get any response from them (mybitcoin.com, not the merchant).


Don't use MyBitcoin?  The whole strength of Bitcoin is that it is 100% decentralized; why give that up?

Do you mean boycott all merchants that use mybitcoin.com to accept payments?

That will drastically reduce the take-up rate for new bitcoin merchants.

Not every store owner knows how to set up a wallet on their own server.
760  Bitcoin / Bitcoin Discussion / Re: mybitcoin security vulnerabilities on: May 31, 2011, 02:54:26 PM
Why the heck are people holding ßtc funds in online accounts?
I just dont get it.....

like maybe if "my comp burned out so now im on my lappy and i didnt loose my wallet.dat HAR HAR"
But my wallets on many frequent backups so I unno

If I'm in a situation where I need to use an internet cafe, I'd rather have a few coins online than plug my wallet.dat into some public pc's usb port.
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 64 65 66 67 68 69 70 71 72 73 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!