top of page
Blogs
Jun 22, 2024
Terraform static analysis using tflint
I would like to try using tflint for static analysis of Terraform code in this article. What is tflint? tflint is an open-source linter...
May 9, 2024
[EagerLoad] Which is more useful: “leftJoin” or “with”? [N+1 problem]
N+1 Problem Suppose such a relationship was set up. class Bolg { public function comments(): HasMany { return $this->hasMany(Comment::cla...
Feb 12, 2024
What are the advantages and disadvantages of migrating to cloud servers?
Cloud servers are widely adopted by many companies and organizations due to their cost-effectiveness and convenience. However, there are...
Feb 5, 2024
Pros and Cons of Switching to a Cloud Server
In recent years, the use of cloud services has become the standard for companies and organizations. However, there are many cases where...
Jan 11, 2024
How to Get Detailed Process Information on Windows Machines [Tasklist Command]
You might wonder how everyone checks the process status of their Windows machines. For a quick look, Task Manager or Resource Monitor is...
Dec 22, 2023
ImageMagick and Imagick Installation
The other day, I had to install ImageMagick on Linux, it was quite difficult because it was my first time to install it. First of all,...
Nov 30, 2023
Have You Ever Heard of Christmas Scan?
Speaking of December, there's Christmas. It's been a long time since Santa stopped visiting me, but the glittering cityscapes this time...
Nov 16, 2023
How to Easily Check Resources Across Different AWS Regions
When you want to check the resources, but it's a hassle to check them on the console if they are located in multiple regions… In this...
Sep 19, 2023
A Simple Explanation of Permissions in Linux
What is permission? Directories and files on Linux have defined permissions. Permissions are the rights to manipulate directories and...
Sep 15, 2023
Effortlessly Monitor Resources Across Multiple AWS Regions
When you want to check the resources, but it's a hassle to check them on the console if they are located in multiple regions… In this...
Aug 31, 2023
You Can Modify the Message When You do SSH Login
Did you know that you can change the message you see when you do ssh connect? /etc/motd The contents of the /etc/motd file are output by...
Aug 3, 2023
Developed a Turtle Race with Python Library
I’m going to make turtles compete with each other by using the Python library turtle. You can do a lot of things with turtles like the...
Jul 18, 2023
What is a Public Function? (Access Modifier)
Introduction First of all, the “public” of the public function is called an access modifier, access modifiers allow properties (variables...
Jun 28, 2023
How to Deploy a Lambda Function to Delete EC2 Instance Periodically
When you have many EC2 instances, you may forget to stop instances that you are not using. If you keep running the instances that aren't...
Jun 15, 2023
I Created a CLI Tool to Edit AWS Security Groups in Golang
What is goacl The goacl is a CLI tool written in Golang. You can view a list of AWS security groups and add rules for specific groups....
Jun 1, 2023
[The Object Storages] What’s the Difference Between Amazon S3 and Wasabi
In this article, I’m going to introduce you to the differences between Wasabi (Hot cloud storage) and Amazon S3 (AWS’s object storage)....
May 4, 2023
“ll” is not a command
Many of you may use “ll” instead of the “ls” command. In this article, I’m going to explain what “ll” is and what you should know about...
Apr 27, 2023
Improving Ways to Use Linux Commands
I’m going to introduce Linux commands and options that are smartly used. For example, $ ps auxwwf | grep httpd | grep -v "grep” This one...
Apr 20, 2023
What is PHP Constructor?
What are constructors? A constructor is a method that is always executed when a class is instantiated (made into an object). An usual...
Apr 12, 2023
How to rotate the MySQL slow.log file in log rotation
Have you experienced the MySQL slow.log file that has been accumulating for some time? Don’t you worry, you can use log rotation in this...
bottom of page