Blog

Articles, guides, and notes on software engineering.

Created a Shell Script to Simplify Git Commands
Application 2017-09-26

Created a Shell Script to Simplify Git Commands

Build interactive shell scripts using select to manage git branch checkouts, remote branch pulls, and local branch deletion.

#Git#Shell Script

Recent Posts

Understanding ES6 Export and Import
Application 2017-09-26

Understanding ES6 Export and Import

Master ES6 module syntax with named and default exports, wildcard imports, aliasing, and modern patterns.

#JavaScript#ES6
When AWS (Elastic Beanstalk) Latency Was Unusually High...
Infrastructure 2017-09-26

When AWS (Elastic Beanstalk) Latency Was Unusually High...

Diagnose and resolve high latency issues on AWS Elastic Beanstalk ELB nodes through systematic investigation and monitoring.

#Amazon Web Service#Elastic Beanstalk
Implementing the Repository Pattern in Laravel
Application 2017-09-26

Implementing the Repository Pattern in Laravel

A smart implementation pattern related to DB operations, let's discuss the repository pattern.

#Laravel#Repository Pattern
Creating Custom Artisan Command in Laravel 5.3
Application 2017-09-26

Creating Custom Artisan Command in Laravel 5.3

Implement custom Laravel Artisan commands to automatically generate repository files and streamline development workflow patterns.

#Laravel#Repository Pattern#artisan
Preparing to Write Tests with SQLite in Laravel 5.4
Testing 2017-09-26

Preparing to Write Tests with SQLite in Laravel 5.4

Configure Laravel 5.4 SQLite testing with in-memory databases, phpunit setup, and database migration automation.

#Laravel#SQLite
Encountering CsrfToken Issues with AJAX in Laravel
Application 2017-09-26

Encountering CsrfToken Issues with AJAX in Laravel

Resolve Laravel CSRF token issues in AJAX requests by configuring VerifyCsrfToken middleware to exclude API routes.

#AJAX#Laravel#React#superagent
Handling CORS with Laravel
Application 2017-09-26

Handling CORS with Laravel

Configure Laravel CORS handling with middleware for cross-origin requests and preflight request support using axios.

#Laravel#CORS
Using Events in Laravel
Application 2017-09-26

Using Events in Laravel

Manage methods you want to trigger during specific events like user registration or withdrawal using event listeners.

#Laravel
Laravel+React+ES6+Browserify
Application 2017-09-26

Laravel+React+ES6+Browserify

Integrate React with Laravel using Browserify and Babel transpilation to write modern ES6 code with proper module support.

#React#JavaScript#npm#webpack#ES6#browserify#ES5
Implementing Forms with Laravel, React, and Superagent
Application 2017-09-26

Implementing Forms with Laravel, React, and Superagent

Build AJAX forms combining Laravel APIs, React components, and Superagent for HTTP requests and validation.

#Laravel#React#AJAX#Superagent
Creating a Rest API with Laravel
Application 2017-09-26

Creating a Rest API with Laravel

Create Laravel REST APIs using ResourceControllers with authentication middleware and JSON responses.

#API#Laravel#React#REST
Notify Bitcoin Asset Status to Slack Using bitFlyer's Private API Part 2
Application 2017-09-26

Notify Bitcoin Asset Status to Slack Using bitFlyer's Private API Part 2

Implement Bitcoin monitoring using async/await, bitFlyer private API authentication, and Slack integration.

#bitflyer#API#async#bitcoin#Node.js
Notify Bitcoin Asset Status on Slack Using bitFlyer's Private API
Application 2017-09-26

Notify Bitcoin Asset Status on Slack Using bitFlyer's Private API

Learn bitFlyer API integration with Node.js, HMAC-SHA256 signing, and Slack webhook message formatting.

#API#Bitcoin#Node.js#bitFlyer
Building a Vagrant Development Environment (CentOS7.3) with Ansible
Infrastructure 2017-09-26

Building a Vagrant Development Environment (CentOS7.3) with Ansible

Configure Vagrant development environments using Ansible automation with PHP, Ruby, Nginx, MySQL, and Redis infrastructure.

#Ansible#CentOS#Vagrant
Got Tired of Typing Directories with the cd Command, So I Made It Easier with a Shell Script
Application 2017-09-26

Got Tired of Typing Directories with the cd Command, So I Made It Easier with a Shell Script

Simplify bash directory navigation using shell scripts with menu selection for faster command-line traversal and productivity.

#bash#shell script
Using dotEnv Environment Variables on the Client Side - dotenv-webpack
Application 2017-09-26

Using dotEnv Environment Variables on the Client Side - dotenv-webpack

Master dotenv-webpack to load environment variables on the client side with webpack and security best practices.

#JavaScript#npm#webpack
Using Notifications in Laravel 5.2
Application 2017-09-26

Using Notifications in Laravel 5.2

Discussion on using Notifications in Laravel 5.2.

#Laravel
Distributing Validation Rules within the FormRequest's rules Method
Application 2017-09-26

Distributing Validation Rules within the FormRequest's rules Method

Distribute conditional validation rules in Laravel FormRequest for multiple forms and REST API request handling.

#Laravel
Writing to Remote Files with Ansible
Infrastructure 2017-09-26

Writing to Remote Files with Ansible

Write and modify remote files using Ansible blockinfile module for infrastructure configuration management and automation.

#Ansible