Slashdot Mirror


User: mrpotato

mrpotato's activity in the archive.

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

Comments · 81

  1. Re:These guys should contact O'Reilly ... on For Sale: 1 Damian Conway, 1 Dan Sugalski · · Score: 1
    .. with the money they make out of selling Perl books, they could easily fulfil a goodly part of the modest $55000 [yetanother.org] they talk about on this page. (Yes, I know 55k was the *2001* budget.)

    Because you think they are not already making money with O'Reilly?

    And don't worry, someone will come up front to pay them, some companies are very interested in funding Perl development further.

  2. Re:Try the range operator sometime... on For Sale: 1 Damian Conway, 1 Dan Sugalski · · Score: 1


    &lt=> returns -1, 0 or 1 if the left argument is respectively smaller, equal or greater than the right argument.

    (1 &lt=> 2) == -1
    (1 &lt=> 1) == 0
    (2 &lt=> 1) == 1

  3. Re:Perl, eh... on For Sale: 1 Damian Conway, 1 Dan Sugalski · · Score: 3, Interesting
    Perl? Isn't that the horribly complex programming language that people dread?

    Yes, it is horribly complex.
    Look at that hello world program for example:
    print "Hello World!";

    Now, that's some complex piece of software. Ok, let's say you want to have a list of strings. You could do so like that:
    @list = ("element1", "element2", "element3")

    Well, just try to do the same in C.

    Contrary to popular belief, Perl is easy. The thing is that you don't need to know everything to use it. Just a small subset will satisfy you.

    People think it is hard because of the syntax and variety of constructs you can use. Well, for sure Perl is very flexible. But in no way it is a defficiency of the language. Perl is of course better suited to some tasks, as is any programming language.

    And to those who think that all Perl programs are incomprehensible pieces of rubbish, remember this: Only Bad Programmers Code Badly in Perl(tm).

  4. Re: hnjmfrvde on What Accessibility Options Exist for Unix? · · Score: 1
    wang wang wang, what a cool word!



    therefore your favorite palindrome probably is "gnaw a wang"

  5. Re:No surprises here on Wu-ftpd Remote Root Hole · · Score: 1
    Wu-FTPd has had a long history of security holes. It's practically the BIND of FTP servers.

    To continue the analogy, Wu-FTPd is also:
    The Sendmail of SMTP servers and the IIS of HTTP servers.

    They can all be secured, but all have a pretty bad road record for security.

  6. Re:Ho Hum, Already Done on Fast Alpha-Blending In Your GUI · · Score: 1
    I know you probably intented it as a troll, but sincerly it isn't really a clever one nor is it true.

    I think reasons behind MS OSes bloat is more like something related to marketing, and keeping backward compatibility, etc.

  7. Re:At the risk of starting a flame war.. on Red Hat Proposes Alternative Settlement To MSFT · · Score: 1

    Is RedHat really a good idea? Sure, it's easy to install, but if history is any guide, it's pretty easy to own, too. Why not a more secure linux distribution, or even (ducking) FreeBSD?
    Oh, yeah, you are right. Windows is so much more secure.

    Seriously though, there is nothing such as a "secure linux distribution" other than a good install with all services turned off by default. I don't think you really know what you are talking about, though.
    And still someone modded you up... It sure shows how clueless some moderators are.

  8. Re:Cart? Horse? on The Power of Multi-Language Applications · · Score: 1

    Saw it too, I have to agree. I'd see Perl as a glue language, and that could call some C++ in some cases, but using C++ as the language for the controlling program is a mistake in my opinion. Probably this is the language the submitter knows best, with experience he'll realise the errors of his way.

  9. Re:Hmm, sounds odd... on Message from Kabul · · Score: 1
    I must say though, it makes me feel a little sick that the first thing the Afghans will see when they brush the soil from the TVs will be Jerry Springer, Temptation Island and MTV...

    Why? Aren't you proud of your popular culture? That's what u.s. popular culture is all about. And yes, I agree with you, there is nothing about it that I would be proud of (if I was american). Please note that I said "popular" culture, so I don't include here your history or great authors you have/had. Pop culture is utter crap, and it is the greatest U.S. ambassador in the world.

  10. Just remember: on Methanol Fuel-Cell Battery For Your Laptop? · · Score: 4, Funny

    don't drink the batteries: methanol will get you blind, ethanol will get you drunk.

  11. Re:For the best. on Fink Maintainer Steps Down Due To GPL Infringment · · Score: 1
    Can anyone point out the GPL violation, or is this another Slashdot fuckup?

    There aren't any GPL violation, and yes it is another Slashdot misleading headline (read: "fuckup").

  12. Re:Okay, enough Lisp advocacy on Kent M. Pitman's Second Wind · · Score: 4, Interesting
    I agree so much.

    I'm familiar with a few languages. I begun with C++, thought it was nice and fun. Then I learned Java: I thought it was great not to have to worry about memory allocation and pointers, etc. I thought Java was fun too. But damn the Java community is dry. Then I learned Perl: I was in love. You can build things quick, and the community around the language is just so alive, diverse and interesting. You can get help anytime, people just _love_ to teach you (and show off ;-).

    And these time, I'm into Scheme. It's very different, very fun and rewarding. You get to see the world from a new angle. You get to stretch your mind.

    And everytime I learn a new language it just helps me to better understand the others. And don't forget the fun-factor: it is what drives me to try new stuff, to learn more. Ah well, just random rambling from a happy CS student ;-)

  13. Re:OMG ... on U.S. Logo-Free TV Broadcast Organizations? · · Score: 2, Funny

    just so you know guys, I'm there along with you too. Who the f%$? care that much about a friggin little logo that you don't even see afther a minute? Absurd and ridiculous.

  14. Not a meteor... on Meteor May Have Wiped Out Middle East Civilization · · Score: 3, Funny
    satellite images of southern Iraq have revealed a two-mile-wide impact crater caused by a meteor

    Nah, not a meteorite, more probably those we caused by the first tests of "bunker buster" bombs thrown at Saddam by the U.S...

  15. Re:?Lives Notation Polish Reversed? on HP Calculator Department Closing · · Score: 3, Informative

    no need to press enter afther 'This', and you need just 2 '+'.

  16. Re:Filehandles on Perl6 for Mortals · · Score: 2, Interesting
    my $fh = open $file or die;

    That works well with Perl 5.6...

    '$| = 1' to autoflush a stream is ugly

    Then use the full variable name? $| is in fact a shortcut for $OUTPUT_AUTOFLUSH (just make sure you Use English;)

    I really don't see what you are complaining about, all you want to do is there, right here right now.

  17. Re:Excpetions are a key on Open Source Programmers Stink At Error Handling · · Score: 0
    are exception calls and checks much more expensive than manual error-checking?

    To answer your question quickly, yes, exceptions are costly and should be used with care.

    Well, they cost a lot of CPU cycles but actually they are cheaper Programmer-time-wise.

    So you decide: you optimize for short devel time and stability, or for raw cpu speed.

  18. Re:That's insane on A Strategic Comparison of Windows Vs. Unix · · Score: 0
    :)

    I know you are right, ms databases "forget" about some tables sometimes, that feature enable disk-space recuperation.

    Also all the remote management features, etc., you've got to agree that in some way windows is really an open platform (in the sense of "come on all here! open house party!) :)

  19. each one got it's use... on A Strategic Comparison of Windows Vs. Unix · · Score: 0
    Unix --> servers

    Windows --> desktop

    Those two can mix pretty well, you have the strenght of Unix servers as backend and ease of use of Windows for the desktop.

    You then just have to choose applications that works well in that type of environment, and everyone will be happy. Just use some NT version of windows, win9x/ME would be a joke in a real work environment. (I'm not saying it isn't widely used already, just saying that using it is running afther trouble).

  20. Re:That's insane on A Strategic Comparison of Windows Vs. Unix · · Score: 0
    That's insane

    no it isn't. I work in a place where all software is from Microsoft. I do some support, and we do have a lot of application crashes (and we even got a pretty nasty SqlServer crash, thank god for backups).

    Also, something really scary is the number of people using Access for relatively critical databases: those tend to get corrupted all the time, give poor performance, and now they get to be a f**kin headache when a part of your users upgrade their Office version (that's what I'm going through right now).

    You can't even begin to imagine the loss of productivity associated with bugs in Microsoft tools.

  21. Re:CVS on Linux 2.4.13 · · Score: 0
    very, very good tips.

    much easier, faster, less chance to screw up. thanks!

  22. Re:Lilo support on GNU Emacs 21 · · Score: 1
    funny, very funny :)

    M-x dodge-this

  23. Re:this business plan should help... on Opposing Open Source? · · Score: 1

    hey! I trolled a troll, how 'bout that?

  24. this business plan should help... on Opposing Open Source? · · Score: 1, Redundant
    as it seems to be the most widely used open-source companies business plan:

    1. open-source software
    2. ??????
    3. make money
  25. Re:Stress test time for the ftp servers. on Red Hat 7.2 Released · · Score: 0

    thanks a lot for that mirror, it sure is really fast.