minivishnu family owned and operated since 1873 ?
this is mostly rambling, courtesy of dolapo falola. i can tell you about the domain name sometime... over a beer... if you want.

A lot of these are just multisyllabic, and as dbentley says: Though I’m not sure I love this “discussing rap in uber-white guy speak” meme. Anyway, still with the entertaining.

Contrary to the name and marketing shtick, there is no evidence that even one brother named “Einstein” has ever been involved with the chain. Einstein Bros was created by a chain restaurant corporation, Boston Chicken (now Boston Market) in 1995, as a way to market breakfast foods. The chain is now owned by Einstein and Noah Corp., a wholly owned subsidiary of Einstein Noah Restaurant Group, Inc., previously known as New World Restaurant Group, which also owns Noah’s Bagels, Manhattan Bagel, Chesapeake Bagel Bakery, Willoughby’s Coffee & Tea, and New World Coffee.

because there’s nothing quite as hardy har as other people’s chatlogs…

dolapo: have you considered that we could use this technology to build the ultimate porn sniffing device?

dolapo: s/could/should/

zack: i don’t like the words ‘porn’ and ‘sniffing’ together

shellen: the chrome extension?

ben: i’m not interested in your scented pornography

ztaylor:

(via rickyv)

aww

I’m feeling pretty good about the debugability of what I’m working on at work right now. A combo of

  • python. code.interact and pdb for the win.
  • no frontend server state. er, excessive memcachery.
  • some quality abstractions. back pat, back pat.

means I can just hop on a prod box and just debug away in python.

(via codeshal)

Disappointed that I didn’t know or notice this until now.

guillee:

I’m done: Star Wars opening crawl, using only HTML & CSS. Caveats: It only works in Snow Leopard in Safari 4.0.4 and the WebKit nightly. Nothing else supports the CSS 3D transforms and animations I used, but I just wanted to see if it could be done.

Yes yes, I know, I haven’t seen the full hexalogy but still groovy

I hate code cruft. The remnants of code that might have been used at some point but are no longer in operation. It’s not just some weird OCD thing, the maintenance pain is quite real. As are the effects on development time. For many languages you can use static analysis tools to detect and remove unused code, but not for you Mr CSS. Maintaining CSS is the opposite of awesome.
For any random CSS rule, it’s too difficult to determine where the rule is being used or what depends on it. You see, you tend to use css classes to either annotate nodes or style them. You refer to css anywhere you generate or reference html. For web applications this means you end up referencing CSS classes in:

  • Server side code that generates static html. These references likely live in whatever templates your framework uses. Or maybe you’re generating html by hand.
  • Javascript. The terrible place. Maybe you’re using some javascript templating system, maybe you’re creating DOM nodes by hand. Maybe you’re doing both. You’re probably also manipulating nodes to change CSS classes dynamically.


The sum is that you’ve got references to class names and parts of selectors all over the place with no good way to tie the relationships together. A quickie solution is to name selectors so you can at least ack your source tree for references to them or parents. For whatever reason, this doesn’t really work in practice… so here I am grepping for ‘title’. Maybe it’s in some ${”) somewhere. Most likely it’s not.

You should know that there’s a pretty decent solution that some Google projects use internally. It requires a certain amount of discipline but gives back quite a bit in return. Someone should open source this. *cough