stat command

0001-01-01

The stat command on Linux and UNIX-like systems displays status of files including size, inode, and timestamps.

% stat notes.org
  File: notes.org ...
Read More

static analysis

0001-01-01

Static analysis is a software testing method that examines binaries or source code without executing it.

Static analysis is often performed in a ...

Read More

static functions

0001-01-01

Functions are global by default in C. Declaring a function as static limit a function’s scope to the file in which the function was declared.

Read More

static library

0001-01-01

A static library is a software library that is linked into an executable file at compile time, making the library code part of the resulting binary, ...

Read More

static linked

0001-01-01

Read More

static linking

0001-01-01

Static linking occurs during the compilation of a program. A static-linked program copies all of the necessary libraries used in the program’s ...

Read More

static website

0001-01-01

A static website is made of fixed, pre-built files. In contrast, a dynamic website is generated on-demand by a web application.

Read More

static-python

0001-01-01

static-python is a repository maintained by Konstantin Nazarov that helps build a static linked Python interpreter. ...

Read More

stderr

0001-01-01

stderr is the standard error stream in a computer program.

Read More

stdin

0001-01-01

stdin is the standard input stream in a computer program.

Read More