- Code not run on a VM (i.e. directly compiled to machine code).
- Automatic garbage collection.
- Collection of packages versioned together (e.g. a simple go repo on Github).
- Defined by a
go.modfile placed at its root directory.
| #!/usr/bin/env python3 | |
| """ | |
| Python datetime: https://docs.python.org/3/library/datetime.html | |
| Numpy datetime: https://numpy.org/doc/stable/reference/arrays.datetime.html | |
| Pandas datetime: https://pandas.pydata.org/docs/user_guide/timeseries.html | |
| """ | |
| import argparse | |
| from pathlib import Path | |
| from datetime import datetime | |
| import calendar |
| set style fill solid 0.5; | |
| set xtics rotate | |
| set xlabel "Day"; | |
| set ylabel "MiB"; | |
| # data file passed as a command-line argument (variable ARG1) | |
| # 0: pseudo-column for indexes starting from zero = x-axis | |
| # 2: y-axis=2nd column in file | |
| # xticklabels(1): ticks on x-axis from 1st column in file | |
| plot ARG1 using 0:2:xticlabels(1) title "Daily data usage in MiB" with boxes; |
~/.config/GIMP/3.0/plug-ins.convert (from imagemagick) and img2pdf without the --imgsize option, produce pages of different sizes in the same pdf document.The dependent executable should appear before the libraries it depends on, as order is important (See 1).
All of them are similar to CMake but for Java/Kotlin:
An instrumentation tool for x86, Android..., that targets binary applications.
| #include <limits.h> | |
| #include <string.h> | |
| #include <stdbool.h> | |
| #include <gd.h> | |
| #include "utils.h" | |
| /** | |
| * Print password written beforehand on image with steganography_write.c | |
| * - GD documentation: https://libgd.github.io/manuals/2.1.1/files/preamble-txt.html |
| #include <gd.h> | |
| // C doesn't allow variable length arrays (even using a constant) | |
| #define N_CORNERS 3 | |
| typedef struct { | |
| int x; | |
| int y; | |
| } Point; |