iggy: ignore file processor for jvm Jun 6, 2017 As a core team member for Swagger Codegen, one of the major features I’ve added in the last year was support for . ...
Prototyping a Flags/Bitmasks implementation in Kotlin 1.1.1 Mar 21, 2017 One of my more favorite features of C# is the use of FlagsAttribute. If you’re not familiar with the concept, [Flags] allows you to treat an integral enum type as a bitmask. ...
Coding against a composed docker environment Nov 2, 2016 Microservices are pretty big these days. Unfortunately, they add complexity to development, deployment, and maintenance. For instance, how do you code against multiple dependencies locally? ...
Finding Wakelocks in Android 7 using Google’s Battery Historian Oct 3, 2016 One of my favorite apps prior to my upgrade to Android 7 (Nougat) was GSam Battery Monitor (the paid version is fully worth it). ...
Dijkstra reflections May 24, 2016 The computing scientist’s main challenge is not to get confused by the complexities of his own making. – E. ...
Ignoring files with Swagger Codegen May 23, 2016 I’m proud to announce that I’m now a member of the Swagger Codegen Core team. I’ve previously refactored the C# client, the maven plugin, added an ASP. ...
Bash function: recent May 8, 2016 #!/bin/env bash # Display recently changed files recursively below the current directory # recent [minutes] # minutes: The number of minutes to display. ...
Docker Kitematic (Beta) and iTerm2 3.0 Beta Apr 6, 2016 I guess using everything in beta can cause issues, but whatever. Kitematic has an ‘Exec’ option for containers which opens a terminal connected to that container. ...
ES6 Template Strings without Indent via tags Dec 16, 2015 ES6 is pretty cool. One new feature is template strings which allow for multiline interpolated strings. For example, from MDN: ...
Gulp dotnet tasks Nov 23, 2015 Not sure if this will help anyway, but running dnu and dnx tasks (soon to be aggregated under a single ‘dotnet’) is really easy. ...