Slashdot Mirror


User: Alkonaut

Alkonaut's activity in the archive.

Stories
0
Comments
254
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 254

  1. Re:Microsoft's attempt at a do-everything box on Microsoft Unveils Xbox One · · Score: 1

    Well, to be honest the gaming is the simple bit. You know that if you upgrade a gaming rig after 5 years it will be awesome. And all the gamers just want the next Halo/Fifa/CoD anyway, so what more do you want? Microsoft seem confident to take the livingroom before Sony/Samsung/LG/Apple/Google do, so this is their attempt. I think they are pretty confident in their gamer-customer base.

  2. Are standard bulbs/sockets really enough? on Smartest Light Bulbs Ever, Dumbest Idea Ever? · · Score: 1

    This would be great if it wasn't for the fact that during the last decade(s) people have been fitting multi-socket halogen fixtures instead of single bulb standard socket fixtures in their homes. I'd definitely love having an app-controlled lighting system, but it would have to be much more flexible than just a bulb or single socket solution. For light fixtures with several low power halogen lights I'd have to hide the control unit somewhere before the power is split to the individual halogens, i.e. somewhere in the fixture or as a special lightswitch (essenially then a controllable dimmner switch). All the light fixtures that already have dimmers would have to go the same way: the wheel dimmer would have to be replaced by one that can be controlled by the app.

    As long as I can dim 3 out of 4 lights but still have to get off my ass to go turn down the fourth light (at the same place where I could dim them all), there is very little gain. As soon as someone offers a simple solution that is expandable to existing switches, multi-socket fixtures and so on, i.e. beyond standard bulb/socket then I'm in.

  3. Re:Let me guess...further deprecation of desktop a on Report: Windows Blue Reaches Its First Milestone Build · · Score: 3, Interesting

    I use windows 8 and don't get what the fuss is about. I basically don't use the metro interface and don't intend to ever do so until I can do ALL my work in it. That is, I don't dislike the UI per se, but dislike having to switch back and forth. I don't really care if MS gets a share of what I pay for applications either, but here is the chicken and egg problem: I won't buy any metro apps until I use that interface. I won't use that interface until I can use it exclusively. I won't use it exclusively until all my applications are there.

  4. Re:Let me guess...further deprecation of desktop a on Report: Windows Blue Reaches Its First Milestone Build · · Score: 5, Insightful

    They will never, ever be able to remove support for the legacy desktop apps that is what keep customers from moving away from windows. What they WILL do however, is realize that home users don't really provide as much income as they should for microsoft. Apple is a shining example of a company that makes money from consumers, not business. Microsofts cash-cow is income from people using workstations and servers in offices around the world. So the question: How can microsoft make good business from consumers, without risking their revenue stream from business? Answer: by separating the tiers further. Make desktop/legacy a "premium" product, and sell the consumer OS cheaper by forcing users to adopt apps that give MS a piece of the revenue. I predict that the desktop will live forever, but only in the higher SKU:s of windows. Meanwhile, microsofts "Home"/OEM offerings of windows will steadily become cheaper and slowly move into an apps-only ecosystem.

  5. Re:Use different passwords for different things on New 25-GPU Monster Devours Strong Passwords In Minutes · · Score: 1

    Assume the server has a database of hashed passwords, using one of the now vulnerable hashing algorithms. What the client is sending is for example a https encrypted password, not a hashed password? if you are the man in the middle, you are dealing with encryption not hashing? The https request is decrypted on the server, the plaintext client password is then hashed and compared to the hash in the database. I don't see how a man in the middle is related to hashes? (Then again I'm not a security guy in any shape way or form). As far as I know hash vulnerabilities are mainly a concern when the password (hash) datbase is compromised, which happens sooner or later.

  6. Re:keep moving them goalposts! on Auto-threading Compiler Could Restore Moore's Law Gains · · Score: 1

    Thus not only proving they didn't read the article, they didn't even properly read the title. "restore GAINS of moores law". Which is perfectly correct.

  7. Re:Teach programmers on Auto-threading Compiler Could Restore Moore's Law Gains · · Score: 1

    This research doesn't change that. What parallel programming is about, is currently three steps 1) find parts of code that can execute in parallel (reasonably simple), 2) make sure there is no shared mutable state (hard), 3) make correct threading implementation (tedious

    The problem with todays (OO/imperative) languages and tools is that it is exceedingly hard to make sure that state isn't shared. It is also very hard to test for, and find bugs related to shared state. This research helps with step 2. You still have to figure out where these boundaries are, but you can make sure it is correct, by letting a compiler check this for you. It can also help you with step 3, but if your assumptions are correct that isn't hard in current tools, just tedious. Things like TPL and PLink have greatly simplified step 3), but what I assume MS have found out is that with such power to parallelize, developers are spending more and more time in step 2, thus gaining very little.

  8. Re:No, it cannot on Auto-threading Compiler Could Restore Moore's Law Gains · · Score: 1

    Maybe read the article? Maybe just the title? "Help restore the GAINS of Moores law.". That is, since these days the extra transistors we put on cpu:s just go to more cores and not faster cores, we don't gain as much as we used to until 2004. These days to actually GAIN from Moore's Law, we need code that actually use these transistors, i.e. parallel code.

  9. Apples and oranges. on A Gentle Rant About Software Development and Installers · · Score: 1
    Shorter article:

    Installing huge enterprisey things SAP and Oracle software is harder than using a package manager to install Apache.

  10. Re:It IS geek news on Nate Silver's Numbers Indicate Probable Obama Win, World Agrees · · Score: 2

    Funny the article/link/source didn't show up now that you mentioned it, either.

  11. Re:For the love of God All-mighty on Nate Silver's Numbers Indicate Probable Obama Win, World Agrees · · Score: 3, Funny

    For a long while I thought Mitt's official twitter account was a parody account.

  12. Re:Everyone loves a winner. on Nate Silver's Numbers Indicate Probable Obama Win, World Agrees · · Score: 5, Insightful

    Quite a few things, for example less sword rattling in the Iran/Israel region (A war would reduce US purchasing power and affect global economy just like Iraq did). Less of a "trade war" with China (calling them a "currency manipulator on day one" certainly doesn't help trade & relations.

    Apart from these things that actually may affect me, I'd enjoy seeing that the greatest power in the world can hold an election that can't be bought or stolen by special interests. Would also be refreshing to see that the greatest democracy in the world have policies on reproduction/abortion/education/science that can't be mistaken for Taliban policies. That, and watching Fox News pundits heads explode for a week.

  13. Re:Did he already heard about integrated debugger on The IDE As a Bad Programming Language Enabler · · Score: 1

    Let's just say that however flawless the language, you will still make countless simple mistakes in *logic* that will be an order of magnitude quicker to diagnose and fix with an integrated debugger than with any non interactive means (logging, exception stack traces, command line debuggers).

  14. Re:Did he already heard about integrated debugger on The IDE As a Bad Programming Language Enabler · · Score: 2

    I would argue the opposite. If you execute code it will invariably do things you didn't expect, regardless of language. You either debug or guess. I saw no argument as to why guessing is preferable to interactive debugging? I agree that "null" is a language smell, but there are concepts like code contracts that lets you have non-null enforced etc. There are a million other things you can debug regardless of language.

  15. A text editor that does the job IS an IDE on The IDE As a Bad Programming Language Enabler · · Score: 5, Insightful

    Most bizarre conclusion I have ever seen. Of course you can have highlighting and other editing tricks (autocomplete, etc.) in a text editor. But once you add things like unit test integration, deployment, and most importantly an interactive debugger where you can step through your code, you have a proper development environment. Running tests can be done at a shell prompt, but debugging not so much. And if your text editor ticks all these boxes, including interactive debugging (I'm sure emacs can for example), then your text editor IS A FREAKING IDE ALREADY. I'd like to make the inverse conclusion of TFA: since we have proper IDE:s we can now allow the code in modern languages to be structured an way we want. A good IDE should never have you worrying about files, just code.

  16. Ask questions and expect answers on Ask Slashdot: How To Avoid Working With Awful Legacy Code? · · Score: 1

    The use of modern tech does not imply better code, but it certainly helps your work environment. A company that is quick to adopt new technology (e.g. Update to new language versions) has a better possibility than a company that doesn't. Make sure you talk to the guys involved with the technology. Interviews and screenings with recruiters are quick affairs, save your questions until you meet real developers. If the company doesn't have the actual developers and team leaders doing interviews, that is not a good sign. Third, make sure you find out how fast the crew is being replaced. A team of ten should have at least a few that have been there virtually forever, and you don't want to join that team if it has recruited 20 developers over the last 5 years. This is the most important thing: you want the same as every other developer out there. So a company where people work 1-2 years either has a technology problem or a serious pay/environment/cultural problem. Either way, you don't want it. Ask how many have left the last few years, and try to find out why. If you can't get this information, leave.

  17. Regulate idle power instead on Will EU Regulations Effectively Ban High-End Video Cards? · · Score: 4, Interesting

    Regulating idle power draw would actually be good, and a lot more clever than regulating the power ceiling. Saying that desktop computers can't use more than 10W in idle, and no component sold discretely can use more than 5W idle would make a huge difference. In reality, those of us running these 300W graphics cards only run them for a fraction of the day, and if they were 150W instead would make much difference, whereas a difference between 20W and 10W for the idle power would make a bigger difference over a week or a year.

  18. Re:Not to defend it but... on Will EU Regulations Effectively Ban High-End Video Cards? · · Score: 4, Informative

    This is a usual complaint with regulations such as this. The other obvious example is the light bulb ban. The problem with your approach is that adding a tax on electricity that is big enough to give an impact on peoples' shopping behavior when it comes to light bulbs, would mean industry would pay through the nose for electricity that actually creates jobs, and electricity that does work that can't be done more efficiently. The difference between that electricity and a light bulb is that at low power bulb can light a room with much less power than an old style 60W bulb. If we increase electricity taxes and don't wan't to lose competitive power in our industry, then we have to have a VERY complex system of energy subsidies to industry. A simple ban on a few consumer products is way simpler to implement and regulate, even though it might seem like micromanagement.

  19. Re:Just ship with a low-draw driver on Will EU Regulations Effectively Ban High-End Video Cards? · · Score: 3, Insightful

    Probably more common in developed countries where VAT and customs would actually amount to something. UK and Sweden have been mentioned already. Ordering something from the US to sweden usually means the price will be about equal to swedish street prices (Add 25% VAT and a bit of customs as well as freight cost).

  20. Re:Just ship with a low-draw driver on Will EU Regulations Effectively Ban High-End Video Cards? · · Score: 2

    I think this is a stupid regulation to begin with, but if I was making the regulation, I'd just make sure it stated that the device shouldn't be *able* to draw more than X watts, regardless of driver etc. That is, even with a hacked and supposedly unsupported driver, the device should stay under the ceiling, or not function, otherwise the fault is at the manufacturer. Worse, if the manufacturer itself provides the driver, they should be fined even steeper than if a lone hacker provides it. Feels like if you make regulations, you should make sure to make them work, or just not make regulations.

  21. Re:Fort Wayne Citilink buses do not run on Sundays on How We'll Get To 54.5 Mpg By 2025 · · Score: 1

    Don't see why public transit must be the culprit here. If there is good public transit then you might need zero cars. One car is often enough to take TWO people to work. The idea is to live conveniently, relative to work.

  22. Re:"...knock Microsoft on it's heels..." = bad tac on The Case That Apple Should Buy Nokia · · Score: 3, Insightful

    I'd rather have microsofts revenue than apples, even if apples is larger. Reason? Apples revenue comes from consumer electronics. That can change overnight if Apple just blows it once with a new release. Microsoft has a huge corporate revenue stream as well as a lot more lock-in from software. To put it another way: microsoft can release vista fiv times over without losing much revenue to e.g. Mac OS. If the iPhone6 is crap and samsung's offering is brilliant then Apple is in trouble. Apple have to deliver continuously, MS not so much.

  23. Re:Not anti American on How We'll Get To 54.5 Mpg By 2025 · · Score: 2

    This is 99% cultural/political i suppose. Unless you haul a dirtbike or sheep *most* of the time when you use the vehicle, you don't need a truck. There is no way all those F150 and similar are actually used to haul things even 10% of the time. It's absolutely imperative that the US govt remove any tax advantages on trucks/SUVs unless they already have. A regular 4x4 with a cheap trailer does the exact same job, but also hauls 5 people and luggage so you don't need a truck AND a car. Here is also a big difference between the EU and the US. We often have a car per family, not person. With a single car, the F150 just isn't as versatile as a full size estate.

  24. Why would you choose AT&T then? on AT&T Facing Net Neutrality Complaint Over FaceTime Restrictions · · Score: 1

    I truly hope that A) you can buy apple products and use any carrier you like, and B) you can use at least 2 carriers in most areas of the US. Given this, why then buy a lousy "data plan" from AT&T when it obviously enforces ridiculous restrictions?

  25. Re:Totally Awsome on Smooth, High Definition Video of Curiosity's Landing On Mars · · Score: 2

    If you imagine sitting inside the spaceship, where there would then be an atmosphere, you would be hearing noises produced by the craft itself, even if there is no atmosphere outside.