Off the Rails

Written on July 8, 2016

14:19 - Kind of a cheater post, here’s a piece I wrote for the Moove-it blog’s DevSnack series. Enjoy!

Read More

moove-it

Written on April 19, 2016

11:00 - It’s been a few weeks… So here’s what I’ve been doing!

Read More

Connect Four

Written on March 30, 2016

13:25 - After lots of time in what I like to call the “exploratory” mode of learning, last week I recommitted to the Odin Project curriculum and decided to go back to a couple of projects that I was a bit hasty with.

Read More

Object#send

Written on March 22, 2016

19:46 - I was reading Eloquent Ruby and came across the chapter about Object methods, i.e. the methods that come with every instance of any object you create (because all objects inherit from the Object class with few exceptions)and one of these methods is Object#send(:method_name) which has the same effect as calling Object.method

Read More

Happy Pi Day!

Written on March 14, 2016

13:37 - I can’t think of a more gloriously nerdy time to write a dev blog post than 1337-o’clock on Pi Day in the middle of SXSW! I have a little bit of catching up to do…

Read More

Back on the Horse

Written on February 7, 2016

14:31 - Another February, another Fashion Week. I won’t go into the details, but suffice to say this is the most lucrative semi-annual event on the NYC stage electrician’s calendar, and even after moving out of the city, it STILL makes financial sense to couch surf for a week of decent cash.

Read More

Subtrees in Git

Written on January 23, 2016

20:48 - Back in August, I put all of my Odin Project assignments into one massive repo.

Read More

Collaboration

Written on January 23, 2016

20:48 - Today was another CodeNewbie ATX Community Coding Meetup. These are always a good time, because everyone gets a chance to share what they’re working on and code in a comfortable, friendlly environment.

Read More

VCR & .gitignore

Written on January 13, 2016

12:35 - The last iteration of the ‘Rotten Potatoes’ example application from BerkeleyX explores a little bit of external API integration through a ‘Search TMDb’ feature. This feature allows a user to search The Movie Database for movies in order to add them to the Rotten Potatoes database. There is even a third party gem to facilitate the calls to the API, and that’s great, but where I’ve gotten stuck is in stubbing those calls in my Cucumber tests.

Read More

Christmas Eve

Written on December 24, 2015

17:09 - The past month has been unproductive. Or rather, it’s felt unproductive. Like, all sound and fury signifying nothing.

Read More

Portfolio Goals

Written on December 17, 2015

15:10 - I printed my new #PassionPlanner last week, and decided my first big project was going to be to focus on building a good, focused, and varied portfolio.

Read More

Rails Rails Rails

Written on December 10, 2015

17:58 - It’s been just over one month since my last post. Since then I’ve tackled Michael Hartl’s Rails Tutorial, though I feel like I only skimmed the surface of the material provided there. Thankfully, The Odin Project uses it as a basis for their instruction, so I now have the chance to go back and chew a little more. To expand further on it, I’ve decided to try rewriting the tests in RSpec and Cucumber, and possibly even convert some of the ERB to HAML. For funsies.

Read More

Resume and Rails

Written on November 20, 2015

10:07 - I took the day off of work today for another Career Coaching session in preparation for Women Who Code’s Tech Interview Workshop tomorrow. I’m pretty excited for this potential glimpse into the interview process.

Read More

UT Austin & RSpec

Written on November 9, 2015

13:31 - This morning I took an aptitude test for UT Austin’s Software Developer Training Program. I think I did well, probably well enough to pass. If you’re in the Austin area looking for dev experience and training, there’s no reason not to at least take this aptitude test. It’s free, the program sounds pretty cool; if you pass you’ve opened a door for yourself and if you don’t you’ve really only lost out on about 2 hours of a Monday morning.

Read More

Code Newbies Austin

Written on November 7, 2015

16:08 - Right after I got back from NYC in September, I started attending the Austin chapter of Code Newbie’s local Meetups. I’ve really enjoyed the podcasts, and the prospect of hanging out with other learners was significantly less intimidating than some of the other dev meetups in the area; at least I knew that I wouldn’t be totally lost in the conversation.

Read More

Compare and Contrast

Written on November 4, 2015

15:22 - Now that I’ve had some time away, I think a lot about the things that I DID like about my old job. Most often what comes readily to mind is the people. There was always a revolving door of personalities, but by the end of my time in New York, most of the time I would land on a job site full of people I could trust, and who put trust in me in turn. This goes double for bosses. I could hop into a scissor lift with someone and two people together would suddenly become better than they would have been apart. Communication was tight, everyone knew what they were doing based off of a drawing, and therefore we could very happily make small talk as we went without sacrificing productivity.

Read More

Computer Science

Written on October 9, 2015

