gnufs's comments

gnufs | 12 years ago | on: The Feynman Lectures on Physics, Volume III

"download in secure PDF format" (from the ebooks.com page linked from feynmanlectures.info/docroot/buy)

Is this some sort of DRM'ed format that's not readable on non-Adobe supported systems?

And, if it is, is there a way to buy a non-DRM version?

gnufs | 13 years ago | on: Rob Pike: the origin of dotfiles

I am using a manually created /data partition as my personal space. Many dotfiles and 'dotdirectories' are distro+release specific. With having all my personal data in a separate partition makes switching distros (or using multiple ones) a breeze as I start with all my data intact and a virgin /home which I can populate with my dotfiles as I see fit.

gnufs | 13 years ago | on: The "bat signal" for the Internet

I wish it stated whether it's a US-centric initiative or not. And, if it's not, I wish it registered the country of the subscriber.

gnufs | 14 years ago | on: An Emacs conference

Please make sure to have reasonably high quality a/v records of the presentations.

gnufs | 14 years ago | on: Mocked And Misunderstood

At the end of the linked MSNBC video, the reporter (Kate Snow) is arguing that nobody is policing the pledged projects and that she could theoretically "go on there and say I'm gonna raise money to make a record album and then get all the money. And, if I never make a record album, nobody knows any different."

Is that really so with Kickstarter?

gnufs | 14 years ago | on: Ask HN: Book of the year

Since there's no limit on the publication date, "The Conquest of Gaul" by Caesar was a great read for me to do during my daily commute.

gnufs | 14 years ago | on: Learning Perl 6th Edition available

From the Preface:

P.6. Changes from the Previous Edition

The text is updated for the latest version, Perl 5.14, and some of the code only works with that version. We note in the text when we are talking about a Perl 5.14 feature, and we mark those code sections with a special use statement that ensures you’re using the right version:

  use 5.014; # this script requires Perl 5.14 or greater
If you don’t see that use 5.014 in a code example (or a similar statement with a different version), it should work all the way back to Perl 5.8. To see which version of Perl you have, try the -v command-line switch:

  $ perl -v
Here’s some of the new features from Perl 5.14 that we cover, and where appropriate, we still show you the old ways of doing the same thing:

* We include Unicode examples and features where appropriate. If you haven’t started playing with Unicode, we include a primer in Appendix C. You have to bite the bullet sometime, so it might as well be now. You’ll see Unicode throughout the book, most notably in the chapters on Scalars (Chapter 2), Input/Output (Chapter 5), and Sorting (Chapter 14).

* There is more information in the regular expression chapters, covering the new features from Perl 5.14 to deal with Unicode case-folding. The regular expression operators have new /a, /u, and /l switches. We now cover matching by Unicode properties with the \p{} and \P{} regular expression features.

* Perl 5.14 adds a nondestructive substitution operator (Chapter 9), which turns out to be really handy.

* Smart matching and given-when has mutated a bit since their introduction in Perl 5.10, so we update Chapter 15 to cover the new rules.

* We updated and expanded Perl Modules (Chapter 11) to include the latest news, including the zero-conf cpanm tool. We add some more module examples as well.

* Some of the items previously in Appendix B, the advanced-but-not-demonstrated features, move into the main text. Notably, that includes the fat arrow => moving into Hashes (Chapter 6) and splice moving into Lists and Arrays (Chapter 3).

page 1