Embarrassing Flaws That Made My ‘Weekend’ App Possible
51–60 of 69 posts
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#52Earlier quoted context omitted.
Personally, I keep a timesheet on when I started and finished working on something, for instance Tue 19/10/2010 | 15:40:00 | 17:10:06 | 1:30:06 | Looking at admin interface for sensor daetails. Trying to fix None issue, seems to be related to subclassed models. Adding code to twisted for CT settings Turns out that one of my Django models is breaking the Django admin interface, and also that I have to have calibration…
Do you find that it helps? The closest thing I got that looks like what you got above there are my git log messages!
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#53Nice writeup. Did you consider using Google's Prediction API before rolling your own recommendation system? http://code.google.com/apis/predict/
http://code.google.com/apis/predict/docs/getting-started.htm...
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#54Another great story on 30 days to an "overnight success". Launching a product, even a "weekend project" is just damned hard to get right, end-to-end. Harder than you think out of the gate. I love how this puts things into perspective.
Now everyone who has been slaving away for >24 months to make their own end-to-end power monitoring solution feels slightly lame.
Look ma - power monitoring in only 1200 hours! (http://gridspy.co.nz)
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#55moconnor: did you keep a journal while you were building this app? I'm thinking to myself as I am reading this that there's no way you could have gotten from A-Z, then only after that started filling in the blanks accurately about what you did on day #X. (Heck, I can't remember what I ate yesterday!) Motivational, good stuff, thanks for sharing. Now I'm thinking of an app for HN'ers who just need a little help gettin…
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#56I haven't looked at this data to know if this would fit, but SVD worked really well for the Netflix prize. When I first heard its use in recommender systems I laughed and then thought... wow, that's kind of perfect. Here's a good explanation if you're not familliar with it, and very accessible to those who haven't studied linear algebra (or haven't thought about it in a long time) http://journal.batard.info/post/2009…
+1 to this... I've had very good luck using SVD/LSA-ish approaches for building recommendation engines. HOWEVER- the big catch with naïve (i.e., simple to implement and understand) approaches to LSA are that every time you add a new datum, you have to recompute the SVD of your data- which is time consuming, and raises some interesting logistical challenges when done in the context of a web app (i.e., how you persist…
Some searches suggested: http://www.picloud.com/
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#57Earlier quoted context omitted.
Great, I'm glad to hear it's proving useful! I'll do a follow up with how well my NoDB implementation stood up to the pounding it's getting at the moment later in the week...
Here's a feature suggestion for you from a fellow BGGer: Allow users to restrict the search to games from with specific amounts of players.
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#58moconnor: did you keep a journal while you were building this app? I'm thinking to myself as I am reading this that there's no way you could have gotten from A-Z, then only after that started filling in the blanks accurately about what you did on day #X. (Heck, I can't remember what I ate yesterday!) Motivational, good stuff, thanks for sharing. Now I'm thinking of an app for HN'ers who just need a little help gettin…
I love your appjournal idea!
Re: Embarrassing Flaws That Made My ‘Weekend’ App Possible
#59Nice writeup. Did you consider using Google's Prediction API before rolling your own recommendation system? http://code.google.com/apis/predict/