The Pragmatic Programmer – Chapter 7 Notes and Questions

Notes on Chapter 7, Before the Project All about what to do before starting a project. Seems like it is pre-agile methodologies. Since the agile manifesto came out 2001 seems to fit that timeline.Dig for requirements, don't gather. They are on not the surface but deep under assumptions. A requirement is a statement of something that needs to be accomplishedUse…

0 Comments

I gave my first conference talk

And I survived! Right after Automating and before lunch I presented a talk on 2FA to Kernelcon in Omaha, NE. Kernelcon was a first ever information security conference in Omaha, and was also my first CFP I every submitted. The two days were a blur but let me breakdown 5 things I learned. Thanks to my awesome co-worker Jen for…

0 Comments

The Pragmatic Programmer – Chapter 6 Notes and Questions

So my engineering bookclub is continuing on with Chapter 6 in The Pragmatic Programmer. We have had some stops and starts along the way. For chapters 4 and 5 we ended up combing the weeks because none of us were really feeling discussing chapter 4 (Pragmatic Paranoia). We did have to move Chapter 6 from last week, because it was…

0 Comments

The Pragmatic Programmer – Chapter 5 Notes

For our beginning notes to review and discuss for our book club choice, The Pragmatic Programmer, I used notes from Joe Hallenbeck. This was great for the first 4 chapters, but then I had to put in some work and start taking my own notes. These were just to help jog the memory for discussion points, and in case someone…

0 Comments

Engineering Bookclub – The Pragmatic Programmer

I'm leading a book club at my workplace, Flywheel . We are working through "The Pragmatic Programmer From Journeyman to Master" by Andrew Hunt and David Thomas. Published in 1999 this books walks through techniques and tips to level up your development. Even being published more than 20 years ago (😱) there are plenty of parts that are relevant and…

0 Comments

RubyConf Retrospective

Now just picture this hall littered with vendor's, con goers and lots of signs, and that was the RubyConf hallway track. I made it through my first technical conference. There was a lot more socializing, networking, and partying then I every thought there would be. These were 3 loooonnng days of non-stop learning, meeting incredible people and being a part…

0 Comments

The Calm Before the Conf

I'm attending my first RubyConf tomorrow in L.A. This really is my first technical conference that I have ever attended. It is awesome that my employee is putting the time and money into growing me, and I really hope that I can use this as a learning experience, as well as growing my knowledge about the Ruby community. I was…

0 Comments

Code Documentation – before, after, and during coding

Sometimes you just need to started on some design for work on a larger ticket or new feature, you want to get your thoughts down and maybe start plotting out a code flow or some potential classes but what app do you reach for? So much of the time I reach for Google Docs, for my personal or professional work.…

0 Comments

Introduction to OpenStruct

Intro to OpenStruct Last week I had a task to start working with some CSV data pulled in from the database.  There was already existing code working with the data, so I needed to make sure whatever changes were applied, that they were backwards compatible.  The data was an csv representation of an array.  The current code was hard coded…

0 Comments