top of page

Blogs

The Impact of PHP Version and How to Check it
Using an old version of PHP can lead to security vulnerabilities and other issues. Here's how you can check your PHP version. How to...
May 21, 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...
May 9, 2024


Retrieve the ECS image ID using Alibaba Cloud CLI
Introduction This time, I'd like to try obtaining the image ID of the Alibaba Cloud virtual server environment "ECS (Elastic Compute...
Mar 15, 2024

【Support End】What will happen if CentOS 7 is left as it is?
As of June 30, 2024, the community support for "CentOS 7" will end (EOL), posing a significant challenge for many users. Of course,...
Jan 18, 2024
![[Introduction to Scraping] Retrieving Table Data from Websites with Python](https://static.wixstatic.com/media/9cfabe_4892edbe12f147939497661938bf4cb2~mv2.png/v1/fill/w_454,h_341,fp_0.50_0.50,q_95,enc_avif,quality_auto/9cfabe_4892edbe12f147939497661938bf4cb2~mv2.webp)
[Introduction to Scraping] Retrieving Table Data from Websites with Python
In recent years, data analysis has gained significant attention, and scraping is one of the fundamental techniques for it. It primarily...
Jan 5, 2024

How to create virtual environment using Python's “venv”
In this tutorial, I’m going to create a virtual environment using Python's venv. What is venv? venv is a module introduced in Python...
Oct 20, 2023

Getting Started with Ansible for Infrastructure as Code (Practice)
Last time, I wrote about introducing the Ansible tool and its installation. In this article, I'd like to delve into how to actually run...
Sep 20, 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 19, 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 31, 2023
![[Linux] What do “~”, “$” and “#” Mean at the End of the Command Line?](https://static.wixstatic.com/media/9cfabe_2288ed2c444f4bcbbb8504f60e2f33b8~mv2.png/v1/fill/w_454,h_341,fp_0.50_0.50,q_95,enc_avif,quality_auto/9cfabe_2288ed2c444f4bcbbb8504f60e2f33b8~mv2.webp)
[Linux] What do “~”, “$” and “#” Mean at the End of the Command Line?
Related terms and commands What do the symbols on the Linux command line mean? I’m going to explain each of the symbols' meanings....
Aug 25, 2023

Demystifying '...' in ES2015: Exploring the Newly Added Spread Syntax
Hello! I’m going to talk about the spread syntax that can be used to expand arrays, etc. that are added to ES2015. What’s spread syntax?...
Aug 17, 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...
May 4, 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 27, 2023


How to Display Command History in Linux OS
The “history” command is being used for displaying a list of commands that have been run. The history command Display a list of commands...
Feb 15, 2023


【For Linux Beginners】How to Edit and Save With the vi Command
Hello! I’m going to talk about the vi command which is for editing files in Linux. There are so many options…! The vi command is a...
Feb 2, 2023

Fun Linux Command Package
I’m writing this article for you who might be tired from working so hard. I hope this will help you to refresh a bit! Environment cat...
Jan 10, 2023


How to Check Disk Space
The df command is a command to see how much free disk space is left and manage disk space. Since a lot of data remains in the disk day by...
Dec 26, 2022


The Reason Why the Unlink Command is Better to Delete Symbolic Links
Hello, Recently I had a chance to deal with symbolic links when I had to renew an SSL certificate. Therefore, when I was doing research...
Dec 12, 2022

How to Check Global IP Address with Commands
Hello! I recently realized that how to check global IP addresses is slightly different depending on the person. So I’d like to talk about...
Dec 6, 2022

Setting Up Basic Authentication with Apache
Used Software virtualbox version 6.1 vagrant version 2.2.19 vagrant box: centos/7 apache version 2.4.6 What is Basic Authentication? In...
Oct 5, 2022
bottom of page