-
RadioControlPedia
All information about radio control.
Recent Comments
-
Recent Posts
Categories
Tags
.Net ASP.NET MVC blogging book Building Sano business C# clojure Common Lisp cryptsetup Darcs Debian Django encryption Erlang Esperanto Extra 300S Flash Git Haskell HTML idea in charge java Kubuntu Linux Lisp luks music OpenID Plone privacy programming Python radio-control radiocontrol Rails rant Ruby Ruby on Rails Sano security Ubuntu web WordPressArchives
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- July 2008
- April 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- January 2007
- December 2006
- October 2006
- August 2006
- April 2006
- February 2006
Meta
Tag Archives: Building Sano
Blood pressure and conclusion
In less than an hour, I quickly added blood pressure: It was really quick and dirty and it doesn’t have an in-line form, but it’s there and it’s working. I wasn’t able to achieve as much as I could but … Continue reading
First graph
It’s not perfect, but it’s a start:
My Profile page: a RESTful single resource using Formtastic
I’ve just implemented the My Profile tab for Sano: Can I write 500 words about? Well, I can try. I like using RESTful routes. In case you don’t know what they are let me try to explain it quick, at … Continue reading
Migrations that change the schema
Up until today I did everything with a lot of planning and I let my OCD use migrations in a way they were not intended: I would go back and fix old migrations and destroy the database and re-run them. … Continue reading
Sano is open for business
I really wish I was able to get farther in one day, but I think it’s good enough that I went from idea to deployed app. On retrospective I wasted too much time figuring out formtastic. I don’t regret doing … Continue reading
Super Exception Notifier
I like knowing when something goes wrong with my web apps, so I’m using Super Exception Notifier to get by email a report should any exception be raised in the app. If you go to Super Exception Notifier’s site you’ll … Continue reading
Merging users
Remember that I said that when you log in, your ghost user has to be merged with the real user? Well, this is the code for doing it: class User < ActiveRecord::Base #… def merge(user_id) if user_id != nil user … Continue reading
Logging in now works
If a picture is worth a thousand words, this post has three thousand fifteen words:
Simplifying the weight CRUD
After a rather long fight with formtastic I have a better CRUD for weight: But now that I think about it, there shouldn’t be a measured at in this view. That should be in an advanced new-form.
Making the weight CRUD work per user
In the previous two posts I created a full CRUD, using scaffolding, for weights and a way to get the current user. The weight CRUD, as it was, allowed you to edit data for any user (check out the screenshots). … Continue reading