Web Apps • Aug 18, 2017 Collecting Form Data with a Google Chrome Extension I needed a Google Chrome extension that would work similarly to a password manager, such as LastPass, to monitor the data in form submissions.
Exploratory Testing • Aug 17, 2017 More Ways to Test – Peripherals? I’d Forgotten about Those… As well as testing the input combinations to your program and covering the OS and device combinations, consider the many possible peripherals.
iOS / OS X • Aug 16, 2017 Understanding UIAppearance Container Hierarchies The mechanics for UIAppearance proxies for views contained in other views does not work as you may expect coming from CSS. Here's how it's different.
Development Practices • Aug 15, 2017 TODO Comments Don’t Work Comments, without a large amount of maintenance overhead, tend to become stale and misleading. TODO comments are no different.
TypeScript • Aug 14, 2017 Understanding and Embracing TypeScript’s “readonly” Want to use JavaScript in a functional way? With TypeScript's readonly, you can rely on static analysis to enforce and flag mutation in your codebase.
Personal Optimization • Aug 13, 2017 Seven Tips for Starting a New Job – A Quick Guide to Getting Settled A quick guide to getting settled into your new job. Make the most of a new opportunity and be kind to yourself. Everyone has to start somewhere!
Evolving the Industry • Aug 12, 2017 A Moral Justification for Diversity In Tech – Why “Good for Business” Isn’t Good Enough If "we value diversity" means simply "we'll be more successful if we're less homogenous," we're valuing people for their other-ness—not their skill.
iOS / OS X • Aug 11, 2017 Swift Tool Belt, Part 4: Extending UITableViewController An extension that provides a couple methods to resize the header and footer of a table view with UITableViewController in Swift.
Developer Tools • Aug 10, 2017 Running the Current Test File in VS Code How to configure Visual Studio Code to run an external shell command passing the current file as an argument. Great for running tests!
Technical Practices • Aug 09, 2017 Three Reasons To Keep Your Frameworks Up To Date Framework updates can require significant rework and expense. Nevertheless, the benefits of keeping technologies up-to-date greatly outweighs the costs.
Project & Team Management • Aug 08, 2017 Team Rotations – Yes, You Should Top developers like new challenges, and they don’t want to feel trapped on the same project forever. They need something new to learn.
Development Practices • Aug 07, 2017 Intro to Mocking with Moq Mock objects allow you to mimic the behavior of classes and interfaces, letting the code in the test interact with them as if they were real.