When I grow up, I'll be a Perl Programmer! (78)

1 Name: Alexander!DxY0NCwFJg : 2006-04-06 22:57 ID:oXoZbraC

Schoolwork is keeping me from doing anything with this particular project, but some years ago I decided that I'm going to learn how to program.

I've decided to learn Perl first. Please tell me why this is a horrible idea! The more interesting reasoning, the better!

2 Name: #!/usr/bin/anonymous : 2006-04-06 22:58 ID:Heaven

It's a perfect idea. Go ahead and do it. Get started!

3 Name: dmpk2k!hinhT6kz2E : 2006-04-07 03:45 ID:Heaven

I don't think Perl is an ideal first language, but you certainly could make worse choices.

You could make better choices too. Of the major scripting languages, Perl is one of the nastier ones.

4 Name: Albright!LC/IWhc3yc : 2006-04-07 05:45 ID:Wn+gRsBf

http://en.wikipedia.org/wiki/Perl#Con

Also, if you want to go on to learn any form of C, Perl is so different from it that you'll have to re-learn many things.

5 Name: #!/usr/bin/anonymous : 2006-04-07 12:54 ID:Heaven

how to become a perl programmer:

  1. learn BASIC
  2. learn x86 assembly
  3. learn java
  4. forget java
  5. learn c++
  6. learn c
  7. learn php
  8. forget php
  9. learn perl
  10. forget BASIC, assembly, and c++

6 Name: #!/usr/bin/anonymous : 2006-04-07 20:31 ID:OMcy04SB

>>3
And what would you suggest as an ideal first language?

7 Name: #!/usr/bin/anonymous : 2006-04-07 20:47 ID:cicY/fQj

pascal is quite cool to learn the basics, but its syntax is so different from C and his derivates (like perl) that it's quite useless.

Let's see, java is quite simple to learn, and then you'll learn to manipulate objects (which is not at all perl-like but it's useful)

personally I began with pascal. Then I learnt perl. At school threre was some Scheme (which is a good thing to learn in the contrary to general opinion) and now it's java (which sux, but it's simple)

Oh yes, and BEFORE learning perl you should learn Regular Expressions. Without that, perl loses a half of it's potential.

8 Name: #!/usr/bin/anonymous : 2006-04-08 00:57 ID:+xU8q+xD

Perl may not be an ideal first language, but I don't think such a thing -- "ideal first language" -- exists. Perl is as good a place to start as any. The way I see it, the advantages of starting with Perl would be:

  • It's an actual useful language used in the real-world (unlike BASIC and Pascal), so you can feel like you're doing something worthwhile. I know I don't like to learn things that are only useful for learning -- feels like a waste.
  • It supports many different styles of programming, so you can learn things a piece at a time. Structured, object-oriented, functional, you can do it all in Perl, to some extent.

