Quality tutorials & resources. No BS._

Page 3

Caching API Endpoints with Laravel
Author Dan Pastori avatar
Dan Pastori September 27th, 2022

As your API begins to grow, you will want to start looking into some performance optimizations. Laravel provides a variety of different options when it comes to caching endpoints, such as Redis, Memcached, DynamoDB, and even simpler file caches. By default, Laravel is set to cache in a file. Since Laravel is facade driven, basic […]

Keep Reading →
Break between articles
Introduction to Classes and OOP with JavaScript
Author Dan Pastori avatar
Dan Pastori September 20th, 2022

To be honest, it still blows my mind that you can write Object Oriented JavaScript. Without even using TypeScript! Recently, we re-factored AmplitudeJS 6.0 to be Object Oriented and honestly, I’m loving it. I feel like OOP JavaScript really allows you to make some well-structured, dynamic apps and functional libraries. With that being said, let’s […]

Keep Reading →
Break between articles
Event Handler Tips for JavaScript and VueJS
Author Dan Pastori avatar
Dan Pastori September 13th, 2022

One of the basic features of JavaScript is working with Event Handlers. Event handlers allow you to listen to interactions (click, touchstart), changes (input, change), etc. within your application and respond accordingly. There are hundreds of events you can listen to, check them out here. Here’s a few ways I’ve used event handlers working with […]

Keep Reading →
Break between articles
URL Query Parameters with JavaScript, Vue 2 and Vue 3
Author Dan Pastori avatar
Dan Pastori September 6th, 2022

This is a quick little post that goes through how to get and set URL parameters with vanilla JavaScript and VueJS. I’m going to provide both examples, JavaScript and in the context of VueJS. There are scenarios where you might not be using VueJS and it’s extremely helpful to access these parameters through JavaScript. Working […]

Keep Reading →
Break between articles Break between articles