Original CodePen by: https://codepen.io/jfirestorm44 My playground:
Code Fun Blog Posts
Why do I not use a Virtual Machine from my local box?
The first place I worked, iSTORM didn’t use virtual machines. They had a staging server and a production server. We developed on the staging server and used CVS to synchronize code into production. Later on in my career there was a project where part of the consistent environment setup is everybody using the same virtual […]
Cool, Well Done Site
https://energyphile.org/philespace/
Slim Framework Auth Example
Clean Code Studio has done a great job with the Slim Auth tutorial. Check it out here: Setup Slim Views With Blade Psr-4 Autoloading Controllers Service Providers Pretty Whoops Error Page Env Variables Files Http Kernel Eloquent DB Setup Database Migrations, Seeds, & Factories Slim Console Commands Vue js front-end Tailwind CSS Setup – https://tailwindcss.com/ […]
Hooking Price Filters into Product Search Engine
As a user, I want to be able to search “cheap tape” or “expensive tape” and have the outcome bring to to relevant filtered results. Or even “cheap scotch tape” Bear in mind, the “Adhesive Tape” category isn’t that sexy. This would make better use cases for “cheap laptop” or “high-end computer chair” or other […]
The Making of a Slider
This blog is about this slider. First a little back story. This is a price filter. But in order for a price filter to work, you need to have products and prices which were feats in and of themselves. These prices come from competing distributors such that best prices are always calculated from the cheapest […]
Transfer files from Android to PC via SSH
I found many articles on how to transfer files from PC to android with ssh. But the articles on getting files off were challenging. What I really wanted to do is be able to clear out my camera roll to my PC which means transferring and deleting. I used an Android app SimpleSSHD on my […]
Database Indexes
One of the most important concepts in database design is Indexes. But don’t I mean Indicies? No. Indexes. That’s how I roll. Fundamentally, Indexes are like pointers to locations. To make things findable fast, in any situation, it helps to be able to point to the exact location you need to go to get whare […]