Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
# Zellij | |
context.terminal = ["zellij", "action", "new-pane", "-d", "right", "-c", "--", "bash", "-c"] | |
# Alacritty | |
context.terminal = ["alacritty", "-e", "bash", "-c"] | |
# GNOME Terminal | |
context.terminal = ["gnome-terminal", "--", "bash", "-c"] | |
# GNOME Console |
<?xml version='1.0' standalone='yes'?> | |
<PLUGIN> | |
<!-- | |
A simple plugin to add tmux to unraid | |
--> | |
<FILE Name="/boot/packages/libevent-2.1.12-x86_64-3.txz" Run="upgradepkg --install-new"> | |
<URL>http://slackware.cs.utah.edu/pub/slackware/slackware64-15.0/slackware64/l/libevent-2.1.12-x86_64-3.txz</URL> | |
</FILE> |
shit title placeholder |
username: "Test" | |
password: "123456" |
List of oldest supported version of top 10 Linux Distros and their glibc version according to distrowatch.com.
Out of all versions with published EOLs, 2.12 is the oldest glibc still active, found in CentOS 6.8.
If CentOS 6 and 7 are eliminated, the oldest glibc is 2.23 in Ubuntu and Slackware.
以下所有的API都有两种方式可调用 http://api?key=value&key2=value2 以及 http://api/key/value/key2/value
#!/usr/bin/env python3 | |
from itertools import accumulate | |
from bisect import bisect | |
from random import randrange | |
from unicodedata import name as unicode_name | |
# Set the unicode version. | |
# Your system may not support Unicode 7.0 charecters just yet! So hipster. | |
UNICODE_VERSION = 6 |