Social Media Posts
JQ Deep Dive Part Two
Nov 20, 2019
In a previous post we gave a brief introduction to JQ, a powerful and lightweight command line JSON processor. It is one of our favorite tools and is extremely powerful.
Introduction To Alfred: Your Productivity Pal, Part 1
Nov 12, 2019
If you’re using an Apple computer you might want to check out one of our favorite mac utilities, Alfred. It is like Spotlight on steroids..
Accessing Docker Container As Root
Nov 03, 2019
On occasion you might need to access your docker container as root. Using docker exec you can do that fairly easily
CSS Transitions
Oct 27, 2019
CSS transitions allow you change a property value over a given duration.
Introduction To CORS (Cross-Origin Resource Sharing)
Oct 12, 2019
CORS or Cross-Origin Resource Sharing is a mechanism to make it possible to make requests from one website to another in the browser. The security policy, Same-Origin Policy (SOP) normally restricts this kind of behavior. If you’re writing an API for example, and want other websites to be able to access your API via browser side requests, you might want to define trusted origins that requests are allowed from or simply trust all origins. Check the link in the bio for more info!