Berkeley CSUA MOTD:Entry 12439
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/03 [General] UID:1000 Activity:popular
4/3     

2004/2/27-29 [Computer/SW/Languages/Misc, Computer/SW/Languages/Perl] UID:12439 Activity:high
2/27    In perl, say I have a @list of strings, how do I print the first
        character of those stings, concatinated? For example, if @list is
        ['hello','world',123], I want an output of hw1. I can do a loop,
        substr, and the .= operator, but it looks lame...
        \_ what's wrong with just doing what works?
        \_ TMTOWTDIT, but foreach $item (@array) { print substr($item,0,1) }
           is one way. -tom
           \_ map { print substr($_,0,1) } @array
              or
              $output = map { substr($_,0,1) } @array
              \_ The latter doesn't work, because it calls map in scalar
                 context; you need $output = join "", map { substr($_,0,1) }
                 @array.
              \_ (dolist (i array)(print (char i 0))) -- ilyas
                 \_ gee you're clever.
                    \_ Array.map (fun x -> print_char x.[0]) array
                       p([[X|_]|Y]):-print(X),p(Y).
                       Incidentally, I know of multiple cases where a Perl
                       programmer benefitted from seeing a solution in another
                       language.  But I respect your anonymous snide remark
                       anyways. -- ilyas
                       \_ Because we all know that anyone posting anonymously
                          is also less intelligent and has invalid points.  I
                          post anonymously to cloak my inferiority to you and
                          others who are so smart because you sign your names.
                          Really, it's just jealousy.  Anonymity is a form of
                          envy.  I think I'll start signing all my posts so I
                          envy.  I think I'll start signing all my posts so I
                       anyways. -- ilyas
                          can be just as smart and well likde as you!
                          can be just as smart and well liked as you!  -- ilyas
                          \_ you're pathetic. -intelligent, valid anonymous guy
              \_ wow I can't believe how many ways there are to do this.
                 Here is the ultimate question. After parsing, internal
                 representation, and optimization in Perl, which one of the
                 above gives you the quickest runtime?
                 \_ Depends on the size of your array.  Generally map is faster
                    as length @array gets larger.
                     \_ what are you implying, that the function "foreach"
                        expands the representations in memory (extra malloc
                        maybe?) and then goes through the elements? For
                        example "foreach $a (1..10000)" does an expansion,
                        and that "foreach $a list" does the same thing?
                        \_ I'm not implying anything.  Everything I say is
                           emperical experience.  I leave the internals as
                           an exercise to the reader.
        \_ That's all bullshit.
           array.each {|i| print i[0].chr}
           \_ Prolog is shorter:
              p([[X|_]|Y]):-print(X),p(Y). -- ilyas
              \_ I'm not convinced that's really shorter. How is that used? I
                 don't know much about Prolog. Given a list called "Array",
                 how do you print it?
                 \_ p(Array). -- ilyas
                    \_ As I suspected. So it ain't shorter!
                       \_ In some sense, 'array' in your code and
                          '[[X|_]|Y]' in mine are equivalent.  Both are
                          internal variable names for some data.  What you were
                          asking me to do is something else, namely provide
                          a function call wrapper to the code, which isn't what
                          your code does.  I think the original stands as an
                          equivalent to yours. -- ilyas
                          \_ In some sense, that code and your code are
                             given the same input.  You rule!
                             equivalent because they produce the same output
                             given the same input.  You rule!  -- ilyas
                                \_ Well I could say
                                   [].each{|i|putc i[0].chr}
                          \_ Given an array "array", it prints the characters.
                             It's a function call. No? (It's ruby, for anyone
                             who doesn't know...)
                             \_ Given an array "[[X|_]|Y]", it prints the
                                characters.  Prolog names can have structure
                                built in.  -- ilyas
                                      \_ cool. btw i shortened it again.
           array.each {|i| print i[0].chr}
                                built in.  -- ilyas
                                \_ Well I could say
                                   [].each{|i|putc i[0]}
                                   [].map{|i|putc i[0]}
                                   Is that longer than Prolog? I'm no ruby
                                   expert so I'm not sure if there's anything
                                   better there.
                                   \_ Yup, you win.  You can look here for more
                                      examples me, dbushong and some others
                                      came up with:
                                      http://www.bushong.net/david/comparisons
                                      \_ cool. btw i shortened it again.
                                         \_ you rock!  -- ilyas
                                        -- ilyas
                                      \_ cool. btw i shortened it again(2)
