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…
Show HN: Coding noob - first weekend project
41–50 of 55 posts
Re: Show HN: Coding noob - first weekend project
#42Re: Show HN: Coding noob - first weekend project
#43The 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`.
I'd personally stick with Sephr's advice, though ;-)
Re: Show HN: Coding noob - first weekend project
#44I 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…
True. Before that it used to be "write your own Tetris".
Re: Show HN: Coding noob - first weekend project
#45I 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
#46Re: Show HN: Coding noob - first weekend project
#47Earlier 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)
Re: Show HN: Coding noob - first weekend project
#48Re: Show HN: Coding noob - first weekend project
#49Great 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…
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
#50Earlier 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.