Tech
Introducing go-goldapi: a Go Package for Querying Precious Metal Prices
Photo by Stanislaw Zarychta on Unsplash
Would you like to have automation workflows or alerting related to current spot pricing of gold, silver, platinum or palladium? Of course you would! But first you need to grab the price…
Introducing go-goldapi, a Go package for querying current and historical precious metal prices from goldapi.io. Note: I am the author of the Go package (https://github.com/joel-g/go-goldapi) but I have no affiliation with goldapi.io.
Tech
How to Draw a Dick on the City of Bellevue’s “Report Gatherings” Map With Go
The city of Bellevue, Washington recently debuted an online tool to allow residents to report “gatherings” or other violations of Governor Inslee’s “shelter in place” order. Bellevue Police Department plans to make a heat map to identify areas with high concentrations of violations. This guide will walk through how to reverse engineer an API and use Go’s standard library to send form data. We’ll use the “report a gathering” application as the example API.
Tech
Let's Build a Computer Together — the Martin files
In this edition of “the Martin files” I cobbled together Martin’s gigantic twitter thread (with his permission) documenting a complete gaming PC build. This is the highest budget thread to date! Have fun!
🖥️ LET’S BUILD A COMPUTER TOGETHER! 🖥️
I’m building a PC for work & games and I’m going to share my experience for folks who are thinking about it. Even on my 8th-9th build, I make mistakes and learn new things.
Tech
API Basics With Postman — the Martin files
This week I’m stealing all of Martin Castro’s hardwork from Twitter (with his permission) to bring you his guide on using Postman to consume APIs. This is a great way to test an API before you starting writing code. The rest of this post is straight from Martin’s thread:
👽 LEARNING THE HARD WAY: API basics with Postman 👽
I am going to use Github’s Noop Challenge — Hexbot to teach y’all about one of biggest tools in my API toolbelt, Postman.
Tech
Unboxing Hardware: Photon Particle Wifi — the Martin files
Here’s another edition of Martin Castro live tweeting hardware and me collecting it all into a single digestible blog post. The rest of this post is direct from Martin’s finger tips here. Enjoy!
Let’s check out this beginner / intermediate microcontroller kit! I am working on a TOP SECRET project with @joelatwar and @CodeSpent and I thought I’d take a couple minutes to talk about this lil’ IoT device and unbox it.
Tech
Getting Started With Microcontrollers — the Martin files
My buddy Martin Castro likes to live tweet hardware projects. When he’s done you have a detailed step-by-step guide that anyone can follow along. However, since it’s a Twitter thread it is quickly lost to time. “The Martin Files” is my attempt to capture this content (with his permission) so others can find, read and learn from it in the future. The rest of this article (including the images) will be verbatim from his Twitter thread:
Tech
Make a Stack Overflow Reputation Leader Board for Your Team With Python
If you’re a developer or student you probably have a Stack Overflow account. If you’re as (overly) competitive as I am you probably compare your Stack Overflow reputation with your colleagues. If you’re a real weirdo you might even want a sort-able leader board to compare yourself against your friends, enemies, etc.
Well, look no further than this simple Python Flask application!
Screenshot of example leaderboard
Here is an example of this website in action using myself and some friends: http://sampleleaderboard.
Tech
How To: SSH to Your Azure Linux VMs With Username and Password From Windows, Linux or Mac
If you’re looking to generate SSH keys and use them to login to an Azure Linux VM then good on you because that’s the recommended and most secure method to access your VMs. It’s readily documented here in official documentation. However, I’ve seen people asking on forums how to simply connect to a Linux VM hosted in Azure via SSH with a username and password. If that’s you then I assume you have a good reason (like this VM will generally not have ports open to the internet or this is a proof of concept) and this post will detail how.
Tech
How To: Embed Your Azure Web App Bot in Any Web Page
Embedding an Azure bot in your web page is actually very simple but the Azure portal doesn’t make it obvious how to do this. The portal blade for bots is geared towards developers who are integrating bots into channels like Skype, Facebook Messenger, Slack, SMS, etc but I’ve seen several questions on Stack Overflow asking how to simply slap the bot on a web page - so here you go.