Slashdot Mirror


User: c618656fa053510d1984

c618656fa053510d1984's activity in the archive.

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

Comments · 2

  1. Re:Economic forces on Competition In the Free Textbook Market · · Score: 2, Insightful

    Why? I don't understand this. Does it matter from which book you learn a subject? I'm studying CS in Germany, and while I have bought some textbooks, I never *needed* to. You can get by with the library, the lecture slides, your own notes, and looking stuff up on the internet. The professors tend to hand out exercise sheets or put them on their website, so you don't depend on textbooks for that either. What makes the situation in the US so different?

  2. Re:Ruby on Rails May Not Suck · · Score: 1

    No, it isn't a special case.

    sub foobar(&) { my $f = shift; $f->(); }
    foobar { print "Hello World!"; };