Possible downsides, but non-fatal:

  • Some Perl features are ad-hoc, arbitrary, and thoroughly wrongheaded (e.g., global variables like $[). However, it shouldn't be too hard to avoid these features. You wouldn't be interested in them as a beginner anyways.
  • A lot of Perl code out there is unreadable and bad. Just take Perl examples you find on the internet with a grain of salt. Don't automatically assume something you see is good Perl code. Then you'll be fine.

9 Name: #!/usr/bin/anonymous : 2006-04-08 18:01 ID:cicY/fQj

>>8 is right (just that objects in perl... well...)

as for unreadable perl code, it might be leet but I'd say that if perl code is well written it might be most readable code ever (for someone who know perl of course, otherwise you can read binary file as well). At least more readable than scheme (or lisp)

but then there is something like utility... perl is really the best for internet applications and text transformations, as well as for scripts (irssi, gimp..., bash scripts as it can send commands directly to system) but for applications like games or graphics it's not a good choice at all

10 Name: #!/usr/bin/anonymous : 2006-04-08 22:06 ID:Heaven

>>9

I think there are SDL and OpenGL modules for Perl, but I can't say I've ever tried them. Of course you won't be doing per-pixel graphics operations in Perl anytime soon, but it should at least allow you to play with stuff. How well it works in practice, though, I have no idea.

11 Name: #!/usr/bin/anonymous : 2006-04-09 10:05 ID:cicY/fQj

oh yes, there are also GtK and QT modules... but doing this with perl is just wrong. (in exeption of giving a GUI to a simple script, like text transformer or batch whatever file)

12 Name: #!/usr/bin/anonymous : 2006-04-09 20:59 ID:Heaven

>>10

> How well it works in practice, though, I have no idea.

You can write stuff like http://www.frozen-bubble.org/ with it.

13 Name: #!/usr/bin/anonymous : 2006-04-18 12:18 ID:Z0QwTcw3

#!/usr/bin/perl
$d="unu lbh ner";$f="guvf vf ";$d.="yrrg";$k=0;$f.="jul lbh qba'g";
$m="zl anzr";$f.=" yrnea gb cebtenz va Crey";$m.=" vf fdhrrxf";
$f=~tr/a-zA-Z/n-za-mN-ZA-M/;$f.='.';print $f;

14 Name: #!/usr/bin/anonymous : 2006-04-18 12:28 ID:a9Xnn82k

>>13

Too much fun?

15 Name: #!/usr/bin/anonymous : 2006-04-18 20:12 ID:j1nZRbvx

>>13 that's pretty tame

16 Name: #!/usr/bin/anonymous : 2006-04-18 23:25 ID:cicY/fQj

$_="P;=N?;MA:LB:M\@;N><HA?3RC4RBFB\@EE>C?5CB>9A?>K;CJ7HI4?69J3<:9J39<9K39<9K3::;J49;?E59<AA59A>?76G8\@";$o='.';
s/(.)/for($i=0;$i<ord($1)-50;$i++){print$o;$l++;}if($o eq'.'){$o='x'}else{$o='.'}if($l>=50){print"\n"; $l=0;$o='.'}/ge;

O RLY ?

17 Name: #!/usr/bin/anonymous : 2006-04-19 02:50 ID:LhmzHl+F

>>35
Yeah I know, I just did it rather quickly. It now seems this thread is turning into a round of Perl Golf... what did I just do D:

18 Name: #!/usr/bin/anonymous : 2006-04-19 04:56 ID:Heaven

>>17
time paradox

19 Name: #!/usr/bin/anonymous : 2006-04-19 05:27 ID:j1nZRbvx

>>16
i think i came

20 Name: #!/usr/bin/anonymous : 2006-04-19 12:07 ID:a9Xnn82k

>>16 is kiddy stuff. It looks like it was written by a BASIC programmer. At least try and make the effort!

$_='@+I/F1D2E0G.B10B5BF2C5?/%32.)1/.D3?8;/&);,*);),)<),)<**+<)+/8),14)1.4&7(0';
s/./((pos)&1?"x":".")x(ord($&)-34)/ge;s/.{50}/$&\n/g;print

That is still way too readable. Anybody want to try and improve it?

21 Name: dmpk2k!hinhT6kz2E : 2006-04-20 00:04 ID:Heaven

NO CARRIER

22 Name: #!/usr/bin/anonymous : 2006-04-20 20:14 ID:MdOKSYEn

>>20 was really just a bit of syntactic obfuscation of a trivial algorithm, and therefore not much fun. Here is something more interesting:

@r=d('<,=@;,>B;,?<<;,<<<;,<<;,C=@:,C=A:,<<<<;<,<<<<:::::,<<<<<::=:,<B'.
'<<::::,<@<<:::<:,<,<,<');@c=d(';,<,=,>,<;,<;,I,I,I,;,,;,<;<,=;=,=;=,'.
';;,;;,;;,<<,<<,;;,,E,E,@,;,;,@,@,?,,:,,>,:,:,=,,<,:::,:::,;:,,:,@,:');
@f=map "." x@c,@r;for(a,b){for(0..$#r){foreach$c(0..$#c){$n=x ((join"",
map{substr$f [$_],$c,1}(0..$#r)),@{$c [$c]});(substr$f[$_],$c,1)=substr
$n,$_,1for(0..$#r);}$f [$_]=x($f[$_],@{$r[$_]});}}printf"$_\n"for@f;sub
x{$f=shift;my$l=length$f;return" "x$l if!@_;return c (grep m/^$f/,map{(
" "x$_).(X x$_[0]).(" "x($l-$_[0]-$_))}(0..$l-$_[0]))if@_==1;my$r+=($_+
1)for@_;$n=shift;return c(grep length$_==$l,map$$_[0].x($$_[2],@_),grep
$$_[0]=~/^$$_[1]/,map[(" " x$_).(X x$n)." ",$f=~/(.{$_}.{$n}.)(.*)/],(0
..$l-$r-1))}sub c{$r=shift;$r=~s/(.)/(substr$_, pos$r, 1)eq$1?$1:'.'/ge
for@_;$r}sub d{map[map ord($_)-57,/./g],split',',$_[0]}

Try to figure out what exactly it is that the code does!

23 Name: #!/usr/bin/anonymous : 2006-04-20 21:03 ID:Heaven

PS: How about a "Coding Challenge #4: Make an obfuscated 4-ch logo", in any language?

24 Name: #!/usr/bin/anonymous : 2006-04-20 21:15 ID:Heaven

My worthless two years of vo-tech education taught me to program in Turbo Pascal, Cobol and RPG IV. I promptly forgot all of them upon graduation. My first (and only) programming job involved Clipper, a DBase IV-based language that I learned by reading the source code and comparing it to what was on the screen.

I wish I'd learned C instead. At least it's useful.

25 Name: #!/usr/bin/anonymous : 2006-04-20 22:34 ID:Uqryt+/p

>>22
The first four lines could almost pass for brainfuck or befunge.

26 Name: #!/usr/bin/anonymous : 2006-04-21 17:07 ID:Z0QwTcw3

>>23

I'm up for that

27 Name: #!/usr/bin/anonymous : 2006-04-22 10:45 ID:Heaven

>>24
Poor baby, they've treated you bad haven't they. (This stated only half-jokingly.)

28 Name: #!/usr/bin/anonymous : 2006-04-26 02:45 ID:XXdYtRmU

THERE'S MORE THAN ONE WAY TO DO IT. That's the motto of Perl and Larry Wall. It has led to a very bloated language over the years. You may find it hard to understand a Perl program you wrote when you come back to it after 6 months, and impossible to follow someone else's Perl program.

Python was designed by professors to make it difficult for their students to introduce bugs into their code. Derived from ABC language as I recall.

Professional programmers say they just enjoy Python.

Euphoria is more obscure, but supposedly simple to learn and powerful.

C/Java/Pascal etc. are lower level than Perl/Python/TCL etc.
You can simply do more in a line of Python than in a line of C or Java. Several studies have proven that. Companies switch to the higher level scripting languages to get projects developed faster. TCL is still dominant there I suppose, but losing ground to Python.

29 Name: dmpk2k!hinhT6kz2E : 2006-04-26 09:13 ID:Heaven

> Python was designed by professors to make it difficult for their students to introduce bugs into their code.

Guido van Rossum was never a professor, and he didn't make the language for students. I also question the part regarding the introduction of bugs.

> Professional programmers say they just enjoy Python.

I must not be professional enough then.

> It has led to a very bloated language over the years.

While Python is nowhere near the same league of syntactic evil as Perl, I must point out that it's also suffering from featuritis. It's not a simple or consistent language, all the kowtowing to the contrary.

30 Name: #!/usr/bin/anonymous : 2006-04-26 14:53 ID:Heaven

Please don't, >>28.

I love Python and all, but Python vs. Perl gets tiring pretty quick.

31 Name: #!/usr/bin/anonymous : 2006-04-28 05:35 ID:XXdYtRmU

yeah, my first google hit says Python's predecessor, ABC, was the one made by the teachers. And Guido worked with them.
http://www.artima.com/intv/pythonP.html

>>>SOME professional programmers enjoy using Python. There will ALWAYS be flamers no matter what opinion you express. And they usually don't bother to mention the parts of your statement that they agree with.

Fixed.

Lua should be mentioned in a discussion of bloat. Its owners resist letting the basic package get over 100KB. You run into nastiness (binds) when you need to call Windows API though.

Euphoria is not as high level as TCL/Python/Perl, but it has the Windows API interface built in, and it has a to-C translator.

>Python vs. Perl gets tiring pretty quick

The original poster was a newb asking why he shouldn't use Perl. I was writing to him, not to old fahrts that tire quickly.

32 Name: #!/usr/bin/anonymous : 2006-04-28 10:27 ID:Heaven

>Lua should be mentioned in a discussion of bloat.

But this isn't.

33 Name: #!/usr/bin/anonymous : 2006-04-28 11:48 ID:XXdYtRmU

>I've decided to learn Perl first. Please tell me why this is a

horrible idea!

Because it's bloated.

>But this isn't.

Yes it is.

34 Name: #!/usr/bin/anonymous : 2006-04-28 18:37 ID:Heaven

> Because it's bloated.

This is an argument against it, because...?

See, strict minimalist languages are not easier for beginners to learn. There's no requirement to learn all of a language when starting out programming in it, and as a matter of fact, there's no need to learn all of it to use it normally either. This is why C++ is so popular despite having a ridiculously huge feature-set: Nobody bothers learning all of it, and the language works just fine even if you ignore most of it.

Have a large and varied feature set does, however, let you pick the parts you are comfortable with using, and focus on those.

35 Name: #!/usr/bin/anonymous : 2006-04-28 23:32 ID:+xU8q+xD

> This is why C++ is so popular despite having a ridiculously huge feature-set: Nobody bothers learning all of it, and the language works just fine even if you ignore most of it.

Except when you want to work with other programmers, and they program in a different island of the language.

36 Name: #!/usr/bin/anonymous : 2006-04-29 00:50 ID:Heaven

>>35

That is only a problem if you are going to work with other programmers, which you probably won't as a hobbyist.

37 Name: dmpk2k!hinhT6kz2E : 2006-04-29 04:52 ID:Heaven

How many hobbyist programmers do not eventually start working with others? It's not just working with others either, but also simply reading the code written by others.

I concur with >>35. Languages with too many doodads are just as unpleasant as those with too few.

38 Name: dmpk2k!hinhT6kz2E : 2006-04-29 04:56 ID:Heaven

I neglected to mention: how often have I used a feature of an overly-complicated language, then come back to the code a month or more later and had no idea what I was looking at?

Far too often for comfort.

39 Name: #!/usr/bin/anonymous : 2006-04-29 05:17 ID:Heaven

>>38
clearly comments are a feature you're not familiar with

40 Name: #!/usr/bin/anonymous : 2006-04-29 08:29 ID:XXdYtRmU

A hobbyist will download sample programs from the internet. I did this with Java. I kept buying books so I could follow the programs. The book stack is almost 3 feet high now. Java Core, Java GUI, Java Swing, Java Beans, Java AWT, Java Kiss My Ass, Java Never Again.

Some language "guardians" learned from that and try to keep their languages small. Lua and FORTH are the best examples I can think of. FORTH founder Moore is an extremist at removing redundancy. He has a complete system: OS, GUI API, apps, etc in less that 1 MB. FORTH is still tricky to learn though. (http://ficl.sourceforge.net/)

A hobbyist can make things easier on himself by choosing one of the languages that are deliberately kept small. Lua is my choice. And I remember something about Pascal and TCL language definitions fitting on 1 or 2 pages. (freepascal.org) Turbo Pascal was fun back in the 80s because it compiled instantly.

But Perl is the opposite of this keep-it-small idea. It can be a real struggle to follow a sample Perl program that I find on Google.

41 Name: dmpk2k!hinhT6kz2E : 2006-04-29 11:52 ID:Heaven

>>39
My, my, what a perceptive comment.

I'd appreciate keeping the jackassery to more appropriate boards.

42 Name: #!/usr/bin/anonymous : 2006-04-29 14:16 ID:+xU8q+xD

>>40
The problem with Lua is that if you want to call C libraries, you have to write tricky C code for the bindings. And personally, I find programming a lot more interesting when I can do graphics and stuff, rather than just little command-line things, which is all you can do with bare Lua.

Perl and Python, while they are big languages, don't have this drawback because their popularity has led to a lot of bindings and things already being written, but with Lua, if any binding exists, it's probably a barely usable version 0.2 that doesn't even support the latest version of the language.

43 Name: #!/usr/bin/anonymous : 2006-04-29 19:02 ID:Heaven

> FORTH is still tricky to learn though.

So, uh, your point was...?

44 Name: #!/usr/bin/anonymous : 2006-04-30 03:41 ID:bsf8I0Uz

When you fail to learn Perl you can blame the syntax. When you fail to learn FORTH you can't, because there is no syntax.

45 Name: dmpk2k!hinhT6kz2E : 2006-04-30 07:43 ID:Heaven

Learning to use a language involves more than just the syntax though. If it was just syntax, we'd all be using infinite tapes and states (or functional Lisp), since that's as simple as we can get.

Perl crams a lot of ability into the syntax, so you can do certain things very simply. Forth goes the other direction, so while the syntax is dirt simple, doing anything is harder. Imagine implementing regular expressions in Forth. Yech.

46 Name: #!/usr/bin/anonymous : 2006-04-30 10:25 ID:XXdYtRmU

Which language do you all most ENJOY using [and why]?

Maybe that's the best approach since the original poster
seems to be a hobbyist.

For me it's Python since 1) it's a pretty complete package with all the documents and libs I need, and 2) I follow it easily. I don't think I've ever gotten stuck on anything for more than 2 minutes. I can't say that about anything else I've tried.

But I can see where some people might prefer to invest in Perl's learning curve to receive the POWER of the syntax.

And FORTH reminds me of LOGO: just enough commands to do something interesting. I can see the appeal of a language+library so small that you can keep it all in your head and never re-read the manual. Yes it's more coding work, but you don't get diverted for 2 or 3 days tracking down a man page for some odd function. At least not often. That ain't fun.

So, which one is your fav? And, which one is next on your list to try?

47 Name: #!/usr/bin/anonymous : 2006-04-30 14:06 ID:Heaven

For me, C. Yes, the thing is low-level and easy to screw up, but I like how WYSIWYG it all is. If your program is doing something wrong, you know it's not because of some bizarre automagical language feature, it's because you screwed up. And it's the language I have the most experience with.

"Scripting" oriented languages like Perl and Python mystify me with their implicit references, shallow vs. deep copying, automagic conversion of integers to strings and so on. There's just too much hidden stuff going on that I have no idea what my program is really doing. It may seem to work, but I don't know if it always will.

48 Name: #!/usr/bin/anonymous : 2006-05-01 08:42 ID:XXdYtRmU

>For me, C.

A tip for the C beginner: pointers will kill you with bugs you can't trace. Avoid them if you can.

49 Name: #!/usr/bin/anonymous : 2006-05-01 21:47 ID:Heaven

         ∧_∧   ┌──────────────
       ◯( ´∀` )◯ < I like C-chan!
        \    /  └──────────────
       _/ __ \_
      (_/   \_)
           lll

50 Name: #!/usr/bin/anonymous : 2006-05-01 21:50 ID:Heaven

    ∧ ∧___  what
   /(*゚ー゚) /\
 /| ̄∪∪ ̄|\/
   |        |/
     ̄ ̄ ̄ ̄

51 Name: #!/usr/bin/anonymous : 2006-05-01 22:14 ID:bsf8I0Uz

   ____∧∧  / ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄
 ~' ____(,,゚Д゚)< Go and die!
   UU    U U   \________

52 Name: #!/usr/bin/anonymous : 2006-05-01 23:45 ID:cicY/fQj

i prefer perl (and scripting high level languages in general) because :

  • you don't need pointers
  • you don't have to write loads of lines just to have unlimited-size array or a chained list
  • internal regex engine
  • and so on

after all of that i'm learning C and Java because :

  • there are situation where you HAVE TO code in low level (pure algo, games etc...)

as for objects... Java owns C++

53 Name: dmpk2k!hinhT6kz2E : 2006-05-02 00:54 ID:Heaven

Ruby and C.

Ruby because it contains what I like about both Perl and Python, without most of the fail. Someone stated that "Ruby is Perl's prettier sister", and it's true despite some of Ruby's glaring weaknesses.

C because it's a portable assembler with a beautiful syntax. I write a lot of performance code that's both time and space constrained, and it just wouldn't be possible without C.

You may notice two things in common between C and Ruby as well: they're both terse and fairly consistent.

54 Name: zacki : 2006-05-02 11:54 ID:Vug+pB0Q

I prefer C... and there's one reason C is more usable than Perl...

Perl is a scripting language. If you are going to sell any software or try to get other compuuters to implement any of your scripts, you have to set up the Java environment on them. In addition, while Perl is awesome for making one's own code, it doesn't help when making code for anyone else in the world, because you can never hide the source code.

C is also better for it's ability to affect the OS. If you're a skilled programmer, you will find that you need such code.

55 Name: #!/usr/bin/anonymous : 2006-05-02 12:08 ID:XXdYtRmU

TCL when I already have C programs that do most of the stuff I need. TCL has a simple argv string interface to C routines. I can add that to old C programs quickly, then write TCL code to tie the C programs together, passing data between them and displaying it on a GUI with Tk. And with Expect, I often don't even have to recompile the old C programs; just use their existing stdin and stdout. Prototyping is easier this way instead of adding new C code since TCL is high-level script and interpreted instead of compiled.

56 Name: #!/usr/bin/anonymous : 2006-05-02 12:38 ID:Heaven

Java owns nobody. Java is an mediocre language for mediocre programmers to write mediocre code in. Java is not horrible, but neither is Java actually good at anything. It is merely average.

57 Name: #!/usr/bin/anonymous : 2006-05-02 12:58 ID:cicY/fQj

>>56

maybe that's the reason why it is used by every company to do they business solutions and planning programs as well as web interfaces

58 Name: #!/usr/bin/anonymous : 2006-05-02 13:42 ID:Heaven

>>57
Actually, the reason for that is "marketing."

59 Name: #!/usr/bin/anonymous : 2006-05-02 13:48 ID:XXdYtRmU

Companies pick Java because it has a lot of support from Sun and other companies. The others (perl, python, etc.) come from individuals. There's no hotline to call for answers like you can get with Java. And the product's reliability is in doubt when there's no big corporate backer. Companies just like to deal with other companies.

Anyhow, we had a few good posts where people named their favorites and good reasons for them. I'd like to see more of those; I might learn something. I already moved Ruby higher on my list of things to do. If that poster can recommend a download package with eveything (docs, libs, interpreter, debugger, etc), I'd like to see it.

60 Name: #!/usr/bin/anonymous : 2006-05-02 17:10 ID:MdOKSYEn

>>57

Right, "business solutions" is the very definition of mediocre code written by mediocre programmers.

61 Name: dmpk2k!hinhT6kz2E : 2006-05-02 22:26 ID:Heaven

> If that poster can recommend a download package with eveything (docs, libs, interpreter, debugger, etc),

For windows, I'd recommend this: http://rubyinstaller.rubyforge.org/wiki/wiki.pl. Stick to the SciTE editor.

If you're using some form of *nix, you'll have to install it all in individual pieces.

62 Name: #!/usr/bin/anonymous : 2006-05-03 08:40 ID:VGLDydKc

is ruby really fucking slow compared to perl or are portupgrade and pkgdb just really poorly written? those are the only things written in ruby that i use often and both seem incredibly slow for what they do...

63 Name: #!/usr/bin/anonymous : 2006-05-03 11:21 ID:bsf8I0Uz

>>62
it is
ruby doesn't have a bytecode compiler yet

64 Name: #!/usr/bin/anonymous : 2006-05-06 14:44 ID:MGhtjr14

Just started with ruby myself, and while the documentation is haphazard at best, with one of the wierdest introductions you may ever see (http://poignantguide.net/ruby/), but on the other hand it's by far my favourite new language.

Also check out the ruby plug-ins for eclipse if you like the IDE vibe

65 Name: dmpk2k!hinhT6kz2E : 2006-05-07 00:16 ID:Heaven

Of the available guides out there (Pickaxe, Poignant, and Matz's), I like Matz's the most. Just the facts, ma'am: http://www.ruby-doc.org/docs/UsersGuide/rg/

66 Name: #!/usr/bin/anonymous : 2006-05-14 07:06 ID:t1LAVq4U

doijwqndciw

67 Name: #!/usr/bin/anonymous : 2006-05-14 21:08 ID:Heaven

>>66
is that perl code?
i think you left out a few @'s

68 Name: #!/usr/bin/anonymous : 2006-05-22 13:23 ID:ECn8kraI

>>63
It's been this way for what, four years now? When are they going to actually do a bytecode interpreter?

Or is it simpler to just, you know, fuck about with the parse trees and stick with reference-counted memory management, like the assholes with perl and python?

69 Name: dmpk2k!hinhT6kz2E : 2006-05-22 14:28 ID:Heaven

http://www.atdot.net/yarv/

Ruby 2.0 probably isn't coming any time soon.

70 Name: #!/usr/bin/anonymous : 2006-05-22 14:49 ID:Heaven

>>69

> You need Ruby command to build YARV :)

sounds like it'll probably take a few years just to build it...

71 Name: dmpk2k!hinhT6kz2E : 2006-05-23 04:59 ID:Heaven

Most of YARV is in C. The only bit Ruby seems involved in is generating the Makefile.

72 Name: #!/usr/bin/anonymous : 2006-05-29 17:27 ID:F8+8WHt0

I like PHP, because I enjoy making little web doodads. And it seems to be pretty damn easy to do just about anything in PHP.

73 Name: #!/usr/bin/anonymous : 2006-05-29 17:33 ID:Heaven

Including shooting yourself in the foot.

74 Name: Albright!LC/IWhc3yc : 2006-05-29 18:02 ID:Heaven

Silly >>72! Don't you know that any mention of PHP on this board is met with replies of ill-conceived panic and h8orade?

75 Name: #!/usr/bin/anonymous : 2006-05-29 18:24 ID:F8+8WHt0

>>74

; (

I wouldn't mind hearing well-thought-out h8 at PHP

76 Name: #!/usr/bin/anonymous : 2006-05-29 19:03 ID:Heaven

>>75
See the "PHP users are dumb" thread. I guess PHP is okay for "little web doodads", though.

77 Name: #!/usr/bin/anonymous : 2006-05-29 19:28 ID:F8+8WHt0

>>76

My, that was enlightening. Thanks for bringing that to my attention. I was unaware of the securitiy risks and such.

I've never written anything big in PHP, though. I do bigger things in Python.

78 Name: #!/usr/bin/anonymous : 2006-05-30 13:17 ID:Heaven

>>74

I am sorry that we don't give you the common courtesy of blinding ourselves to your favourite language's glaring flaws.

This thread has been closed. You cannot post in this thread any longer.