Slashdot Mirror


User: John+Bokma

John+Bokma's activity in the archive.

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

Comments · 758

  1. Re:Perl Is Awesome on Randal Schwartz's Perls of Wisdom · · Score: 1

    "I avoid using $_ and other magic variables "
    Sometimes you can make your code more readable by just using it, e.g. in ..... for @list; constructs. Or: for ( $var ) { s/..../.../g; s/..../...../g; ... } more readable compared to: $var =~ s/..../.../g; etc. avoiding language constructs "just because" is always a bad idea.

  2. Re:Its not the language... on Randal Schwartz's Perls of Wisdom · · Score: 1

    Hear Hear. Also Perl has some constructs in the langauge that require one to use a library in for example Java. Many people complain about the regexp syntax. I have yet to find a language (not Perl related) that does it easier.

  3. Re:First Use Python Post on Randal Schwartz's Perls of Wisdom · · Score: 1

    Funny, I just read 2 Python Books (one was Dive into Python), and am convinced that I have to read at least another (the library reference) Maybe because I want to do some serious stuff with the language and reduce the number of wheel reinventions :-D.

  4. Re:Reading Perl code? on Randal Schwartz's Perls of Wisdom · · Score: 1

    Same holds for any language I have seen. Beginners often make a huge mess which is unreadable for more advanced programmers. I have seen unreadable C, C++, Perl, PHP to name a few. Perl is often unreadable for the same reason as PHP: people just download garbage programs, tweak it, and publish it. GIGO.

  5. Re:Competition.. on Yahoo Debuts Search APIs · · Score: 3, Informative

    See http://johnbokma.com/perl/ for some small Google API examples using Perl. Although I miss some things, like the calculator, etc.

  6. Re:life before apache on Yahoo, Apache, Ebay, Amazon, Netscape Celebrate 10 Year Anniversaries · · Score: 1

    NCSA httpd webserver. Remember compiling and running it on an Indigo R3K. That probably makes me old :-D.

  7. Re:Not so good if you're completely new... on Battlestar Galactica Available for Download · · Score: 1
    I prefer shows that you develop an intimate relationship with the characters
    Yeah, that's what I like so much about Farscape :-D. I especially like John Crichton, he looks very convincing to me, as a person. The other characters I like a lot are Chiana, Aeryn and Rigel.
  8. Re:Not so good if you're completely new... on Battlestar Galactica Available for Download · · Score: 1

    How does the series compare to series like Farscape and Babylon 5? To me, Farscape is still the best SF series I ever saw.

  9. Re:Not so good if you're completely new... on Battlestar Galactica Available for Download · · Score: 1

    of the new cylons who are perfect human replicas What? What? No more "By your command" in a metallic voice and those awesome lights, later stolen by Knightrider? There goes another childhood miracle down the drain.

  10. Re:Write C for C programmers on Optimizations - Programmer vs. Compiler? · · Score: 1

    "parsing the "ptr == NULL" format requires a few microseconds of thought to figure out what you're doing. "!ptr" requires none." Only if it's your own code. The former stands more out than the latter, it's easy to skip over the !, and read the entire if wrong. If you notice this, you skip back to the if and then see the !. I love Perl's unless: unless ( ptr ) { } ... that reads way more easier compared to both forms IMNSHO.

  11. Program human readable on Optimizations - Programmer vs. Compiler? · · Score: 1

    If it doesn't work fast enough it's often cheaper to buy faster hardware.

  12. Re:Benefits of Subversion's revisioning system? on Pragmatic Version Control Using Subversion · · Score: 1

    Have a look at TortoiseSVN if you are running Windows, it works in explorer as a shell extension. http://tortoisesvn.tigris.org/ Also, note that if you use TextPad as an editor it's a piece of cake to add Tools to TextPad that do things like Add, Commit etc.

  13. Re:Uh... no. on Climbing up the Search Ladder · · Score: 1
    For dramatic increases in traffic you have to get high ranks for the words that the most people search for
    No, since you get a huge increase in traffic, but just a small increase in customers (if at all)
  14. Re:SEO on Climbing up the Search Ladder · · Score: 1
    Why should I truest oneupweb when they don't have the #1 position for the keywords 'search engine optimization'? :-)
    A good SEO company focuses on the long run, and not on a #1 spot on some SERP.
  15. Re:Uh... no. on Climbing up the Search Ladder · · Score: 1

    Even the number of results doesn't matter, I get more hits from a first page position in Google with just a few thousand of results compared to a first page position with millions of results. Good content brings good traffic. Most SEOs are too lazy to focus on content, and "steal" it. In the end you have many visitors, but they don't buy.

  16. Re:SEO = total waste of money on Climbing up the Search Ladder · · Score: 1
    They didn't provide us with any meta data,
    Meta data (keywords) are no longer used by serious SEs like Google. For the rest, I agree in part. Picking a bad SEO company doesn't mean they don't work. But basic SEO can be done by everybody, just focus on the content. Keep your HTML logical, use CSS, pick good titles, and off you go.
  17. Focus on content on Climbing up the Search Ladder · · Score: 2, Insightful

    Since that is what Google et are focussing on, or trying to. Don't go for the SEO trick of the day, since it will mean your site will drop when something changes. My experience is: write content. Watching the SERPs, tweaking your pages constantly, and checking your PR is a waste of time if you do it all the time. Add pages, and focus on the content. If your visitors like your pages, you get more links, and in the end that works better than the hack of the week. I am able to get 300+ visitors/day every month by just writing content. Other sites, blogs etc. link, my PageRank increases (currently 7). It goes more slow, but I am sure when Google tweaks its algorithm, I will keep my good position, or even go up a bit.

  18. If they are real heroes.... on Norwegian Student Ordered to Pay for Hyperlinks to Music · · Score: 1

    Let them fine google.no next: http://www.google.no/search?hl=no&q=inurl%3A%22o%2 7reilly%22+filetype%3Apdf&btnG=S%C3%B8k&meta=

  19. Aargh, so we get even more spam.... on Inkjet Printer Prints out Human Skin · · Score: 1

    Print a bigger member today...

  20. Re:SEO on Google Suggest Dissected, Part II · · Score: 1
    cable modem problem "return path" pending
    You were looking at form completion, not google suggest.
  21. Re:SEO on Google Suggest Dissected, Part II · · Score: 1
    A guy built an interface similar to Overture to use with Google Suggest.
    I wrote two small Perl scripts to use both Suggest: http://johnbokma.com/perl/google-suggest.html and Overture: http://johnbokma.com/perl/search-term-suggestion-t ool.html
  22. Small Perl script to get suggestions on Google Suggest Dissected, Part II · · Score: 2, Informative
  23. Re:I've said it before, and I'll say it again on PHP Vulnerabilities Announced · · Score: 1

    ZX Spectrum BASIC :-) Java, Perl, even C

  24. Re:I've said it before, and I'll say it again on PHP Vulnerabilities Announced · · Score: 1

    Amen! PHP is the worst language I have ever worked with. Even ZX Spectrum BASIC is more superior ;-)

  25. Re:Slashdot editors strike again! on P2P In 15 Lines of Code · · Score: 1

    Couldn't email you, but foreach can be written as for, and do you need the side effects of & for the sub calls? Otherwise that one can be dropped too.