[tags]startups[/tags] A friend of mine directed me to Why to Not Not Start a Startup:
Read full post
[tags]startups[/tags] A friend of mine directed me to Why to Not Not Start a Startup:
Read full post
Like a good second generation Desi I saw The Namesake after recently completing the novel. Both are very good and I recommend reading the book and watching the movie, although not necessarily in that order.
The following should not spoil the movie much, but are some criticisms that Katie and I had.
The movie however, was very good overall. The book is much better, as books tend to be, because they convey things that movies cannot. It really struck a chord with me, making me want to be with my family more, and reflect on my life (albeit my life is not nearly as bittersweet as Gogol’s).
Read full post
[tags]best practices, php[/tags]
Read full post
[tags]programmers, hiring[/tags]
Read full post
[tags]best practices,php,openID[/tags] [PHP]: http://php.net/ [openID]: http://openid.net/ [reviewsby.us]: http://reviewsby.us/ [symfony]: http://www.symfony-project.com/
Read full post
[tags]MarsEdit,software,blogs[/tags]
I recently read about the acquisition of MarsEdit by Red Sweater Software so I decided to check it out. I’m quite glad I did it does make my workflow a lot easier. What I had been doing up until today was this:
It was easy to drop my blogging habbit ;)
Now, I can do this:
The one slight problem I have is I use a tags feature of wordpress in addition to categories (not sure why I don’t just use categories, but that’s another story), currently there’s no easy way to deal with WordPress plugins’ custom fields that I know of. So there’s an optional 5th step of examining the post on the site and possibly adding tags.
Still, these 4 steps are easy and all done from one app. It also features a preview of your post that you can customize per blog with a custom HTML template. Which makes it easy to just drop your blog’s style sheet and see if your post looks right.
Definitely looks like a keeepr!
Read full post
So I have a small bone to pick with Jacob Nielsen and his opinion on within-page links or anchor links.1 There clearly is a benefit to not just linking to a specific page, but linking to a specific part of a page.
With a little help from script.aculo.us we can spice up our anchor links by highlighting them as well as linking to them.
For this article we’ll limit our scope to internal anchors only.2 We’ll write the code using the symfony framework and in straight up XHTML. This is really dirt simple and is more of a design pattern with an example than a tutorial.
Let’s do the XHTML first:
Yup, that’s it… I told you it was dirt simple. You just need to include the proper prototype and script.aculo.us libraries.
In symfony we avoid repeating ourselves with a helper function:
and call it by doing:
That’s it.