2 minute read

Today was strong work. I finished Procedural Ruby! Now I have Object Oriented Ruby which has final projects and I’m done with the Ruby section! I have to say it started to feel like I wasn’t making progress but the last two days have reinvigorated me. I know it gets more complex as I go and the projects get bigger and take longer but the groove is starting to fall in place.

2 minute read

I got a lot done this morning. Especially after the coffee kicked in. When I started I was definitely not 100% awake. I even did some extra credit on a lab which I typically do not do. I’ve never been the type to want to score 105 on a test because I aced it AND the extra credit. I did this one specifically because I knew it wouldn’t take much time as I was writing a generic method for a specific method I had just completed.

2 minute read

Today was a slow day. The kids didn’t cooperate this morning and I got zero coding done before all three children were awake. That’s fine though. I didn’t expect every day to go perfectly to plan. It was actually a nice refresher day not starting with coding but still getting the rest of my morning routine done. I did get in my night time session (minus a few minutes for good night kisses).

2 minute read

Started the day off with a win before 8 am. I was working on a lab to take an array and return a string with Oxford commas inserted. I finished the lab and had it passing tests then refactored and chopped two lines of code out of it. This made me happy. Original code: def oxford_comma(array) if array.length == 1 return "#{array[0]}" elsif array.length == 2 return array.join(" and ") elsif array.

4 minute read

After 3 hours today I finished up the HTML and CSS section. I took one real note today in that 3 hours: When it comes to Bootstrap as a framework the .col-xs class never stacks vertically no matter how small the width of the screen gets. Figured that was something I might need to know later. I also learned a lot about how powerful and easy it is to make a site responsive using Bootstrap.