Bitcoin Forum
May 23, 2024, 10:24:49 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 ... 108 »
421  Bitcoin / Bitcoin Discussion / Re: I am questioning whether if we should be calling Bitcoins by their name... on: September 19, 2011, 10:41:00 AM
License plates as the new physical currency FTW.
422  Economy / Economics / Re: Gold: I smell a trap on: September 14, 2011, 12:39:07 PM
As the saying goes, "you can't eat gold".
Yes you can eat gold.
423  Bitcoin / Development & Technical Discussion / Re: Why class attributes are not encapsulated? on: September 14, 2011, 09:47:54 AM
In general there's an engineering tradeoff with encapsulation. If you encapsulate everything possible to the maximum extent, you end up with a bloated piece of software that's difficult to understand (simply because it's so much bigger).

On the other hand, failing to encapsulate certain things leads to software that's less malleable; harder to change without breaking things.

I think there's a lot to be said for adding encapsulation to those parts of the code that actually get worked on, and adding it at the time when the benefit becomes apparent (such as the example that you give).

So I suggest that you write two patches. The first patch, to encapsulate CTxOut::nValue, can be submitted to Bitcoin. The second patch will be for your own purposes, to implement demurrage or whatever it is you need to do.
424  Bitcoin / Bitcoin Discussion / Re: Operation Fabulous question.... on: September 08, 2011, 02:34:42 PM
Is this project (Op Fab) still healthy?
I'm a happy user. I get paying ads on my website about two-thirds of the time. The rest of the time I get the default OpFab advertisement.

Right now it seems a bit strange to have ads running on my website for "Islamic Bank of Bitcoin" because my website isn't their ideal demographic, but hey it's a good way to earn a small but steady trickle of bitcoins.
425  Economy / Speculation / Re: Here we go again, bitcoin exchange rates have been doing just fine on: September 06, 2011, 04:28:10 PM
In the long run, Bitcoin is either going to be worth nothing, or a very large amount. So I figure it doesn't matter too much what it does in the meantime.
426  Bitcoin / Bitcoin Discussion / Re: Bitcoin in France: first legal decision directly related to Bitcoin? on: September 04, 2011, 02:49:18 PM
Bitcoin is not a money, it's bitcoin. Don't try to interpret it with current laws...
The state will naturally try to interpret it with current laws. If you don't want to irritate the state, stop scratching it.
427  Other / Off-topic / Re: Why do sadistic freaks always fly their airplanes around 50ft above the ground? on: September 04, 2011, 02:26:50 PM
Is it farmers who are crop-dusting? They need to fly low. In my part of the world the low-flyers are military jets doing pilot training.
428  Other / Beginners & Help / Re: Exchange accidentally sent 512 bitcoins after coding error on: September 04, 2011, 02:20:27 PM
This sounds like something a five year old would come up with, that has no experience with other people or the world in general.  
Try posting something constructive instead of an ad-hominem attack. Besides, I'm only four years old.
429  Other / Beginners & Help / Re: Exchange accidentally sent 512 bitcoins after coding error on: September 04, 2011, 02:19:14 PM
Quote from: ribuck
But if it's too easy for businesses to get back coins that they accidentally send, they're going to keep accidentally sending them.

Are you sure the condition for that if statement is accurate?

if (too easy for businesses to get back coins accidentally sent) { accidentallysendcoins(); }
if (not easy for businesses to get back coins accidentally sent) { tryanotherstrategy(); }

Are you sure 'businesses" is correct way to reference these types of ethics/morals?  Perhaps something more evil or scammalicious is suitable in place of "business?"
I'm not even referring to scamming, just to incompetence. If a business can make money when they do the right thing, and not lose money when they do the wrong thing, there's no incentive for them to stop doing the wrong thing. But if the business loses money when they do the wrong thing, they'll very promptly stop doing the wrong thing.

Quote from: mizerydearia
Although, there are many consensually agreed upon businesses that are evil (e.g. Sony, Microsoft, SCO, etc.), yet, trying to think of a business that is opposite, good, actually seems a bit difficult.  Even Nintendo has its share of evils.  Therefore, perhaps "business" alone is indication of evilness?

I was going to use Witcoin as an example of a business that doesn't seem to be evil, but then it occurred to me that you might be assuming that business == corporation. As I use the words, a business provides goods or services in a voluntary way that benefits itself and its customers. A corporation depends on the power of the state to protect its profits whilst socializing any losses (i.e. distributing them to others). In theory, and sometimes in practice, a corporation can also be a legitimate business.

You mentioned Sony, which illustrates my earlier point. If Sony doesn't lose money by installing rootkits, they will keep installing rootkits. If Sony makes a financial loss by installing rootkits, they will very quickly stop installing rootkits.
430  Other / Beginners & Help / Re: Exchange accidentally sent 512 bitcoins after coding error on: September 04, 2011, 02:08:03 PM
Notice how lop-sided that article is.

The article explains (correctly in my opinion) that if an ATM gives you too much money, the bank is entitled to get that money back from you. But if the ATM pays out less than you asked for, "getting this money back could prove tricky".
431  Other / Beginners & Help / Re: Exchange accidentally sent 512 bitcoins after coding error on: September 04, 2011, 02:04:07 PM
Irreversible transactions do not make honour, ethic and law irrelevant.
I would really like to see a Bitcoin Adjudication service set up that, after considering the evidence presented before it, issues judgements not about statist law but about honour, ethic and reputation.

It would then be up to the perpetrator to decide whether to restore their honour. If they didn't, it would be up to the community to ostracise them. In a well-defined community, ostracism is a very powerful mechanism.
432  Bitcoin / Bitcoin Discussion / Re: Tom Williams ~ The Smoking Gun(s) on: September 04, 2011, 01:46:05 PM
Explain the significance of a password starting with "$1$" or not.
Here's what the "$1$" prefix means. Don't read anything more than this into the "$1$" prefix.

Originally, MtGox stored hashed passwords in their database. A few years ago, this was considered reasonably secure, but the development and distribution of "rainbow tables" made hashed passwords insecure. (A "rainbow table" is essentially a reverse-lookup which takes you from a hashed password to a candidate unhashed password.)

In response to this, many websites (including MtGox) upgraded their systems to store salted hashed passwords instead of plain hashed passwords. This makes basic rainbow tables unusable for password cracking.

The problem is: how do you upgrade the existing passwords to use the new salting scheme? You don't know the existing passwords; you only know their hash. So you wait until the user logs on with a password that matches the hash. At that point, the user has just entered their actual password so you calculate the password's salted hash, and store that in the database in place of the unsalted hash.

A common technique (which was used at MtGox) represents the salted hashes with a prefix of "$1$", to distinguish it from unsalted hashes and to identify the salting/hashing scheme.

tl; dr:  From the presence of the "$1$" prefix we can deduce that the user logged in one or more times after MtGox changed to salted hashes. From the absence of the "$1$" prefix we can deduce that the user created their account before MtGox changed to salted hashes, and did not log in to that account between that time and when the password file was leaked.
433  Other / Politics & Society / Re: The contradictions of Bitcoin on: September 02, 2011, 10:52:24 AM
1. The same characteristics that make Bitcoin work well for honest people, also make it work well for dishonest people.

2. Fear, uncertainty, and doubt about whether/how Bitcoin will be tolerated/attacked by government discourages honest users of Bitcoin to a greater extent than it discourages dishonest users of Bitcoin.

3. Therefore, society would benefit if law enforcement would focus on CP and the like, rather than the currency used to facilitate it, and if the use of Bitcoin itself is legally unencumbered.

4. This is unlikely to happen.
434  Bitcoin / Press / Re: Bitcoin press hits, notable sources on: September 02, 2011, 10:42:06 AM
Charles Peralo of the Seasteading Institute mentions Bitcoin as a preferred currency for seasteds, at 8:25 in this interview:
http://www.youtube.com/watch?v=L3axaN1ewHo
435  Economy / Goods / [WTB] Small car in the northwest of England on: September 01, 2011, 12:40:36 PM
Does anyone in the northwest of England want to sell a car for bitcoins?

I'm looking for something small like a Toyota Yaris or Aigo, from a reliable marque (i.e. not European-made), and not in a dark colour. The car's age is not critical, provided the price is appropriate.

Send me a PM, or post here, to let me know what you're selling.
436  Other / Politics & Society / Re: Internet billionaire donates $1.25 million to create libertarian islands on: August 31, 2011, 12:59:05 PM
I don't want my tax money spent to defend it.
I think it's much more likely that your tax money will be spent to attack it.
437  Bitcoin / Bitcoin Discussion / Re: My YouTube search for bitcoins on: August 23, 2011, 09:40:42 PM
Saying FLAT money just makes her sound stupid...
I like the term "flat money".

Probably 99% of the population has no idea what "fiat money" means, yet they all know about "flat money" (ink printed onto flattened pieces of dead trees).
438  Bitcoin / Bitcoin Discussion / Re: Who is Satoshi Nakamoto? on: August 23, 2011, 09:04:45 PM
That was the only lame excuse he could find to remove his public support for bitcoin Cheesy
Paco's excuse is so strange.

There are many people at this forum who don't yet understand why the 21 million coin limit is not a problem, and how Bitcoin could function with absolutely any pre-specified limit, but Paco Ahlgren has the knowledge, intelligence and background to understand this perfectly, and I'm sure he does understand it.

Very, very odd.
439  Economy / Marketplace / Re: [AUCTION] Numismatic bitcoins for sale to highest bidder. on: August 21, 2011, 09:03:14 AM
I am already a bit afraid that it will go at some rather large premium and than everyone and his mother will be telling me for the next year or so "how dare you to set such high price for your bitcoins"  Roll Eyes
I'm sure you also have a little fear that next year someone will say "why did I sell it for such a low price?".
440  Other / Beginners & Help / Re: Questioning Satoshi Nakamoto's existence... on: August 20, 2011, 12:03:11 PM
... he knows who Satoshi really is because Satoshi read his book and questioned him about it ...
Satoshi always used tor and an anonymising email service, so it seems unlikely that he would have chosen to reveal his identity to Paco.
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 ... 108 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!