Live data from Hacker News

Show HN: Coding noob - first weekend project

aflanagan.com

41–50 of 55 posts

Re: Show HN: Coding noob - first weekend project

#41
post #14

Reminds me - one of the things on my list is to build (yet another) chore tracker with that gaming incentive everyone's done (earn points of some sort) but avoiding the fault those all have: too easy to cheat yourself. I envisaged multiplayer action, even just with a wife, for example, where each person would allocate 'points' to be earned and traded for chores. She might be more likely to avoid creating a floordrobe…

Sex after taking the garbage out is really the best sex. Or not - I think a "punished by rewards" mechanism might kick in, that is, rewards kill intrinsic motivation.

Re: Show HN: Coding noob - first weekend project

#43
post #32

The email address validation is incorrect. Neither test+foo@gmail.com, test+foo@gmail.com., test@io, test@io., test@::123, test@[::123], or test@[::123]:456 are accepted, and likely other cases. I suggest you take the easy route and just only check `emailAddress.indexOf("@") !== -1`.

Or have a look at the full RFC 2822 regular expression for matching email addresses: http://code.iamcal.com/php/rfc822/full_regexp.txt

I'd personally stick with Sephr's advice, though ;-)

Re: Show HN: Coding noob - first weekend project

#44
post #27

I think every programmer made their own task manager at least once in their life.. welcome aboard :) Also, don't be to hard on yourself, creating a real project from scratch takes time and passion. I understood in half a second what your app was about and why I should use it.. What many apps/site cannot even do in weeks :) Finally, I like the idea about adding/removing stuff by replying by email.. so intuitive but I…

I think every programmer made their own task manager at least once in their life..

True. Before that it used to be "write your own Tetris".

Re: Show HN: Coding noob - first weekend project

#45
post #44
post #27

I think every programmer made their own task manager at least once in their life.. welcome aboard :) Also, don't be to hard on yourself, creating a real project from scratch takes time and passion. I understood in half a second what your app was about and why I should use it.. What many apps/site cannot even do in weeks :) Finally, I like the idea about adding/removing stuff by replying by email.. so intuitive but I…

I think every programmer made their own task manager at least once in their life.. True. Before that it used to be "write your own Tetris".

And before that, it was write your own hex editor.

Re: Show HN: Coding noob - first weekend project

#47

Earlier quoted context omitted.

Thanks a lot for the feedback. I like the idea of having some sort of scheduling/reminder feature. I was wondering if I could set up a simple way to do SMS reminders. There could be a special code to set an SMS reminder (like * SMS 7pm) to get a reminder at 7pm. That was a friend's idea though so I can't take credit for it ;)

Twilio SMS is super easy. Documentation is here: http://www.twilio.com/docs/api/rest/sending-sms . And there's a python library to help you get started. (Full disclosure: I work at Twilio)

Do you guys have any timetable when to better support the german market? I really would like to use your products, but since most german carriers do not accept SMS from your system right now, it is not feasible.

Re: Show HN: Coding noob - first weekend project

#49

Great job! I also used GAE to build ThatHigh.com and it's working pretty well. But like you're probably aware, GAE has a learning curve in addition to python/django/whatever. The datastore, mainly. This is a shameless plug, but I'm the co-founder of Djangy.com and we're in private beta. We're doing Heroku except for python/django. we'll support other wsgi frameworks in the future, but for now we make deploying almost…

Regarding Djangy (and all apologies for how offtopic this is), you REALLY need to give some idea of what pricing is going to be.

The "only pay for what you use" statement only works when I have a relative idea of how much a given computational unit costs, or how much the average customer is paying.

EC2 could make the same statement, but there's a huge difference between a small and medium instance, cost-wise.

Re: Show HN: Coding noob - first weekend project

#50
post #45
post #44

Earlier quoted context omitted.

I think every programmer made their own task manager at least once in their life.. True. Before that it used to be "write your own Tetris".

And before that, it was write your own hex editor.

I feel old, as I never wrote tetris or task manager, but have large collection of hacked-up hex-editors :)
Post reply on HN