mrfabbri's comments

mrfabbri | 11 years ago | on: Lisp in Small Pieces: Table of Contents and Code

1750 lines of fascinating C [encompassing an garbage collector and user-level implementations of user-defined types and structures, single-dispatch object-oriented "messaging", and generic "multimethods"]

mrfabbri | 15 years ago | on: Vivek Wadha: "You learn little by writing code."

Yep, you learn little by "writing code", you learn a lot by developing an ass kicking product/service in a very constrained environment, working with great people and pushing yourself to the limit. It's about the people, the [human] experience not just the code.

mrfabbri | 15 years ago | on: Essential JavaScript design patterns

The code above doesn't provide a Singleton implementation, you can test it by using the expression mySingleton() == mySingleton() which should evaluate to true, while it evaluates to false. The problem is that the function returns an object literal but every time the function is called it creates a new one (i.e. {} == {} evaluates to false). You can find a sound definition of a Singleton in JavaScript which makes use of the (quite tricky) Lazy Function Definition here: http://stackoverflow.com/questions/1895635/javascript-single... . EDIT: Took a deeper look at the "book" and the singleton section and I think it somewhat misuses the term Singleton (or it uses in a "broad" sense): the example you reported provides some information hiding but no single instantiation restriction, which it is instead provided by the final example/iteration.

mrfabbri | 15 years ago | on: Ask HN: What software do you use for your startup?

- E-mail/calendar/docs: Google Apps standard edition

- Hosting: DreamHost

- Analytics: Google Analytics

- Project management: Email (lots of), Google Spreadsheets

- File-sharing: WebDAV, Dropbox

- Version control: Mercurial

- Backups: rsync

- Istant messaging: GTalk, Skype

mrfabbri | 15 years ago | on: Apple Magic Trackpad

This mirrors my macbook setup [which I enjoy pretty much] with the external monitor: [mouse][keyobard][macbook trackpad] :-)

mrfabbri | 16 years ago | on: Google Buzz

Accessing http://m.google.com/app/buzz from an iPhone works whether or not you see the buzz label in gmail. You can use Firefox with the "User-Agent Switcher" add-on set on iPhone to try it out.
page 1