Slashdot Mirror


User: Feadin

Feadin's activity in the archive.

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

Comments · 22

  1. Modern coding practices on Slashdot Asks: Why Are Browsers So Slow? (ilyabirman.net) · · Score: 1

    OOP and fragmented code

  2. Biased and no on Australia's Prime Minister Doesn't Get Why Kids Should Learn To Code · · Score: 1

    And yet another incredibly biased news post... that says a lot of the poster. I agree with that prime minister. Not everyone should learn to code. We really don't need more mediocre developers.

  3. Immoral? on Editor-in-Chief of the Next Web: Adblockers Are Immoral · · Score: 1

    ...that's because he's an idiot.

  4. Exactly what this guy said. Stop trying to get people to stay at the office all the time. If you want to give someone a bonus, give him money or free days. I for one don't give a rats ass about free snacks, free lunch, free coffe, nor afteroffices. I want freedom. No phone calls when I'm out of work, no absurd schedules, no constant priority changing, nor that ridiculous expetation to "multitask". Today's fashion is to want everything faster and try to keep people at the office for as long as possible. FUCK THAT. I'm no teenager, I know better.

  5. Etzioni's arguments... on AI Expert: AI Won't Exterminate Us -- It Will Empower Us · · Score: 1

    ...are so idiotic they shouldn't even be here.

  6. What's the deal with the bubbles...? on Coding Bootcamps Presented As "College Alternative" · · Score: 1

    The IT world is full of "bubble boys". It really is a shame.

  7. I'm a nerd... on Ballmer Says Amazon Isn't a "Real Business" · · Score: 1

    ...and I don't care.

  8. So what this "experts" are saying is... on NPR: '80s Ads Are Responsible For the Lack of Women Coders · · Score: 1

    ...that women act like lemmings?

  9. Again? on Slashdot Asks: Do You Want a Smart Watch? · · Score: 1

    No. Stop spamming Slashdot.

  10. A reason... on Ask Slashdot: What Would It Take For You To Buy a Smartwatch? · · Score: 1

    If it were cheap, non-plasticky, water and shockproof, medium size and with several years of battery life I'd probably get one... but only if my Timex Expedition gives up first.

  11. WTF on 4 Tips For Your New Laptop · · Score: 1

    Why the fuck is this on Slashdot?

  12. Still Windows for my desktop on What Keeps You On (or Off) Windows in 2013? · · Score: 1

    Reasons I still use Windows for my desktops: Consistency between OS parts, direction as a whole, design, software and hardware compatibility, stability (it hangs so much less often than a Linux *desktop* nowadays), driver support and last but not least I can play decent (contemporary) games. This is right now, I'm not talking about the future nor the past. I still prefer Linux for most of my servers though. Command line only of course.

  13. Re:You don't on Ask Slashdot: How Can I Explain To a Coworker That He Writes Bad Code? · · Score: 1

    Unfortunately, this is about right. But always remember the reason: Idiots outnumber us.

  14. PBKDF2 on New 25-GPU Monster Devours Strong Passwords In Minutes · · Score: 1

    Single hash passwords have been a bad idea for a while now. If you're a dev, PBKDF2 would be a better choice.

  15. Evolution on Ask Slashdot: What Distros Have You Used, In What Order? · · Score: 1

    Started back in the 90's: Slackware->Gentoo->Ubuntu->Windows 7 :) You could definitely spot a trend there, and believe me it's not laziness.

  16. Re:Functional on Why Is Wikipedia So Ugly? · · Score: 1

    It is functional up to some extent, I agree with that. But it's also plain fugly. Too much info cluttered in a single screen is not good. Books are definitely not like that, as they usually have a single column with one single topic per page. If you want to change topic you have to switch to another page. Wikipedia shows too much info in too little space, and that makes it look needlessly confusing and difficult to read. It could surely use some modern techs like AJAX and HTML5 to make it faster and show/hide content on demand as needed by the reader. There's really no need to show EVERYTHING you've got at the same time, that's too 90's and has evolved to more dynamic sites for a good reason. Take Google as an example. How much info and functionality Google has? And yet it still manages to have simple and clean interfaces. Compare the Google front page with the Wikipedia front page and you'll easily see what I mean.

  17. He may know better on How Do You Educate a Prodigy? · · Score: 1

    You should ask HIM.... duh!

  18. Unethical at least on Morality of Throttling a Local ISP? · · Score: 1

    I'd do it, but then protest and start looking for another job somewhere else. Throttling is unethical and should be illegal, because an ISP provides Internet, not Web or e-mail, so the users should be able to use any protocol they want. If you have to, raise the fees, but don't lie/cheat/steal from the customers... It's not a nice situation, good luck!

  19. Something is missing in the report.... on Arctic Sea Ice Rallies a Bit · · Score: 1

    If the ice it's really coming back... I'd like to know why :)

  20. BS on Study Finds Windows More Secure Than Linux · · Score: 1

    The article is not even worth reading if it says that Red Hat is Linux (I've read it anyway :P ). If they'd used Gentoo the results would have been VERY different... but anyway, it a very shallow comparison, I mean, just the time it takes to patch vulnerabilities means nothing.

  21. I use Gentoo best tool, among others on Top Ten Linux Configuration Tools? · · Score: 1

    emerge, nano, cat, less, grep, ps, kill, nohup and of course a lot of bash.

  22. And what about security? on Build From Source vs. Packages? · · Score: 1

    I think an important point about installing from source is the security. When building the program you can specify which things you will be using and which you won't. That way you can disable many 'open doors' you won't need, and minimize the footprint (attack surface) of the programs you run on your servers.

    And about the performance difference... it CAN be considerable, many times it won't, but a few times a program will be really faster when compiled from source with the right options. So I believe you should ask yourself how often do you install new software on the servers, and how much time do you have to do so. Usually, the time it takes to compile a program in a server is pretty short, so I don't see a real reason for not doing it if you use some automated system like Gentoo's portage.

    The traditional way is not always the safer, nor the best. Every sysadmin should be conscious enough to find the better way, and let go RH ;)