Rails

20. Deploy with Heroku

September 2015 · 2 minute read

This is a tutorial for deploying a rails app that has already been created and pushed to github as the origin master.
Read More…

19. Presentation Logic

September 2015 · 2 minute read

Now that I have all the working parts, it's just a matter of replicating what I've already done to complete a very simplified version 1.0
Read More…

18. Bootstrap Modals

September 2015 · 2 minute read

Ensure all of the correct gems have been included into the app, the ones I'm using can be found in these locations:
Read More…

17. Importance of Indentation

September 2015 · 1 minute read

Indentation helps make it far easier for other people to read your code. To better understand what indentation is, take a look here http://www.computerhope.com/jargon/i/indent.htm
Read More…

16. Things you might have missed

September 2015 · 1 minute read

Things you might have missed when setting up setting up your rails app. With the possibility of someone else working on it at some point, it's a good idea to specify the ruby version and separate out the gem set specific to this application. This will help others to ensure that they have all of the correct files, gems etc installed to contribute.
Read More…

15. Redesign, refactor, rebuild

September 2015 · 3 minute read

After two days of trying to imagine how the tables in my database are going to be accessed and what information is required. I have finally come to the conclusion that I need to redesign - either I'm not advanced enough yet to pull off the UX I ultimately want to do or I'm just thinking about it all wrong.
Read More…

14. Debug and Optimize

September 2015 · 5 minute read

It would seem that simply replicating what already works isn't quite that simple. The following article, describes problematic encounters and design considerations relating to replication. It also provides examples of different types of bugs which can affect the outcome of your application in different ways. Some of which are harder to find and resolve than others.
Read More…

13. Display Calculations

September 2015 · 3 minute read

In this example I am going to do some very simple calculations based on field input values.
Read More…

12. Create Classes

September 2015 · 2 minute read

Continuing on from 9 My_Budget App - CSS Basics, see the design process to develop a theme. First, use chrome dev tools as a helper to identify classes.
Read More…

11. CSS and Bootstrap

September 2015 · 2 minute read

This article assumes that the reader knows about basic HTML5 and CSS, and that they have probably used chrome developer tools before…
Read More…