Featured, Laravel

Larastan v1.0 Released

Larastan is a development dependency that adds static analysis to Laravel, improving developer productivity and code quality. At the core, it’s a PHPStan wrapper for Laravel and helps you find errors in your code through static analysis. It helps catch bugs before…

You might also like
Building a Voicebot with ChatGPT, Node.js, and Twilio
Maximize Efficiency in Database Querying with Laravel Query Enrich
Programming, Python

Advanced Python Interview Questions

What are nolocal and global keywords used for? These two keywords are used to change the scope of a previously declared variable. nolocal is often used when you need to access a variable in a nested function: global is a more straightforward instruction. It makes a previously…

You might also like
Simulating 3D Point Clouds from 2D KITTI LiDAR Dataset using Open3D
Building a Voicebot with ChatGPT, Node.js, and Twilio
You might also like
Maximize Efficiency in Database Querying with Laravel Query Enrich
Laravel 10.33: Unveiling the Latest Advancements in PHP Development
Laravel

Things I Didn’t Know About SQS

When it comes to queues, the AWS SQS service is a great option. It’s super cheap, super reliable, and can scale higher than most of us will ever need. In general, I’m a fan of any service I don’t have to manage…

You might also like
Maximize Efficiency in Database Querying with Laravel Query Enrich
Laravel 10.33: Unveiling the Latest Advancements in PHP Development
You might also like
Building a Voicebot with ChatGPT, Node.js, and Twilio
Maximize Efficiency in Database Querying with Laravel Query Enrich
Laravel

Laravel 8.65 Released

The Laravel team released 8.65 with the ability to generate test files during make commands, a string headline method, getting a subset of data as a collection from the request instance, and the latest changes in the v8.x branch. String…

You might also like
Maximize Efficiency in Database Querying with Laravel Query Enrich
Laravel 10.33: Unveiling the Latest Advancements in PHP Development
You might also like
Simulating 3D Point Clouds from 2D KITTI LiDAR Dataset using Open3D
Building a Voicebot with ChatGPT, Node.js, and Twilio
Python

Python Password Generator

Learn how to create a random password generator in Python. We know that passwords are a real security threat. To keep your account safe and prevent your password from being hacked you have to make your password hard enough that…

You might also like
Simulating 3D Point Clouds from 2D KITTI LiDAR Dataset using Open3D
Mastering Machine Learning with Scikit-Learn: A Comprehensive Guide
You might also like
Simulating 3D Point Clouds from 2D KITTI LiDAR Dataset using Open3D
Building a Voicebot with ChatGPT, Node.js, and Twilio
You might also like
Simulating 3D Point Clouds from 2D KITTI LiDAR Dataset using Open3D
Building a Voicebot with ChatGPT, Node.js, and Twilio
Handpicked posts
Laravel Roles and Permissions: Gates and Policies Explained
In Laravel, roles and permissions have been one of the most confusing topics over the years. Mostly, because there is no documentation about it: the same things “hide” under other terms in the framework, like “gates”, “policies”, “guards”, etc. In...
View more