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

2004/9/9-10 [Computer/SW/Languages/OCAML, Computer/SW/Languages/Perl] UID:33448 Activity:high
9/9     Why are there so much politics on the motd? Isn't this the
        CSUA? Doesn't the C stands for something computer??
        \_ Its stands for Computer Stuff and Unrelated Arguing
           \_ Golf clap.
              \_ I didn't know there even was such a thing as a golf ho,
                 and you're telling me they've got their own VD's?
        \_ Yeah, let's talk about computer, or girls!!
        \_ When someone says something stupid, I feel I must succinctly show
           them the error of their ways, or at least show other reasonable
           people.  Oh well, I'll just let stupid people keep thinking that
           way.
        \_ The CSUA as an organization doesn't manage or have anything to do
           with the contents of motd.public. Politics get discussed so often
           because it's one of those things that never ends. You never finish
           the argument. And unlike more esoteric subjects for debate,
           politics is something that anybody and everybody feels qualified to
           participate in. Politics is always in the news. Other things show
           up on motd many times but nothing more than politics. Or Perl.
           \_ Hey, I would talk about programming languages, but not a lot
              of people care.  P.S. Perl is morally wrong. -- ilyas
                               \_ Methinks he doth protest too much.  --dbushong
                                  \_ SILENCE, SINNER!
                               \_ what do you think of ocaml?
                                  \_ Ocaml is a language built around a type
                                     inference system, and I think that's like
                                     the tail wagging the dog.  The bar for
                                     languages is set so low that if people
                                     see something with lambdas that's fast
                                     they get excited.  It shouldn't be that
                                     way. -- ilyas
                                     \_ Have you ever looked over Java?  I've
                                        generally found the structure of the
                                        language really presents itself for
                                        large SE projects.  The string
                                        manipulation elements built directly
                                        into the language are pretty awesome
                                        also -- they really cut down on the
                                        dev cycle, I've found.
        \_ Pontification is preferable to work.
        \_ it wasn't like this from 1980s till the late 90s, when the
           failed jobless laid-off dotcomers got bitter and started to rant.
           \_ Obviously someone who doesn't remember the bitterness of
              joblessness of the early 90s...
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2008/7/28-8/5 [Computer/SW/Languages/Python, Computer/SW/Languages/Functional, Computer/SW/Languages/OCAML] UID:50704 Activity:nil
7/28    So, I'd like to try playing with a functional language.  Any
        recommendations?
        \_ Haskel.  Why would you start with anything else?
        \_ Haskell if you want a _functional_ language.  Ocaml if you want to
           see what a proper language implementation looks like.  LISP if
           you want old fogies to think you are cool. -- ilyas
	...
2005/7/15-18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages/Java] UID:38653 Activity:moderate
7/15    Is it possible through JNI to write a function which takes a float[]
        array and through the magic of c casts it to an int array and then
        returns the int array to Java, not modifying the actual data?
        If not, is there a good Java way to do the C equivalent of:
        int* i = (int*) f; ?
        Don't ask whether I really need to be doing this because there is a
	...
2005/6/21-23 [Computer/SW/Languages/Perl] UID:38230 Activity:high
6/21    My math and/or perl fu is weak. Is there a way to get integer
        multiplication in Perl the way it's done in C? i.e. limiting
        to 32 bits. Like 1588635697 * 1117695901 = 1166976269 in C.
        \_ Can't you just multiply and then mask all but the last 32 bits?
           \_ I don't think so; that's not the same as mult overflow.
              > perl -e 'print (1588635697 * 1117695901)'
	...
2004/7/1-2 [Computer/SW/Unix] UID:31106 Activity:insanely high
7/1     Using sed, how do I do the following?  I want to replace the
        first line containing a particular pattern with the 2nd line
        containing said pattern.  For example, if "line" is the pattern,
        then I want
                this is the 1st line
                this is the 2nd
	...
2004/6/25-26 [Computer/SW/Languages/Java] UID:31013 Activity:insanely high
6/25    What percent of security holes would be solved by banning strcpy()
        in favor of strncpy()?
        \_ probably not much, since they're all coming to be php bugs these
           days.
        \_ Or using Java instead of C (no buffer overrun)?
                \_ It is not always possible to use java. I have customers
	...
2004/5/21-22 [Computer/SW/Compilers] UID:30345 Activity:very high
5/21    I was not a CS major and never took the compiler class.  What is
        a good book to help me write a compiler?  And what about interpreter?
        Do they basically involve the same issues except code generation and
        optimization?
        \_ Use the book by Robert Mak, called "Writing Interpreters and
           Compilers in C++." It's a practical, hands-on "lab" type book which
	...
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/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/30-5/1 [Computer/SW/Compilers, Computer/SW/Languages/C_Cplusplus] UID:13508 Activity:moderate
4/30    Quick C++ question. In Meyer's More Effective C++, Item 22, he has
        a snippet of code like this:
        template<class T>
        const T operator+(const T& lhs, const T& rhs)
        {
          return T(lhs) += rhs;
	...
2004/3/3-5 [Computer/SW/Languages/Functional] UID:12505 Activity:nil
3/3     I feel like messing with Scheme. I forgot all my CS61A. Do we have
        a scheme program here, and how do I run it?
        \_ type 'scm'
           \_ thanks.
        \_ if you want to dabble in common lisp, you can download an
           evaluation version at http://www.franz.com
	...