Azwar's Blog
-
-
-
-
Web Security Best Practices: Protecting WordPress and Laravel Applications
Learn essential web security practices for WordPress and Laravel applications. Discover how to protect against common vulnerabilities, implement secure authentication, and safeguard user data.
Give Your GitHub Repos a Makeover with VSCode's Material Icons
Today, I will show you how to give your GitHub repos a step-by-step makeover with VS Code's Material Icons. Let's dive in.
Building RESTful APIs: WordPress and Laravel API Development Guide
Learn how to build robust RESTful APIs using WordPress REST API and Laravel. Discover authentication, validation, documentation, and best practices for API development.
Website Performance Optimization: Speed Up WordPress and Laravel Applications
Learn essential performance optimization techniques for WordPress and Laravel applications. Discover caching strategies, database optimization, and frontend optimization to improve website speed.
Responsive Web Design: Creating Mobile-First Websites with CSS and JavaScript
Master responsive web design with mobile-first approach. Learn CSS Grid, Flexbox, media queries, and JavaScript techniques to create websites that work perfectly on all devices.
Built a 500 commits GitHub Repository: 10 essential steps you can't miss
A 500 commits Side Project is born, let's dive into how Azwar did it!
💯✅ LeetCode 2181. Merge Nodes in Between Zeros | Go
You are given the head of a linked list, which contains a series of integers separated by 0's. The beginning and end of the linked list will have Node.val == 0.
💯✅ LeetCode 1480. Running Sum of 1d Array | Go
Given an array nums
. We define a running sum of an array as runningSum[i] = sum(nums[0]...nums[i])
. Return the running sum of nums
.