Slashdot Mirror


User: Leolo

Leolo's activity in the archive.

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

Comments · 105

  1. It gets worse on Sony Marketing Man Tweets PS3 Master Key · · Score: 1

    Without DRM the games are that much more suspetible to being controled by a script. In online play, this would give an advantage to the better coders (or script kiddies).

    Yes everyone could be using the cheat-scripts, but that would spoil the fun. This is a repeat of the steroids (sorry, Performance Enhancing Drugs) debate.

  2. Excuse me? on Sony Marketing Man Tweets PS3 Master Key · · Score: 1

    Could this post be translated into English understandable by people over 40?

    I can't believe I just asked that! But I don't know how to congugate "to retweet" nor how to parse "X followers tweet read."

  3. Re:Where do they get these numbers? on Ballmer Says 90% of Chinese Users Pirate Software · · Score: 1

    I think he extrapolated from the North American market; from what I can see 90% of people in the USA in Canada use at least some pirated software.

  4. Re:[citation needed] on Ballmer Says 90% of Chinese Users Pirate Software · · Score: 2

    I can't believe anyone really went far even as decided to use even go want to do look more like!

  5. Re:*Now* can we admit PHP sucks? on PHP Floating Point Bug Crashes Servers · · Score: 0

    Everybody inteligent already knows that PHP bites. That doesn't prevent it from being widely used.

  6. Re:Quality has never been a concern of Rubyists. on RubyGems' Module Count Soon To Surpass CPAN's · · Score: 1

    Most of what you said could be applied to Perl and CPAN as well. Monkey Patching? Isn't that the heart of Moose? Duck typing? That's basically all of Perl OO. I have no opinion of ActiveRecord, but I'm sure there are sucktastic ORMs on the CPAN. I also no the vast majority of the CPAN are not close to "high quality" let alone "extremely".

    And I say the above as someone who uses Perl professionaly since 1995. So you could say I have a pretty large pro-Perl bias.

    What would be more interesting is stats on what kinds of modules the CPAN has vs RubyGems. 1500 variations on text templating? 10 competing HTTP servers? 10 different event loops?

  7. Re:The most surprising turn of events on Free IPv4 Pool Now Down To Seven /8s · · Score: 1

    Through an SSH tunnel to some publicly routed host.

  8. Re:Weed on Anxiety and IT? · · Score: 1

    Please do not operate heavy firewalls while under the influence.

  9. Small budget on Best IT-infrastructure For a Small Company? · · Score: 1

    You haven't mentioned your budget. If it is small, you want to go with Linux and LTSP. Get 3 servers, 2 of which have sufficient disk space for your media. Setup LTSP on server A, your media stuff on server B, everything backs up to server C, which is a warm spare in case A or B dies.
    The desktops would be Fit PC2 or equiv with LCDs and USB keyboards and mice.

    What you gain : only admining 3 computers, desktops are interchangable. If something breaks, you just swap parts. Security is centeralized and simplified.

  10. Re:I'd go wireless on Building a Telegraph Using Only Stone Age Materials · · Score: 1

    While mirrors are easy to make, if you want non-line-of-sight wireless, use a spark gap emitter. The receiver would much harder to build, though.

  11. Re:old hardware, probably on 66% of All Windows Users Still Use Windows XP · · Score: 1

    That's why you buy a Sempron.

    Or you buy a computer from a big box and install Linux.

  12. Rejoicing. on Native ZFS Is Coming To Linux Next Month · · Score: 1

    ... there was much of it. Very much of it!

  13. Re:Twitter's 140 Characters on Best Alternatives To the Big Name Social Media? · · Score: 1

    "forced out of town on threat of fraudulent criminal charges"
    What the hell kind of messed up police state do you live in?

  14. Re:I only write trivial shell scripts on Adding Some Spice To *nix Shell Scripts · · Score: 1

    Your first solution is the best. There is also

    find /some/path -type f | egrep '\.(temp|tmp|junk)$' | while read file ; do rm "$file" ; done

    and

    find /some/path -type f | while read file ; do
      if [[ "$file" =~ "\.(temp|tmp|junk)$" ]] ; then
          rm "$file"
      fi
    done

  15. Rules of shell scripting on Adding Some Spice To *nix Shell Scripts · · Score: 2

    The first rule of shell scripts is "you don't write programs in shell."
    The second rule of shell scripts is "you DON'T WRITE PROGRAMS IN SHELL." Seriously. You want perl or some other high level language.
    The third rule is to start your script with "#!/bin/bash", not /bin/sh. Your script probably contains bashisms and you don't even know it. What's more, bash has some great features that are only available if you use it explicitly in your shebang.
    The fourth rule would be to read the bash faq at http://mywiki.wooledge.org/BashFAQ as it contains many tips and tricks that won't be obvious just by reading the man pages.

  16. Missing the point on IE9 Throws Down the Hardware Acceleration Gauntlet · · Score: 1

    How many websites have hundereds of flying images? None that I visit regularly.

    Websites are slow because the internet is slow and Javascript is slow.

    Hardware acceleration might be needed by Flash, but this wont provide that.

  17. Re:Tape vs. Spindle on SSD Price Drops Signaling End of Spinning Media? · · Score: 1

    Where does one find an LTO-4 drive for 300$ A quick google reveals they are actually in the 1000-2000$ range.

  18. Re:court intelligence on Canada's Top Court Quashes Child Porn Warrant · · Score: 1

    Very often those children are kidnapped, raped, assaulted or even murdered.

    [[citation needed]]

    Not to be too flippant, but "very often" is a weasle phrase. And that I find this entire sentence hysterical. Not as in "funny" but as in "perpetuating in a mass hysteria." You might be old enough to remember the "satanic ritual abuse" hysteria, or the "recovered memories" hysteria. If not, wikipedia might help you.

    I must however point out that I do not think that child porn is victimless. The children are abused, yes. You do not need to add "kidnapped, raped, assaulted or even murdered" to the discussion.

  19. What we can learn from basic on How Do You Get Users To Read Error Messages? · · Score: 1

    I work with legacy systems written in Pro/5 BASIC. Yes, pain. But... if a user calls you up and says "Error 11 on line 31210" you can know pretty quickly what the problem was. Because all our programs are structured in such a way that we know roughly what 31210 is doing.

    I don't really handle the BASIC stuff (my part is in Perl and Javascript), but I've heard my associate dictating a new line of code over the phone. Basically a one-line patch, improvised on the spot.

    I was very impressed.

  20. Firefox 2 on YouTube To Kill IE6 Support On March 13 · · Score: 1

    They are also going to drop support for Firefox 2. Which I still use because Firefox 3 requires a newer version of GTK. Which I don't have because I'm using FC5 on my desktop computer. And I haven't upgraded it because I can't be without a working desktop computer for the length of time an upgrade would take.

  21. Re:it still comes down to one thing on Gaining Root Access On Linux-Based Femtocells · · Score: 2, Interesting

    Yes there is a cost; a company installs a plug-n-play device A. It works for a while (months, years). Then it stops working or they want something changed or it doesn't work with some new device B. So then they call me to figure out the integration. Now, I need to log in and find out as much as I can about the device in as short a time as possible. I'm over 100 km from the device, have never used one before. The person who originaly installed device A has retired and is now snorkeling in the Solomon islands. So, what is root password? Either "123456" or I Google up a list of default passwords for the device. If I can't, that's a support call to the company that made the device (cost to maker) or the company that deployed it has to ditch the device and find something else (large cost to user).

    So yes, complex passwords have a cost.

  22. Re:Is there the checklist for why this won't succe on Researchers Claim "Effectively Perfect" Spam Blocking Discovery · · Score: 1

    > And also extreme profitability in having a working e-mail address.
    It is not profitable to spammers that you have a working email address.

  23. Re:HTML5 for the win? Sorry, that's not a codec. on YouTube Revamp Imminent? · · Score: 1

    While the justification might be bad, honouring autocomplete=off ALL THE TIME is the only right thing to do. Doing otherwise would be misguided.

  24. Silly quote on Not All iPods — Vinyl and Turntables Gain Sales · · Score: 1

    They can have my turntables when they pry them from my cold, dead hands.

    Also: vinyl is, has always been and always will be DRM free.

  25. CNC on What Do You Do When Printers Cost Less Than Ink? · · Score: 1

    The obvious answer : collect the stepper motor and driver board. When you have a few, build a CNC router or laser engraver.