Application
216 articles
Modern JS Discussion ─ Proxy
Master JavaScript Proxy objects, trap handlers, target wrapping, and value validation in ES2015 development.
Modern JS Talk──async function
Explore async functions, await expressions, and Promise-based asynchronous processing in modern JavaScript development.
Creating a Custom Router with React and the History API
Implement custom React router using History API with pushState and popstate for SPA navigation without libraries.
Modern JS Talk──Promise
Master Promises for asynchronous operations, chaining with .then(), error handling, and avoiding callback hell.
Modern JS Talk: Arrow Functions
Learn arrow function syntax, lexical this binding, and ES2015 function expressions for modern JavaScript development.
Modern JS Talk──Classes
Explore ES6 class syntax, constructor definitions, getters/setters, and strict mode behavior in modern JavaScript.
Modern JS Talk: Destructuring Assignment
Master destructuring assignment for arrays and objects with default values and aliasing in modern JavaScript.
Modern JS: import and export
Master ES6 import/export statements, named exports, default exports, and module composition in JavaScript development.
Modern JS Discussion: var/let/const
Understand var, let, and const declarations, scope types, hoisting behavior, and temporal dead zone in JavaScript.
Quickly Create a Markdown Editor with React
Create functional React markdown editor with marked library supporting live markdown preview and transformation.
Introducing React to Laravel with Bower
A guide on integrating React into a Laravel project using Bower.
How to Use a Common Template for Error Messages in Laravel
Explains how to handle Laravel error pages with a common template.
Customizing Values Validated by Laravel Form Requests
Learn how to customize the values validated by Laravel form requests.
Excluding Table Names from Laravel's Many-to-Many Relations
Configure Laravel many-to-many relationships with custom pivot table names in Eloquent relationships.
Differences Between redirect('hoge') and redirect()->to('hoge') in Laravel
Understand the differences between redirect() and redirect()->to() helper functions and when to use each.
Learning Design Patterns with PHP - Adapter ~Modifying APIs~
Learn the Adapter pattern to reuse existing code without modification while adapting incompatible interfaces flexibly.
Learning Design Patterns with PHP - Basics of Object-Oriented Programming
Master OOP fundamentals including inheritance, interfaces, traits, static properties, and methods for design pattern study.
Learning Design Patterns with PHP - Singleton: Limiting Instances
Understand the Singleton pattern to control instance creation, restrict access, and manage single object state in PHP.
Learning Design Patterns with PHP - Template Method ~Filling in the Blanks~
Discover the Template Method pattern to aggregate common processes in superclasses and abstract specific subclass implementations.
Encountering '[BABEL] Note: The code generator has deoptimised the styling of' in React
Fix Babel's code generator deoptimization warnings in React through strategic file size optimization and compression techniques.