Slashdot Mirror


User: omuls+are+tasty

omuls+are+tasty's activity in the archive.

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

Comments · 182

  1. Hehe on Could Betelgeuse Go Boom? · · Score: 1

    I failed to notice that on the frost piss, but saw it somewhere below. I thought "wow, look at this mean hax0r, he's got his own anonymous handle on Slashdot". It turns out it's just Slashdot farting once again. How disappointing.

  2. Modular design? on BIND 10 Development Now Fully Underway · · Score: 1, Flamebait

    So they finally figured out that djb was right; it took them mere 10 years. If he only didn't have such a... personality. Maybe we would've had something sane by now.

  3. Re:Oh come on. on Should Undergraduates Be Taught Fortran? · · Score: 1

    ...SDLC lifecycles

    I on the other hand believe that the paramount need is to teach them the principles of DRY repeat yourself.

  4. Performance? on Linux Kernel 2.6.30 Released · · Score: 2, Informative

    Intel's integrated graphics performance has been pretty progressively worse ever since switching from XAA, and rather abysmal ever since Xorg 1.5. Since then every release of X/mesa/xf86-video-intel made it even worse. Hopefully this release brings the entire GEM/UXA/KMS/whatever stack to a usable state. All this on a 945GM.

    What's your experience with it so far? I'll try it out myself in a few days, but I'm eager to hear the results...

  5. And a link to his page on Security Flaw Hits VAserv; Head of LxLabs Found Hanged · · Score: 1

    Ligesh has (had) a blog with an about page. Sounds a bit f**** up.

    A number of hosts have been hit by this, see e.g. this post at WHT. The software itself is apparently closed source (i.e. obfuscated source). Based on what I read, it was also quite cheap (speculations were ~50 cents for a single VPS), so most budget VPS providers used it.

    This includes 2host, where I got an account a few days back. A few hours later I got an e-mail saying they disabled the HyperVM panel. Nice.

  6. Arch Linux on Fedora 11 Is Now Available · · Score: 1

    I'll get off your lawn since I only started using Linux since 1.0.8 ;)

    Might wanna try out Arch Linux. It kind of reminds me of Slack - just with a proper package manager and without an opinionated (B)DFL. BSD-style init, everything is generally real easy to configure by hand, and the packages are pretty close to vanilla. They are binary so usually you don't have to waste time compiling them yourself, but when you need to, it's real easy - their "automated build system" (ABS) is mighty cool. The base install is minimal, but they're not too obsessed with freedom, so you get a completely usable desktop with the default repos, and there's also a huge community-provided repository.

    It's a rolling release though, so stuff does occasionally break. Still, by far my favorite modern desktop distro (I also tried Fedora, Ubuntu and OpenSuSE)

  7. Encryption? on Anti-Piracy Dog Uncovers Huge Cache of Discs · · Score: 1

    But can they smell it if you encrypt the contents? HA!

  8. We've had this already... on Cybercriminals Refine ATM Data-Sniffing Software · · Score: 1

    There were already news of something similar in March.

    Judging by the currencies the malware operates with, it seems the "Eastern European countries" are Ukraine and Russia. Does anyone know if it's Diebold again?

    And putting aside the incredibly logical choice of the OS, any idea on how this gets installed on the ATMs in the first place?

  9. Re:Fail already on Beginning Python Visualization · · Score: 1

    (what's the opposite of n00b anyway?)

    u can use l33t, 1337, 0r 3v3n 001011011111, but tehn again, how would u kn0w, suxxor?

  10. Yesh shonny boy on Court Orders Breathalyzer Code Opened, Reveals Mess · · Score: 1

    I knew zhish breshal... zhing doeshn't work!

  11. Re:Well wouldn't you know on An Early Look At What's Coming In PHP V6 · · Score: 1

    1- Any time there's a new feature you need to code a version with and without it, or you're cutting out the bulk of users still on the old version of code. PHP's more gradual approach is no different.

    Maybe we disagree with the concept of a "feature". A new feature was adding a different syntax for constructors in PHP5. You can choose to use it, or you can choose not to use it. A "feature" that breaks my code is not a feature, it's introducing backwards incompatibility. Backwards incompatibility = bad. Furthermore, the behaviour of my code changes from one installation to another. That's also not a feature, that's lack of portability.

    3- It's the implementation not the feature. If they enable it by default they'll have to stick with the implementation and maintain backwards compatibility. If they slow acceptance a bit, they have a chance to make changes without effecting as many users. For instance changing argument order before it would majorly break backwards compatibility and become an idiotic thing to change.

    There's no such thing as breaking backwards compatibility "just a little bit". You either break it or don't break it. And any time you create a public API of any sort you are making a commitment to keep it stable. If you're breaking a commitment you better have a damn good reason for it, and make sure that you run out of other viable options.

    Besides, if they're unable to create a reasonable interface to a feature that's been present in most programming languages for a decade, they should perhaps think of switching careers.

  12. Re:Come on... on Star Trek's Warp Drive Not Impossible · · Score: 1

    all the subatomic particles in your body will suddenly decide to move together through the wall behind you into the ladies room on the other side

    I can already see that making a fine closing in the court room. "And that is what happened, ladies and gentlemen of the jury, unlike what the prosecution would like you to believe!"

  13. Re:Well wouldn't you know on An Early Look At What's Coming In PHP V6 · · Score: 1

    Yes, it's also what made Javascript so painful before the dawn of the toolkits.

    Except that I'm not sure if it qualifies as "the worst practice" from a developers point of view, since a developer has no control over it.

  14. Re:Well wouldn't you know on An Early Look At What's Coming In PHP V6 · · Score: 1

    Version X+1: feature is optional, developers can start coding apps with it, and also maintain apps that do not yet support it

    Right. Except that it's completely out of my hands as a developer. It means that, if I'm to build a distributable app, I need 2 versions of the same code. Which is a Bad Thing. You know, DRY and all that jazz.

    Magic quotes was an unfortunate feature that existed when the language was first created.

    Are you sure about that? I don't know the history of PHP (I only started using it some 5 years ago) but I don't think that magic quotes existed when PHP was first created. It seems to me as if it was just monkey-patching of a gaping hole caused by a combo of featureless DBMS and the incompetent average developer.

    This sort of phased plan also has the major advantage of not making a feature mandatory or default before it's been well tested and determined to indeed be worth keeping around and making mandatory.

    Ah. So PHP devs need to determine whether having Unicode support is worth keeping around. Great. And they're also wondering if it's worth making mandatory, while they introduce a bunch of other backward incompatibilities. Makes sense.

  15. Well wouldn't you know on An Early Look At What's Coming In PHP V6 · · Score: 5, Insightful

    In the finest tradition of PHP, they made Unicode behaviour dependent on a setting. Have these people learnt nothing from the past? magic_quotes anyone? Bleh. All languages have their warts, but the amount of bad design decisions in this one is just staggering.

  16. Re:Pay for submission on Google Puts the Brakes On Saving the World · · Score: 1

    The problem is not (necessarily) the sum - access to means of electronic payment is often severely limited in the 3rd world.

  17. Re:Pay for submission on Google Puts the Brakes On Saving the World · · Score: 1

    Except that it would also hamper the ability of people in the 3rd world to submit their proposals.

  18. Re:Nosema is a fungus... on Scientists Isolate and Treat Parasite Causing Decline in Honey Bee Population · · Score: 1

    Great, just that selecting from a few thousand of drone bees can be somewhat harder.

  19. Re:Strength in unity-in-diversity on A Vision For a World Free of CAPTCHAs · · Score: 1

    Uncoordinated diversity leaves a lot of people to fend for themselves. Having unity-in-diversity (a common strength across systems and organisms), however, might well solve the problem.

    Now you wouldn't happen to hold a degree in politics or economics, would you?

  20. Re:A big medical breakthrough. on World's First X-Ray Laser Goes Live · · Score: 1

    assuming it has a relatively low flash temperature (like wood, paper, even plastic or paint).

    But does it work on human flesh?

    Please advise.

    Kind regards,
    The World Madmen Organization

  21. Re:A big medical breakthrough. on World's First X-Ray Laser Goes Live · · Score: 1

    Unfortunately, from TFA it seems that your CT scanner would need to have a two-mile linear accelerator behind it.

  22. Re:You gotta be able to hold it on Do We Need Running Shoes To Run? · · Score: 1

    I consider myself to be an expert skier as well, but I'm not sure your analogies are valid. Skiing injuries are generally the result of a single accident, while I guess running injuries mostly belong to the repetitive stress category.

    While I appreciate your attempt to bring up a car analogy with Formula 1, the same objection could be made to that one as well.

    I suppose that an analogy that could hold would be the one with tennis. Generally, tennis racquets that the pros use tend to be heavier and put more strain on the joints. Marcelo Rios was the world #1 while using a heavier racquet, but after elbow injuries he switched to a lighter one and never regained the same ranking again.

  23. Re:Hmm... on Bohemian Rhapsody On Old Hardware · · Score: 2, Insightful

    WTF dude. If there ever was a /. post worth of the "news for nerds" title, this is one.

    Absolutely freaking awesome.

  24. Re:Ummm on Tyler Bell On Yahoo's Open Location API · · Score: 1

    Dunno where you live, but your CS students must have a load of time on their hands if they're able to enter the said data for every settlement in the entire world.

  25. Re:Hang on on Strings Link the Ultra-Cold With the Super-Hot · · Score: 1

    To reply to myself :) But an example just came to my mind, think of a point on the surface of a torus. You can describe the location of any single point on it with two numbers, i.e. two angles (one from the center of the torus, and one from the center of the torus "tube"). If you describe it like this, then both of your dimensions are finite.