Introduction JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy for humans to read and write and easy for machines to parse and generate. In JavaScript, JSON i...
[javascript] json read/write/update method (code example and explanation)
[go] json read/write/update method (code example and explanation)
Introduction JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate. In Go, handling JSON ...
[go] dfs bfs template code and sample code
Introduction Depth-First Search (DFS) and Breadth-First Search (BFS) are fundamental algorithms in graph theory. These algorithms are commonly used in various applications such as pathfinding, net...
[javascript] dfs bfs template code and sample code
Introduction Depth-first search (DFS) and breadth-first search (BFS) are common algorithms used in graph traversal. In this blog post, we will explore template code for implementing DFS and BFS in...
[python] dfs bfs template code and sample code
Introduction When it comes to solving graph-related problems, Depth-First Search (DFS) and Breadth-First Search (BFS) are two fundamental algorithms that are commonly used. In this blog post, we w...
[python] json read/write/update method (code example and explanation)
Introduction JSON (JavaScript Object Notation) is a lightweight data interchange format commonly used for storing and transmitting data on the web. In Python, the json module provides methods for ...
[linux] Understanding halt command in Linux
Introduction In Linux, the halt command is used to shut down or halt the system. It is a straightforward way to power off the machine in an orderly manner. When you issue the halt command, it will...
[python] Mastering Dates and Times in Python
Introduction Dealing with dates and times is a common task in programming, and Python provides a powerful module called datetime to handle this. In this blog post, we will explore how to work with...
[linux] Understanding the Shutdown Command in Linux
Introduction In the world of Linux, managing system shutdowns is a common task for system administrators. The shutdown command is a powerful tool that allows users to safely power off or reboot th...
[linux] An Introduction to Emacs in Linux
What is Emacs? Emacs is a powerful, customizable, and extensible text editor primarily used in Unix-like operating systems. It was created by Richard Stallman in the 1970s and has since gained a s...