Slashdot Mirror


User: just_another_sean

just_another_sean's activity in the archive.

Stories
0
Comments
1,380
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,380

  1. Re:binary logging is just so awful because... on Does Systemd Make Linux Complex, Error-Prone, and Unstable? (ungleich.ch) · · Score: 1

    Considering how long zcat and other z* text tools, plus the fact that web servers have been serving gzipped files since the nineties, I'll raise my hand and say, yes, a gzipped text file is a perfectly reasonable text format.

  2. Re:Good Lord, just run Slackware. on Does Systemd Make Linux Complex, Error-Prone, and Unstable? (ungleich.ch) · · Score: 1

    That's what I've done. That or OpenBSD. But I used Debian for decades and I'm glad there is a distro out there catering to the crowd that just wants apt without systemd. Devuan wasn't ready when I decided it was time for me to ditch Debian but I may revisit it next time I have to set up something new.

  3. Re:Freedom of speech? Devil's advocate on Google Cancels Domain Registration For Neo-Nazi Website Daily Stormer (businessinsider.com) · · Score: 2

    I believe the rationale is that the article in question went beyond protected speech when it targeted Heather Heyer specifically. Espousing one's beliefs is one thing, no matter how repugnant they might be. However what they wrote is probably considered defamation and therefore illegal.

    Basing my opinion on what I've read about what prompted the take down, I have not read the article in question.

    IANAL

  4. Re:Time for the FreeBSD migration to begin. on Security Updates Released for Debian 8 and 7 (debian.org) · · Score: 1

    Ha, interesting, troll and funny. I'd have modded you insightful. I'll probably have to stay off /. for a few days to avoid the responses I'm going to get but what the heck.

    I've started using slackware at home for hobby stuff, slackware at work where simple is enough and OpenBSD where I need security. I have a few Debian 7 boxes around still but they are all due to be phased out and replaced by OpenBSD. I love slackware and will continue to use it as long as I can, it always was closer to BSD than a lot of other distros so that helps. But for anything serious I'm *BSD all the way. And you know what? I wish I'd done it years ago, I find that I really do prefer Unix over Linux.

    So long Debian, I grew up on you while my son grew up on Toy Story but it's time for both of us to move on.

  5. Re:Why do they remind you of that? on Microsoft, Facebook, YouTube and Others Agree To Remove Hate Speech Across the EU · · Score: 1

    It's in TFS...

    Social media is unfortunately one of the tools that terrorist groups use to radicalise young people and racist use to spread violence and hatred. This agreement is an important step forward to ensure that the internet remains a place of free and democratic expression, where European values and laws are respected."

    You can extrapolate whatever you want from the article and argue that's where this is all heading, we probably agree on a number of points. But you quoted the EU rep out of context to support your point. You don't have to do that, you have a point to make and can do so without willfully ignoring the content of the article.

  6. Re:Why do they remind you of that? on Microsoft, Facebook, YouTube and Others Agree To Remove Hate Speech Across the EU · · Score: 1

    AC already beat me too it but to add - it's right there in the summary:

    Social media is unfortunately one of the tools that terrorist groups use to radicalise young people and racist use to spread violence and hatred. This agreement is an important step forward to ensure that the internet remains a place of free and democratic expression, where European values and laws are respected."

    Nowhere in her quote is their a suggestion that they are doing this out of some need to assuage western guilt as your comment implies.

    IMO this isn't really as newsworthy as people are making it out to be. While I don't agree with them European countries have had hate speech laws on their books since the end of WW II. If some American companies want to pander to these laws in order to grow their market or avoid some other regulatory oversight by being a "team player" than it's their prerogative.

    I believe it will only make them look bad in the long run as they won't have the resources to follow through and they will invariably make mistakes that will upset people. But again, I don't own those companies (and try to avoid using their products) so it's up to them, they certainly don't care what I think!

  7. No, no, no. It's obvious this is a victory for vi users everywhere, er, in Europe!

  8. Re:Shills =/= trolls on Russian Online Trolls Resist The Light · · Score: 1

    Trolling is supposed to be a(n) art, not just being an asshole.

    Meep!

  9. Re:be ware of the leopard on Microsoft Backtracks On 'Nasty Trick' Upgrade To Windows 10 (bbc.co.uk) · · Score: 3, Informative

    Happy Towel Day!

    http://www.towelday.org/

  10. My understanding is that they didn't even get a DMCA notice from Fox. Content ID is to blame IIUC. I haven't been able to find anything definite but this quote seems to suggest that and I've seen other comments about this story that seem to back that up...

    "It's most likely that this is just another example of YouTubeâ(TM)s Content ID system automatically taking down a video without regard to actual copyright ownership and fair use. As soon as FOX broadcast that Family Guy episode, their robots started taking down any footage that appeared to be reposted from the show â" and in this case they took down the footage they stole from an independent creator," Lyon says.

    Lyon referring to Jeff Lyon, the CTO of Fight for the Future.

    Is anyone really sure that Fox issued a notice and that this isn't just another example of Content ID failing miserably?

  11. Dude, that's beautiful!

  12. Well, again Perl, I read as much of Larry Wall''s writing as I could over the years. The three virtues of programming he espouses are hubris, laziness and impatience.

    I think this one falls under the laziness category. Don't spend time solving problems others have already solved. Modern Perl and CPAN really emphasize too. And of course it translates well to other languages and even everyday things that may not even be related to programming.

    On the other hand I believe this oversimplifies things a bit. If a library is getting long in the tooth or has some functionality that is still relevant but a lot of legacy baggage that is obsolete then a rewrite is not necessarily a bad thing. Case in point - OpenSSL -> (LibreSSL | Boring SSL)

  13. This on 'I Know How To Program, But I Don't Know What To Program' (devdungeon.com) · · Score: 5, Interesting

    The author advises these beginners to try rewriting a library which already exists (despite this being considered as a prohibited practice by many).

    This is how I learned a lot about Perl, C, C++ and to a much lesser extent JavaScript. I wrote (crappy) web frameworks in Perl, front ends for MySQL in C and even tried reinventing concepts from the STL in C++. Not one of my pet projects ended up in production systems for very long, if ever. I simply did them to scratch an itch and help myself understand the underlying principles. My understanding of Perl and PHP frameworks improved immensely and I learned it wasn't nearly as hard as I thought to get under the hood and learn when something wasn't behaving the way I expected it too. Implementing STL dupes help me actually be able to parse Bjarne Stroustrup's books on C++ and in general gave me a much deeper understanding of programming in various languages. Was I able to make better tools than a team of experts working on something together for years? Hell no! Just improved my ability to understand and use their work.

    It's like learning assembly to understand how computers work, you're probably not going to do much of it in the real world but it will help you more than you think when you develop that level of understanding.

  14. Also a slack user. Started with it in the late 90's, switched to Red Hat for a while because that's what the company I worked for at the time used. When Red Hat went commercial I tried a few others before settling on Debian. Still used Red Hat at work so it was nice to get used to More Than One Way of Doing It.

    When systemd came along I switched back to Slackware and have been giving OpenBSD a try on smaller hobby projects.

    I recently installed slackware for a friend as a personal firewall and this helped a lot... Still not just an option on install but it was easy to follow and left with me with a lean, mean machine.

    http://www.slackware.com/~vbat...

  15. Re:Simple question on Google's AI Is Devouring Romance Novels (cbsnews.com) · · Score: 3, Funny

    I guarantee that the first time my phone hits on me I will be affected.

  16. Re:OFFTOPIC: Slashdot "disable ads" feature is gon on 'I'll Make Their Life Miserable': Tech CEO Bullies Low-income Vendors By His Home (theguardian.com) · · Score: 1

    Based on other comments I don't doubt there is something broken about it. But for me, when mine went away I spent some time searching, trying to figure it out. Gave up and lived with it after a few minutes. Surfed /. for a few days in a row and magically it was back. Then I got busy, life and all that, and hadn't been to /. in months. When I finally came back the ads were back. A few days of consistent visits and one day the box was back and checking it removed the ads.

    I chalked it up to a change that basically works like ( good karma + consistent visits = remove ads ). Have no idea if that's right, just the behaviour I observed. I can say, unlike other commenters, that if the box was there and I checked it then it worked and ads were removed. I typically surf /. with Firefox or Seamonkey fwiw.

  17. Re:Huh. on Interviews: RMS Answers Your Questions · · Score: 1

    Thanks for clearing that up for us Mitt!

  18. Re:Optimization on .NET 4.6 Optimizer Bug Causes Methods To Get Wrong Parameters · · Score: 1

    Yes, thanks, I read another comment saying the same thing after I posted. I guess I was forgetting the whole replace only aspect of .net now. I don't use it a lot and back in the day you could sanely maintain multiple versions on the same system. So in my mind when reading the summary and skimming the article I was thinking this only referred to people specifically targeting the freshly released 4.6.

    Here's hoping for a quick patch release. And, as also pointed out in other comments, if you are able the .Net git repository has the patch available for those who don't want to wait for the official release.

  19. Optimization on .NET 4.6 Optimizer Bug Causes Methods To Get Wrong Parameters · · Score: 1

    this means developers must make the difficult choice between using the latest tools or risking crippling bugs such as this one.

    I don't know much about this but isn't it possible to just reduce the optimization level to avoid this behaviour? Sounds to me just skimming things that this the result of overly aggressive optimization. I know that's not a long term fix but is it a short term option until MS rolls out the patch?

  20. Re:Few Hackers Smart Enough to Take Advantage of i on Bug Exposes OpenSSH Servers To Brute-Force Password Guessing Attacks · · Score: 1

    That's a good question and I honestly can't say it's come up. My guess is that if you are in single user mode then the lock is ignored. But that is just a guess, I'll have to experiment with sometime.

  21. Re:denyhosts on Bug Exposes OpenSSH Servers To Brute-Force Password Guessing Attacks · · Score: 1

    Fail2ban has worked well for me over the years. It's pretty easy to set up given it's sane, sensible defaults. Not comparing it to denyhosts, haven't use that. Just noting an alternative...

    www.fail2ban.org

  22. Re:Few Hackers Smart Enough to Take Advantage of i on Bug Exposes OpenSSH Servers To Brute-Force Password Guessing Attacks · · Score: 2

    I see this all the time too. PubKey authentication only, Fail2Ban and no root logins help to keep the log clutter to a minimum.

    After finally weening myself off of using the root account locally I now just lock root completely. "sudo passwd -l root". Doesn't disable root so "sudo su -" still works but you can't login directly as root when the password is locked.

    Although there is less traffic in the logs now I still get some entries before F2B kicks in and I find some of the non-root attempts very amusing... oracle, admin, ftp, PlcmSpIp, zhangyan

    Some are obvious service user account attempts and some are just weird!

  23. Re:Summary on On Being Pro-GPL · · Score: 1

    Hi, I was the original submitter. My summary was terse and simply contained a one line description of what I understood the article to be about and a quote of the last two sentences about pitting licenses against each other and the line that says "My name is Christopher Allan Webber. I fight for the users, and I'm standing up for the GPL.".

    I agree that they took some editorial liberty and made it sound more controversial than I felt it was but I was still happy to see it posted as Christopher seemed to think it wouldn't get noticed and seemed peeved he wasn't able to respond to the talk at OSCON.

    It was also the last talk of the night, and there was really no venue to respond to it ...
    But it needs a response... even if the only venue I have at the moment is my blog. That'll do.

  24. Re:Soylent News Looks pretty good on SourceForge Responds To nmap Maintainer's Claims · · Score: 1

    I've only been to /. a handful of times in the last several months. I spend most of my reading on the web time over at news.ycombinator.com (Hacker News) these days. Good signal to noise ration, no ads, a reasonable community of moderators, etc.

  25. Re:I understand but I also don't on A Mismatch Between Wikimedia's Pledge Drive and Its Cash On Hand? · · Score: 0

    This is slashdot, you want to put this content on Wikipedia.