Skip to content

Clay

[Linux] Explanation Of Sticky Bit (chmod 1777)

Introduction

The sticky bit is an interesting application in Unix and Unix-like systems. It represents a special permission setting that offers more nuanced operations for files and directories. Most are familiar with file permissions, categorized into three distinct types: rwx (read, write, execute). The sticky bit goes a step further by regulating the rights to "delete" and "rename" files.

Read More »[Linux] Explanation Of Sticky Bit (chmod 1777)

Installation Of Neo4j Graph Database And Use It By Python

Introduction

Neo4j is a graph database. Unlike traditional databases, the focus of a graph database is the "graph", which means the relationships and connections between nodes (entities). Each node can represent an object (such as people, things, places...), and edges represent the relationships between nodes (such as friends, owns, located at...)

Read More »Installation Of Neo4j Graph Database And Use It By Python