Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:You are the 1% (Score 1) 331

If you are not investing directly into stocks but through a mutual fund or retirement fund you are actually getting ripped of. Yes, they are working with your money, but at the same time they are taking a good share of "your" profits an putting them into their pockets. Granted some compensation for their work is acceptable, but the she shear volume they chiffon off is ridiculous.

Comment Re:Tax (Score 2) 534

What is so wrong about selling a good product at reasonable price. Now I will agree with you that Apple devices are spec wise not at the leading edge and price/value wise not the best sell. But they are withing reason comparable to other high end products. What I must give them; or rather Steve Jobs, is the fact that they/he embraced the "it just works" mantra and many people want that. Now I like my Android the way it is: open; but issues with apple devices are only rarely seen. Granted it comes at the cost of buying expensive preapproved and compatible components, instead of bargain components. For all accounts I can not see any real evil doing on the part of Apple; and no walled gardens are not evil...

Comment Re:Another use of Crypto-coin - as gift cards (Score 1) 39

Um? The only thing that gives the value to a currency is the shared trust in this currency. The "gold standard" or any other shenanigans are/where just smoke an mirrors to reinforce this shared trust. (Especially when going from minted gold and silver coins to paper.) But even the value of gold and silver coins is based on shared trust. Sure you can melt the gold and trade that, but there is not guarantee what the gold price will be in the future or that the next person will accept these coins.

Comment Re:Another use of Crypto-coin - as gift cards (Score 1) 39

Do you know how bit coin works? How do you "pre-mine" a crypto currency. The mining process is part of the running transactions. If today all bitcoin mining ceased, no transaction would ever be validated. This thing with bitcoin is, there are no tokens that need to be mined. The mining process actually is just a clever way to authenticate transactions in a decentralized manner. That the miner gets something out of it, is just a reward so that people provide the computing power to authenticate transactions. Mining just sounds cooler than authenticating transactions.

The alternative is to use tokens, but these need to be authenticated against a central authority... and that not a crpto currency as we understand it.

Comment Re:ok. i'll play. "my experience is... (Score 1) 39

That does not compute. Why does a company, any size that is, need to convert heir daily/weekly/monthly earning in on go. What is so wrong about converting the payments into local currency as the payments come in. Sure it may make sense to batch some transfers so that the fees are minimized, but apart for that there is no reason to wait.

In addition this is somewhat self regulating, when a company starts to accept payments in BitCoin, it will start low and slowly grow. When it gets large enough to matter the market will have adjusted to the drain. In addition, if a significant amount is taken out of the market and the people continue paying with BitCoin, it means that they need actually buy BitCoin from other currencies.

The problem that companies face is that, if the services are priced in BitCoin, they don't know how much "real" money they will get. But mostly this is not the case; the services are priced, for example "5 USD payable in BitCoin, as by XYZ's exchange rate".

Comment Re:My guess (Score 2) 130

You know, many engineers actually use the computing power given to them. Granted not all the time, but if a project compiles in five min instead of one hour, that actually means something. The complaining normally starts, because they know that with a better system they would not wait that long. On the other hand MANY other office computer users topped their "maxing out" the machine at around 2005.

Comment Re: C is primordial (Score 1) 641

Yes but you would not be able to actually empress this in C. Not possible! The best you could do would be something like:


void set_class_to_blue(Element* ele)
{
        set_class(ele, "blue");
}

foreach(dom, "a", set_class_to_blue);

Any if you inline the code, you can see what it does line for line and translate it to ASM.

Take the JQuery in contrast. That does the $("a") actually do? It creates an object that contains a classifier that may later evaluate to DOM nodes. On this object you then can call function; theses functions then operate on all instances. So the statement $("a").addClass("blue") is semantically equivalent to $('a').forEach(function (ele) {ele.setClass("blue");}). But it is not implemented in the same way. Even if you inline all the JS code, it will be hard to break it down to actual processor instructions (just the VM), because half of the time a semantic construction does nothing useful.

Comment Leading by Bad Example? (Score 1) 285

I am not sure if on purpose or not but their website is a classic example why ads are bad and distracting. Their website is loaded with ads for their campaigns, social media buttons, links to the extensions and stuff. The entire design looks almost like a terrible online magazine, that derides their article just so you will see the ads. It may that it is a bold sarcastic statement or they are hypocrites.

Comment Re:C is very relevant in 2014, (Score 1) 641

Perhaps C's greatest weakness is that it places too much trust in the coder, where other languages don't.

THIS is the only reason for C's existence. If solves one problem, remove all barriers between the programmer and the machine and still be a reasonable language. Assembly is the only way to program with less barriers, but that is not a reasonable language. C is useful in those cases where you simple can't trade speed for the programmer switching off his brain.

Slashdot Top Deals

If you want to put yourself on the map, publish your own map.

Working...