Lastest Wiki


  1. FrankenPHP: A modern app server for PHP, written in Go

    FrankenPHP is a modern application server for PHP apps, built on top of the Caddy web server. It has features such as worker mode, real-time capabilities, automatic HTTPS, HTTP/2, and HTTP/3 support.

    2023/12/08 php FrankenPHP

  2. PHP 8.3 typed class constants, a json_validate function, override attribute and more

    The PHP team has released PHP 8.3 today with typed class constants, a json_validate() function, dynamically fetching a class constant, and more

    2023/11/24 php

  3. Understanding Arithmetic Operator Precedence and Associativity

    Arithmetic operators are the backbone of mathematical operations in programming, enabling developers to perform calculations. To master these operators, it's essential to grasp not only their basic functionality but also how parentheses influence operator precedence and associativity.

    2023/09/22 Arithmetic

  4. Creating and Adding Custom Browser Extensions: A Step-by-Step Guide

    Creating a custom browser extension can be a rewarding project, as it allows you to add functionality to your web browser tailored to your needs. In this blog post, we'll walk through the process of creating and adding a custom browser extension for Google Chrome.

    2023/09/15 Extension

  5. Unlocking the Power of Full-Text Search in MySQL

    Chunking is a technique used in Laravel to process large datasets efficiently by breaking them into smaller segments or "chunks." Instead of retrieving and processing all records at once, you can fetch a specific number of records at a time and process them iteratively.

    2023/09/10 MySQL

  6. Laravel Limiting Chunk Collection: How to Chunk Results from a Custom Query

    Chunking is a technique used in Laravel to process large datasets efficiently by breaking them into smaller segments or "chunks." Instead of retrieving and processing all records at once, you can fetch a specific number of records at a time and process them iteratively.

    2023/09/09 Laravel PHP

  7. Embedding Struct in Go

    When you embed a struct within another struct, the fields and methods of the embedded struct become part of the outer struct. You can access these fields and methods directly from the outer struct.

    2023/09/06 Golang

  8. Mastering Git Squash: Streamlining Your Commit History

    Git is a powerful and popular version control system that allows you to track changes in your code and collaborate with other developers. However, sometimes you may end up with a messy commit history that makes it hard to understand what you did and why.

    2023/08/30 Git

  9. NativePHP is a new way to build native applications

    NativePHP is a PHP framework that makes it easy to create native desktop applications. NativePHP is a new framework for rapidly building rich, native desktop applications using PHP. If you're already a PHP developer, you'll feel right at home. If you're new to PHP, we think you'll find NativePHP easy to pick up and use.

    2023/08/25 PHP NativePHP

  10. Go Lang Unmarshall show errors

    When you are Unmarshalling JSON in GO, you would probably get some error at some time regarding JSON format, fields or value types etc,..

    2023/08/16 Development Golang