Wrangling Proxies with Ruby

I needed a list of free proxies, obviously the more the better. Though I didn’t take this as far as I could have, I automated it quickly enough to get a quick and dirty list. Ruby always makes things better. First, I downloaded a list from https://geonode.com/free-proxy-list in JSON format. Next, I whipped up this […]

Use Toastr with Meteor in 2023

1. Install with: meteor npm install –save toastr 2. In your .js/.ts/.coffee file, add: import toastr from ‘/node_modules/toastr/build/toastr.min.js’; 3. In your .scss file, add: @import “{}/node_modules/toastr/toastr.scss”; 4. Now to make a toast in a method, just add something like: toastr.success(“BoomboomShakkalakkah!”);

Playing with Golang and CSV Files

Golang is not only fun to code, but incredibly easy too. I like to think of the way it handles pointer’s as, “pointer’s Lite“. But, none of that for this post. I enjoy writing code in different languages. I wanted something quick that would just list the header titles in a CSV file. The meat […]

PHP 7 twist on an old problem: FizzBuzz

Two of the nice new features of PHP 7 is Type Declarations and Return Type Declarations, both coercive and strict. Obviously having typing is a benefit for both debugging and clearer code. Considering the “FizzBuzz”  [1]   problem, these new features can work to our advantage both in function inputs, and function outputs. Added to […]

Easily Deploy a Meteor Project without mup, mupx, etc.

Deploying a basic Meteor project is super simple, and does not require any special deployer like mup or mupx/meteor-up, etc. [1]. The following is a simple recipe to get things started off: On your deployment server, install the following: a) Node.js + NPM. You might need to mind the versions. Lately, I’m doing a lot […]