A love letter to software engineering | by Oskar uit de Bos | CodeX | Jan, 2022

My perspective on why I love software engineering, what makes a great software engineer and the career choices I made. Photo by NEXT Academy on Unsplash Being a software engineering is the greatest career there is. Period. Combining aspects of engineering by using battle-tested best-practices, approaches, and frameworks with the beauty of art by creating … Read more

Using SSL for PostgreSQL Connections on Elixir

In this post, I’ll describe our approach to correctly forcing SSL verification when establishing PostgreSQL DB connections from an Elixir application, which we did as a way of adding an additional security layer to our DB to prevent threats such as spoofing. What we thought was a trivial task actually ended up needing a lot … Read more

Laravel 9 Vue JS Post Axios Request Tutorial

Laravel 9 Axios post request example; In this tutorial, we will learn how to send form data with Vue js using Axios post HTTP request in laravel. This tutorial will guide us step by step on how to send form data to the controller using axios post HTTP request in laravel 9 with Vue js. … Read more

Angular 13 datatable example with pagination sorting filtering

In this tutorial, we will learn how to create a table with pagination, sorting, and filtering using datatables in an Angular 13 application. Step 1: Create a new Angular 13 app To get started, open your terminal and run the following command to create a new Angular 13 app: Step 2: Install jQuery and Datatables plugins … Read more

Creating an Azure Machine Learning Workspace and Datastores using Bicep

This article explains how to create an Azure Machine Learning Workspace and Datastores using Bicep. Azure Machine Learning is a cloud service that accelerates and manages the machine learning project lifecycle. The core components of the Azure Machine Learning service include the Workspace, Managed Resources, Linked Services, Assets, and Dependencies. To create an Azure Machine … Read more

Laravel 9 Form Submit Using jQuery Ajax Using Controller

In this tutorial, we will learn how to submit a form using jQuery Ajax in Laravel 9. Ajax allows us to submit form data without refreshing the page, providing a better user experience. Sure, here’s a summary of each step: Step 1: Set up Laravel 9 Step 2: Create a Form Step 3: Set up the Route Step … Read more

Top PHP Frameworks To Use in 2024

PHP frameworks are software libraries that provide a collection of functions and tools to help developers build web applications more efficiently. They aim to simplify the development process by providing pre-written code that can be reused across different projects, reducing the amount of time required to build a web application from scratch. In this article, we will explore … Read more