• Enforcing Style

    Most programming languages provide some flexibility on what they consider valid syntax. Take a boring piece of code:

    Read on →

  • Renewing a Let's Encrypt Certificate

    I previously wrote about changing my certificate authority to Let’s Encrypt. About the only downside I found about using it with my hosting service, Nearly Free Speach, is the need to manually renew every 3 months. Today, I went through the process and found it to be relatively simple.

    Read on →

  • The REPL: Issue 28 - November 2016

    Open-Sourcing Yelp’s Data Pipeline

    The Yelp Engineering team has been posting regularly about they structure data consumption between different teams. The backbone of their system is Apache Kafka, but they have created a lot of tooling around it. In this announcement, they have open sourced (Apache License 2.0) many of these tools. MySQL Streamer pipes data from MySQL to Kafka. Schematizer stores and tracks the various data schemas used throughout their pipeline. There is a lot to learn in this projects and the blog itself, which provides an overview of how they approach dealing with data.

    Offshoring roulette: lessons from outsourcing to India, China and the Philippines

    Troy Hunt writes a lengthy post about his experience offshoring development work to teams in India, China and the Philippines. He goes through the motivation for offshoring in the first place, the challanges and rewards, and the differences he encountered in different countries. His conclusion:

    if you’re looking at hourly rate as a metric for outsourcing success, you’re doing it very, very wrong!

    NIST’s new password rules – what you need to know

    The United States National Institute for Standards and Technology has come up with new guidelines for password policies. If you are wondering which password rules to follow in your product, these are a great baseline. Note that the NIST policies contradict the FBI’s. While you are at it, consider if you actually need to store a password at all. Medium, for example, emails you a link to log in. Because of “forgot your password” functionality in most sites, access to your email is essentially equal to access to the site. Medium just made it explicit and removed the need for them to store users passwords. Those passwords are probably re-used elsewhere. If you don’t store them, you can’t loose them. Right?

    Read on →

  • Benchamarking With abprof & abcompare

    This week at RubyConf I learned about two new tools.

    Read on →

  • The REPL: Issue 27 - October 2016

    Karafka

    Karafka is a framework used to simplify Apache Kafka based Ruby applications development. It looks like a Rails-like abstraction to remove some of the boilerplate and decisions around how to structure a Kafka application. I don’t know if it’s ready for production, but worth keeping an eye on it.

    MiniTest is not “Just Ruby”, it is “Just Rails”

    Victor Shepelev writes his opinion about RSpec and MiniTest and how the differ. I don’t subscribe to all the author’s opinions or conclusions, but I do prefer RSpec and I have never found the “It’s just Ruby” argument for MiniTest very convincing. If anything, I find that having a distinct shape, structure and feel for test is a net positive. It promotes shifting from “This is the part that specifies behavior” to “This is the part that implements behavior” in a cleaner way.

    Be Kind

    Being a good and kind person pays dividends. I love this story. You should read it.

    Read on →