Slashdot Mirror


User: etinin

etinin's activity in the archive.

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

Comments · 84

  1. Plot Twist on MINIX: Intel's Hidden In-chip Operating System (zdnet.com) · · Score: 1

    This is a huge plot twist in a longstanding argument (monolithic x micro kernel). It had been widely believed Minix was all but dead, but it looks like Minix won against Linux in a way, even if used for evil. Mr. Torvalds is probably not very happy that Intel didn't choose his kernel for their evil deeds.

  2. Re:please just go all the way to the C++ mode on Linus Torvalds In Sweary Rant About Punctuation In Kernel Comments (theregister.co.uk) · · Score: 1

    Might've been sarcasm as well... Linus's messages are (sometimes deservedly) full of it.

  3. Re:please just go all the way to the C++ mode on Linus Torvalds In Sweary Rant About Punctuation In Kernel Comments (theregister.co.uk) · · Score: 2

    Is this even allowed in kernel code? I'm curious.

  4. I'd gladly develop something better for them on South Australia Refuses To Stop Using An Expired, MS-DOS-Based Health Software (abc.net.au) · · Score: 2

    Really, for less than it costs to maintain this legacy crap, my team would be willing to develop something decent for them. (and give them the sourcr) This is all really stupid.

  5. Works fine on Ask Slashdot: Have You Migrated To Node.js? · · Score: 1

    Haters gonna hate, but well-written JS performs better than most php software. You could argue Javascript makes it easier to develop shitty code, but if you look at java, C and any other language for that matter, most software is shit and the one to blame is the programmer, not the language.

    From shit ass slow angular websites to instant loading react ones, there just can't be a generalization. You have awesome software like Atom written in node and I bet many people would never realize it was written with Node.js.

    We also have a lot of proprietary crap (look at IBM/MS stuff) written in C and now Java which are slow as a turtle. Node by itself is a fine tool and it sure does help me build better websites.

    Just don't think a MEAN platform is gonna be the best for everything. I've often used node with PostgreSQL, for example, because it was a better combination for the job. The same applies for LAMP, it's not snake oil. Know your tools and use them wisely and you'll be fine with whatever path you pick.

  6. I thought I was going crazy on Apple Says It Doesn't Know Why iTunes Users Are Losing Their Music Files (theverge.com) · · Score: 1

    I have been noticing some random iTunes tracks disappearing, much to my annoyance when I want to listen a specific album. Well, as a savy user, I kept thinking it was my fault, that I somehow made some mistake when importing the tracks. Apple owes some kind of apology and compensation to those users affected. Especially since it's going to be very hard to identify which specific tracks iTunes has deleted.

  7. Too little, too late on 11 Years After Git, BitKeeper Is Open-Sourced (phoronix.com) · · Score: 4, Interesting

    Torvalds claims, somewhat exaggeratedly, that he did write the core of git in two weeks, and, for any software developer, it's easy to see that git is a far more valuable tool to developers than any of its predecessors. After initial issues with bad command-line tools and crappy mswin compatibility, I think there are few reasons to complain about git nowadays.
    It's a perfect *NIX source control system, doing one thing and doing it well.
    To those who don't mind Linus's typical arrogance and want to see his side of the whole story, I recommend the following talk he gave at Google: https://m.youtube.com/watch?v=...

  8. They could rather have spent this kind of money performing the actual background checks.

  9. Most decent programmers wil have updated their machine's git version using Homebrew. People who are not capable of doing it, probably won't even be using git in the first place. Also, it's possible to disable Apple's system protection by booting into recovery mode and running one or two commanda, thus giving root it's standard UNIX prerrogatives. Many users, myself included, choose to do this.

  10. Re: Seems obvious on NASA Feed 'Goes Down As Horseshoe UFO Appears On ISS Live Cam' (mirror.co.uk) · · Score: 1

    On Slashdot, even UFOs are M$'s fault!

  11. Negligence by the regulators on Jeep/Chrysler's New Gearshift Appears To Be Causing Accidents (roadandtrack.com) · · Score: 1

    Everyone was ready to lambast VW for the diesel emissions scandal.
    But, even with plenty of evidence other manufacturers were engaging in similar practices, everything seems to have been forgotten and we're back (mostly) to normal. Even that scandal wasn't caught by standard testing, but by a third-party.

    At the end of the day, the manufacturers still do whatever they want and good luck to the consumers. If this kind of thing happens to a relatively expensive vehicle like this, I can't begin to imagine what "innovations" to trim costs on cheaper models might be doing, even though they don't have this kind of press coverage.

  12. Re:"with the same characteristics" on Microsoft Open-Sources Its JavaScript Engine Chakra (windows.com) · · Score: 1

    Not that there is much use to this, since there's V8 out there which is multiplatform, but the fact is that they didn't open source all of Chakra. Things like browser hooks probably got removed. But they do claim it's the same code, as can be seed by the following quote from TFA link:

    "Once the changes from any pull request have been vetted, our goal is to ensure that all changes find their way to be shipped as a part of the JavaScript engine powering Microsoft Edge and the Universal Windows Platform on Windows 10."

  13. How long till nobody else cares about Firefox? on Mozilla Has 'No Plans' To Offer Firefox Without Pocket (venturebeat.com) · · Score: 1

    They're almost done digging their own grave. It's slightly sad when you remember how they were pushing the limits of the internet in pre-1.0 and ~2.0 versions. But, nowadays, except maybe for Safari, which is still usable only because of Google contributions to Apple's codebase, Firefox has managed to be the slowest moving of the major browsers. Heck, even MS is being forced into getting community feedback for Edge and is actually implementing requested features, while mozilla continually spits at their users' face.

  14. Terminal.app on Ask Slashdot: What Terminal Emulator Do You Use? · · Score: 1

    With Bash running inside (not that you have much choice with OS X)

  15. About extensions on Ask Slashdot: Automated Verification For Uploaded Files? · · Score: 1

    In addition to the above method, I simply ignore the original filename (and save it somewhere) and rename the file to a random UUID+the auto detected extension (for images you only need a couple of headers, for example).

  16. Just check the file headers on Ask Slashdot: Automated Verification For Uploaded Files? · · Score: 1

    When you're talking about PNG, if you're looking to avoid malicious files, you can just check the headers.
    It's always the following decimal values:
    137 80 78 71 13 10 26 10

    Things get more tricky when you're talking about an exploitable file type, in which additional validation is required, but for most purposes, if the file being broken won't ruin the application, this is fine.

  17. Re:Sorry you find C so hard to understand, Linus. on Linus Rants About C Programming Semantics (iu.edu) · · Score: 2

    I'm, not defending the code, but you're missing the point:
    The compiler fallback had been added:
    http://git.kernel.org/cgit/lin...

    The problem was the inherent unreadability of the code. Using little known compiler-specific functions makes the code much harder to read.

  18. And what about the infrastructure issues? on Amtrak Installing Cameras To Watch Train Engineers · · Score: 5, Insightful

    While I'm not fully aware of the details of this story, it really seems to me that they are only looking to put the blame on the weakest side, which is obviously the workers. Even if the guy did screw up, it would be ridiculous to think a camera would be capable of preventing an accident. Where are the technical failsafes to limit the train's speed? Guess true security updates have been eaten by their desire for profit and instead been replaced with cheap cameras so they can say "oh no, we were watching the guy but he was a terrorist who shut down the camera" or any other crap to get their fat a$$es out of the way.

  19. Re:Ottawa will never allow it on Microsoft Reportedly May Acquire BlackBerry · · Score: 1

    so was Nokia. Oulu, with its once pride big economy is now in tatters.

  20. Re:I don't know why people still say Java is slow. on How Java Changed Programming Forever · · Score: 1

    Well, I used to think that too. In old times I'd agree 100% with you. I'm not gonna defend VB6, that was just a joke. But nowadays, javascript can run a lot faster than many compiled languages. You see things like Node.js which show that javascript engines have been insanely optimized, largely due to the languages (over)use on the internet. On my other post, I mentioned that Google made a demo using Dart (which is just a language which transcompiles to javascript, like CoffeeScript or TypeScript), rendering entire frames in 1.2ms. I am as much as baffled as you, but Google has found it easier to have low latency APIs for well-written JavaScript than with some Dalvik optimization.
    My good advice is: it's hard for people with a compiled language background, including me, to accept that, but JS is very good for many things which we couldn't dream of 5 years ago, encroaching even C territory.

    https://play.google.com/store/...

  21. Re:I don't know why people still say Java is slow. on How Java Changed Programming Forever · · Score: 4, Insightful

    On a slightly more serious sidenote, it's easy to see Java's popularity dropping, since Google seems to be dumping java for high performance javascript/dart development, as they have already been announcing for Android.
    http://arstechnica.com/civis/v...

    Linus has actually stated it in a way that is frequently seen as toxic. But, while C++ is one of my favourite programming languages, certain language features tend indeed to "rotten" people's brains, just like pre-GIT CVS+derivatives did to source control habits. And I find that Java is actually the perfect representative of that nowadays, not C++ (and even Linus is now commiting patches in C++) I don't know what you guys people but when I have to traverse a tree of 10 folders, and files have 10 lines and exist only for a single abstraction's sake, I kinda feel OOP, though a powerful tool, has been overused. When everything has to be an object just for a paradigm's sake, things can get kinda distorted. One of the greatest programming innovations is, in my opinion, MVC (or even MVVC stuff like Angular) is one of the greatest things that have been getting popular lately. By separating logic from models and views people are encouraged not to create stupid abstractions and use procedural programming where it is adequate and avoid performance losses.

    (proof that torvalds actually uses C++ if anyone hasn't seen that: https://github.com/torvalds/su...)

  22. I don't know why people still say Java is slow... on How Java Changed Programming Forever · · Score: 5, Funny

    Maybe it's the applications. As you note, we have proved, time and time again, that in contrived scenarios Java code can meet or even beat the performance of so-called "performant" languages like C, C++, Lisp, VB6, or JavaScript. And when presented with such evidence, most sane, open-minded opponents will hang their heads in shame and promise never again to spread such slander.

    ...but then, they fire up Eclipse, or NetBeans, or Guiffy, or enable the Java support in their browser, or try to run an app on their favorite feature phone. And they wait for it to become responsive...

    ...and wait...

    ...and wait...



    ...and wait...







    ...and wait...













    ...and...






    ...what did I promise never to do again? Sorry, must have dozed off...

  23. Re:Eamcs and Vi on Choosing the Right IDE · · Score: 1

    people can't ever post this kind under their own account without being bullied and/or losing karma.
    /.ers being /.ers.

  24. Re:All your genes are belong to us! on Genetically Engineered Yeast Makes It Possible To Brew Morphine · · Score: 1

    Well, not correct. Endogenous opiates include endorphins, enkephalins, dynorphins and, surprisingly morphine itself (http://www.ncbi.nlm.nih.gov/pubmed/10941194).

    Morphine has particularly bad side effects when taken orally. But no endogenous opiate release can ever match the dopamine release of even small opioid intake. Anyone who's ever taken (pharmceutical) opioids for any reason surely understands why one gets addicted to those. Having happiness anxiety-be-gone pills in your pocket can be tempting.

    And what's even worse: unlike true depressants, up to a certain threshold there is almost no effect whatsoever on cognitive performance and will not make you sleepy. So when used in a certain way people get happy and work (and even find work interesting). It is said that chinese immigrants making use of opioids to work better in factories resulted in prejudice which led to opioids being banned in the United States.

  25. Re:I think it was systemd. on Decoding the Enigma of Satoshi Nakamoto · · Score: 1

    and here I am without mod points. so many overrated posts and this funny one just flagged as trolling.