October 2011
6 posts
1 tag
Start-up Metrics that Matter by Dave McClure
Start-up Metrics that Matter by Dave McClure from Carsonified on Vimeo.
Startup Metrics for Pirates / KILL a Feature (FOWA London, Oct 2009) View more presentations from Dave McClure
1 tag
Startup Metrics for Pirates Slides
Startup Metrics for Pirates View more presentations from Dave McClure
1 tag
1 tag
Rails 3 + Arel: Left outer join with table...
It wasn’t until I read an article by Ernie Miller on MetaWhere, that I found out the lies that “.to_sql” has been putting me up with. Apparently, “.to_sql” doesn’t show you everything under the hood. For example:
Task.includes(:creator).where(“users.username LIKE ‘%manager%’”).to_sql # Outputs “SELECT `tasks`.* FROM `tasks` WHERE...
1 tag
STARTUP 101:
1) Identify a pain point caused by a market trend
2) Create a...
– Profitguide.com on The Lean Growth Machine
Rails 3 + Arel: Left outer join with table...
I recently stumble upon a situation that surprised me while developing a feature for users to create, assign and manage tasks. Here’s the background: A User model and a Task model that consists of both a creator_id using delynn’s Userstamp gem to refer to the user who created the task and a user_assigned_id that refers to the user that was assigned the task.
Like any other...