You weren’t born to just write code and die
Published: 02/01/2016
Published: 02/01/2016
Published: 01/28/2016
I live and die by the keyboard. The keyboard is my friend and it’s way faster to use an application using a keyboard then it is to use a mouse. In fact there are many studies that show that for non-complex key combinations keyboard shortcuts and aliases are much faster then using the mouse.
Published: 01/25/2016
As software engineers we communicate far more then most people expect. We constantly communicate wether we write code, talk at standups or respond to emails. Professional communication is essential. Something that I have been working on for myself is improving my professional communication.
Published: 01/18/2016
I love working with the web, there is so much to know and learn about web development. Have you ever thought about the URL? I recently learned quite a bit about the URL. The URL is composed primarily of a few things:
Published: 01/14/2016
While I don’t blog the most consistently, certainly the holidays didn’t help. I have recently discovered that I really like writing, getting to express myself in the written form has been liberating. Listening to a guy like the Simple Programmer has inspired me to think of what I could do with my career through my blog. I could start my own training program for new programmers, I could tutor more and I could even speak at a conference. Honing my skills and grammar will allow me to write a book “some day soon”.
Published: 01/11/2016
A few months ago I decided I wanted to make a little bit of extra money on the side of my main job. I thought it would be nice to have a source of income that I could use to buy things like skis or bikes or other cool gear for my hobbies. I decided to start tutoring, teaching people about software engineering and how to build applications. Man did I meet a LOT of different people, from startup execs to doctors transitioning into the field to people who haven’t used a computer beyond facebook.
Published: 01/08/2016
In 2015 I read 31 books. I am totally amazed at the number of books that I read because the year before I’m pretty sure I only read about 5 books. Each book is put into a category, and I’ll review the category and call out specific books that I feel are really special.
Published: 11/19/2015
Clinical studies have shown that walking can have numerous benefits to your health, depression and well being. It can boost your weight loss, ease depression and enhance your life.
Published: 11/12/2015
I recently bought a pair of the Audio-Technica ATH-ANC7B from Amazon. They’re close to $100 but they’re less then the price of similar Bose headphones.
Published: 11/10/2015
Scrum while great in theory is in practice a really flawed process of creating software. Scrum is iterative waterfall. Scrum is process hell. Saying this, may get me shunned and kicked out of the Agile club. But I really believe that the bane of our industry is the process management called “Scrum”.
Published: 11/05/2015
Code is like a living resume. You are constantly changing and learning, or at least I hope you are. If you’re a developer, you may never know when you might be out of a job, so just like it’s a great idea to keep your resume up to date, I highly recommend keeping some sample code around.
Published: 10/20/2015
My team at UHG has about 13 individual team members. We have 3 full time developers, 3 part time developers, a scrum master, business analyst, product owner, engineering director, project manager and two QA testers.
Published: 10/13/2015
Encryption really isn’t the sexiest topic, certainly not as interesting or thrilling as something like Ashley Madison, a site that promises you discrete encounters no matter your marital status.
Published: 10/06/2015
PGP is a encryption tool I use to encrypt and decrypt files containing sensitive data.
Published: 10/01/2015
Jared Friedman recently wrote a really great article on why he wouldn’t use Rails for any new company. There are a couple of factors that he looks at that makes this a really well written article.
Published: 09/29/2015
I love RSpec. It’s one of the best tools on the web for opensource developers to write tests. Nothing compares to its power, ability and extensibility. Mocha and Chai for Javascript pale in comparison to its ability to test.
Published: 09/24/2015
Rebasing is extremely useful, lets say you branched off of release 1.8.3 and need to fix a defect, but it wasn’t completed until 1.8.3 was already on production and 1.8.4 is the new hotness. git rebase release1.8.4 defectBranchName will take defectBranchName and reapply the commits over release1.8.4’s history instead of what it was originally based off of.
Published: 09/22/2015
I’ve been developing for the web for over 10 years. I started writing for the web when I was 13. At 17 I got enough freelance work to pay for my first year of college (and buying a nice Macbook). It took me 6 and a half years of going to school while working full time to graduate. In all of that time I have learned a lot about the internet and about working with people.
Published: 09/17/2015
From Linkedin:
Published: 09/15/2015
At UHG we use Protractor to test our Backbone app for automated E2E dev only regression tests. We do this as apart of an automated CI process to ensure every branch we ingrate doesn’t break existing functionaility. Today, I’m going to walk you through our setup and how you can use Protractor (an Angular tool) to test your non-Angular app.