11:00 - I actually started my coding journey a few years ago when, out of curiosity, I started following along in MIT’s Open CourseWare offering of 6.00 (later adapted for edX.org as 6.00x: Introduction to Computer Programming). The class, as I recall, was intended for non-majors or students without pprevious programming experience looking to get their feet wet in computer science.

Read More

Career Coaching - First Session

Written on September 25, 2015

11:48 - Just got home from my first session with my career coach. It was a nice “getting to know you” sort of session. I think this is going to work out pretty well. It’s nice to have someone who at least has a broad idea of what my path could be to help me get in front of potential employers.

Read More

Back to work

Written on September 2, 2015

11:15 - I took a break from development to move to our permanant apartment. I won’t gush too much, but it’s kind of perfect; exactly what we need right now, no more no less. The kitchen is bitchin’, the bedroom is huge, the living room is cozy, the whole place has fantastic flow, there’s a good-sized balcony which is very private, the apartment complex is dog-friendly, and best of all, the location cuts at least 15 minutes and all the traffic out of Ben’s commute.

Read More

Mastermind

Written on August 24, 2015

16:10 - Subclassing! I’ve got two kinds of “code” object for my Mastermind game. They’re both constructed in the same way, but one of them relies on a second object for comparison to determine how good a match they are.

Read More

Object-Oriented Mess

Written on August 22, 2015

18:20 - I’m in the middle of the Mastermind project in TOP, and I’m… well I’m not stuck, but the code is starting to feel cob-webby. My classes feel bloated, I feel like I’m making things more complicated than they should be, and just…. ugh. I can finish it the way it is now, but am I adding into a crummy program? I feel like I don’t have a good metric for this…

Read More

Exceptions

Written on August 21, 2015

Seizing the opportunity to try using a little exception handling in my Tic Tac Toe Game. There’s really only one place for this to go, which is in the player input part of the game. It was nice to work through this problem and actually understand “hmm, I think I need some exception handling here” and then slip it in there with little hassle. I could probably improve upon it by throwing an exception when a space is filled and then handling that exception differently. Perhaps after I figure out Mastermind….

Read More

Tic Tac Toe

Written on August 20, 2015

17:49 - Just finished building Tic Tac Toe in Ruby. It was… more of a struggle than I anticipated, partly because I had a head swimming with best practices that seemed to get in the way of just making the darn thing work. Also, thinking in an Object-oriented way rather than procedural is interesting because it’s not super linear, so I think this was a great exercise for me.

Read More

Self-Esteem

Written on August 19, 2015

17:19 - I have to say, job-hunting and learning programming are difficult things to do in tandem. By difficult, I primarily mean uncomfortable. Job-hunting obviously because it is stressful, full of rejection, and throwing in a career change on top of the usual stress means a lot of trudging through self-doubt to try and promote yourself as someone who is worth taking a chance on.

Read More

Git Subprojects

Written on August 18, 2015

11:12 - I’m very OCD about how I organize things. It’s actually a problem sometimes because I’m always trying to build a better mousetrap as it were. Such was the case with my git repositories. For each little project in The Odin Projec, I made a little repository. This seemed dumb (it might not be), so I made a new repository in the root folder and deleted all the little repositories in hopes that I could just continually update all these little projects within the context of the larger one.

Read More

My first Jekyll Post!

Written on August 17, 2015

I’ve been keeping a journal in my text editor to keep myself on track while learning web development with The Odin Project. I have heard good things about Jekyll, so I’m trying it out. Here’s my first post!

Read More

Roadblock

Written on August 7, 2015

13:57 - Yesterday things got frustrating. I shouldn’t be surprised. It’s not an easy thing. But the Caesar cipher… it’s not that hard to implement, really. I just think that the way I’ve done it is shitty. I can’t tell whether it is more productive to keep banging my head against the wall, or look at other solutions to identify ideas I didn’t have.

Read More

The Speed of the Internet

Written on August 3, 2015

13:42 - Today I learned how fast the word changes. Trying to use “Learn Ruby” with test-driven development strategy. Super excited. Only problem, this curriculum uses a deprecated version of rspec, rails, AND ruby. So gonna have to downgrade all. Also rake seems to be failing. Wooooooo.

Read More

TODO

Written on August 1, 2015

15:43 - TODO refactor englishNumber.rb. Thousands + repeats too much, need to put ‘hundred’, ‘thousand’, ‘million’, ‘billion’, etc into an array of some description. Also modify “store_repeat.rb” according to comments in file.

Read More

Career Coach

Written on July 31, 2015

13:19 - This morning I had a meeting with a career coaching service to determine if it would be at all helpful to me. I decided that having someone to be accountable to, and also a deadline for a goal would be useful.

Read More