2025/04/03 [General] UID:1000 Activity:popular
4/3     

You may also be interested in these entries...
2004/5/20-21 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages/OCAML] UID:30334 Activity:insanely high
5/20    I have seen some ocaml comments on the motd.  What about Haskell?
        Is it better/worse/about the same?  I know it is supposed to "pure"
        but don't know what this translates to in reality.
        \_ Haskell is the only language I want to know something about, yet
           know almost nothing about.  I know it's not speedy, unlike ocaml,
           but has lots of clean ideas, and you can write really short code in
	...
2004/5/15-17 [Computer/SW/Languages/Functional, Computer/SW/OS/OsX] UID:30245 Activity:moderate
5/15    I'd like to start doing AI programming again. What is a good,
        free common lisp distribution? I am using Max OS X. -tia
        \_ cmucl.  The sbcl fork runs on Darwin. -- ilyas
           \_ sbcl forked some time ago and is not really the same as cmucl
              anymore.  Franz's Allegro (originated from CS dept at Cal) is
              either free or costs a fortune, depending on the license.  Also
	...
2004/5/11-12 [Computer/SW/Languages/OCAML, Computer/SW/Languages/Functional] UID:30169 Activity:very high
5/11    To FP activists on the motd, if currying is such a great idea, why
        it's not implemented symmetrically in say Caml?  It seems more
        natural to treat the arguments of a function more symmetrically.
        \_ If by 'symmetric' you mean that if, for example, I have a function
           f of two arguments a and b, I should be able to curry on either
           a or b, then Ocaml does this using labeled arguments.  Caml does
	...
2004/4/27 [Computer/SW/Languages/Misc] UID:13398 Activity:nil
4/26    Is there a *nix program that allows one to define arbitrary object
        with connections between them, not for oop but just for arbitrary
        graphs?  Visual representation would be nice but is not the most
        important factor for me.  I would like to be able to specify the
        objects and relationships textually rather than graphically.
        \_ Prolog.  In fact, it will do more than what you want.  It is not
	...
2004/4/16-17 [Computer/SW/Languages/Functional] UID:13234 Activity:high
4/16    So, here's a question.  I'm learning Python, and it seems to me that it
        includes a lot of the power of Scheme or Lips, with out the wierdness.
        Would Python make a better introduction to CS language than Scheme?
        \_ Dunno, why don't you just ask Ping, he taught a 61A style course
           in python at Cal.  He claims it was good.  I still haven't yet
           found a good dollar Return on Investment for the time I spent
	...
2001/4/9-10 [Computer/SW/Languages/Perl, Computer/SW/Languages/Python] UID:20925 Activity:very high
4/9     Does anyone here use the Python language on a regular basis?  What do
        you use it for?  What is your opinion of it as a language?
        \_ ML >> Perl >> Python.
           \_ Tcl >> ML >> ... >> PHP
                \_ I've seen Python, PHP, Perl, and TCL.  3 of 4 are crap.
                   Got a link for ML?  I can decide for myself.
	...
2001/3/14-16 [Computer/SW/Languages/Perl] UID:20774 Activity:moderate
3/13    does anyone happen to know when/where the python infosession
        will be on thursday?  thank you.
        \_ Perl >> python
           \_ ML >> Perl >> python
              \_ ML >> prolog >> Perl >> python
              \_ yermom >> ML >> Perl >> python >> ilyasmom
	...
2000/8/22-23 [Computer/SW/Languages/Functional, Computer/SW/Languages/Java] UID:19058 Activity:high 62%like:19071
8/21    Wanna teach programming language to my cousin (10 year old). Should
        I teach LISP or Java first? Also, is it advisable to teach more than
        one language at a time?
        \_ http://www.toontalk.com  -mogul
        \_ Get a Mac, have 'em try HyperCard. When they get bored with that,
           Pascal. I tried this, and it was fun -brg
	...
2000/6/21-22 [Computer/SW/Languages/C_Cplusplus] UID:18506 Activity:very high
6/20    I have a variable inside a struct.  I want to be able to initialize
        that variable ONCE and not write to it again.  Any subsequent writes
        should not be permitted.  Is there a way to do that in C?  I know
        about "const int foo = 5;" but the value I need to pass in is dynamic
        and happens at runtime.  Declaring a variable as const doesn't let
        me assign anything to it at all.  Thanks.
	...