Removing Jquery

As I mentioned in my last post, one of my older Rails apps has been out in production for two years now. When I wrote it back in 2019, I used jQuery and Bootstrap, along with a few other older technologies. Reviewing it recently, I updated to the latest version of Rails 5, removed CoffeeScript, and did some more cleaning and updates. As that work came to a close, I lamented the fact that for all the improvements, the real slow spot in this app is that it still loads the jQuery and Bootstrap assets which are relatively large given the simplicity of the front end. ...

May 2, 2021 · Thomas Ruggeri

Adventures with Typescript

The latest adventure I’ve been on is one with Typescript. The technology was developed by Microsoft as a way to add typing to Javascript. It’s popularity has been increasing over the past few years. I had some experience with it working on Angular 2 projects during my time at Snag. Having gone from that environment to my current job and projects written with more pure Javascript, it’s been very interesting to come back to it and have the experience anew. ...

December 30, 2020 · Thomas Ruggeri

Adding Svelte

Wait, wasn’t the last post about Vue? How have we switched to Svelte already?!? Let me explain. Svelte is a fantastic front-end component library developed originally by Rich Harris of the New York Times. It doesn’t have the widespread popularity that Vue, React and Angular have, but it is growing in notoriety, especially since the release of version 3 in 2019. In my limited world view (of the front-end), it stands out because it has always focused on pre-compilation to provide a … svelte … javascript file rather than including a “run-time” library of javascript code that manipulates the virtual DOM. This is a feature that has since been developed into many frameworks/libraries, but it is what makes Svelte unique. ...

December 13, 2020 · Thomas Ruggeri

Adding Vue

It’s been a while. I plan on writing more posts on all the things I’ve been up to in the last six months. One of them was finally experimenting with VueJS. I’ll cover my thoughts more in a future post. For now I want to introduce my first Vue component (on this blog). I plan on expanding my playground by using VueJS on this very blog. This will have two benefits, ...

September 11, 2020 · Thomas Ruggeri

Experimenting with Firebase

As I’ve hinted in a previous posts, I’ve been experimenting with Firebase. While I’m no expert, I have learned a few things that I’d like to share and document. Firebase What is Firebase? It’s a unique hosting platform that is owned by Google and runs on the Google Cloud. What’s unique about it? In overly simple terms, it’s a tool set for offering a backend as a service. You write an app (javascript, iOS or Android) and use the Firebase SDK to perform the backend tasks such as authentication and data persistance. The marketing makes the case for this to be a great platform for small applications to get off the ground and then it can continue to grow. There’re also many more features and services around A/B testing, analytics and more. ...

December 29, 2019 · Thomas Ruggeri