Skip to content

Instantly share code, notes, and snippets.

@Frederick888
Frederick888 / Cargo.lock
Last active August 14, 2017 06:28
Example files for cargo-outdated
[root]
name = "hello_world"
version = "0.1.0"
dependencies = [
"clap 2.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
"num_cpus 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"term 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
@Frederick888
Frederick888 / gist:82b50aedc3a9d67bc5d43ff345750e26
Created September 26, 2017 17:19
cargo-outdated on rustc
bootstrap
================
Name Project Compat Latest Kind Platform
---- ------- ------ ------ ---- --------
cmake 0.1.25 0.1.26 0.1.26 Normal ---
filetime 0.1.10 0.1.12 0.1.12 Normal ---
gcc 0.3.54 Removed Removed Normal ---
getopts 0.2.14 0.2.15 0.2.15 Normal ---
itoa 0.3.3 0.3.4 0.3.4 Normal ---
libc 0.2.30 0.2.31 0.2.31 Normal ---
@Frederick888
Frederick888 / gpio_read
Created April 10, 2018 14:40
Read mode/value of a specific pin using WiringPi GPIO utility
#!/bin/bash
usage() {
>&2 printf "Usage: $0 -n <phy|wpi> [-p <int>] [-f <mode|value>]\n"
>&2 printf "\t-n\tNumbering rule, physical or wPi\n"
>&2 printf "\t-p\tPin number\n"
>&2 printf "\t-f\tField to read\n"
exit 1
}
@Frederick888
Frederick888 / gnupg-refresh@.service
Created January 24, 2019 07:00
Simple systemd timer to refresh GnuPG public keys
[Unit]
Description=Refreshes GnuPG keys for %I
Requires=network.target network-online.target
After=network.target network-online.target
[Service]
Type=oneshot
User=%i
ExecStart=/usr/bin/gpg --refresh-keys
StandardOutput=journal
@Frederick888
Frederick888 / ycm.log
Created February 6, 2019 02:36
YCM compliation error: failed to initialized index git repository
-- The C compiler identification is AppleClang 10.0.0.10001145
-- The CXX compiler identification is AppleClang 10.0.0.10001145
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works
[2019-07-07T11:14:35.233593+00:00] mongoc: TRACE > ENTRY: _mongoc_linux_distro_scanner_get_distro():389
[2019-07-07T11:14:35.233614+00:00] mongoc: TRACE > ENTRY: _mongoc_linux_distro_scanner_read_key_value_file():154
[2019-07-07T11:14:35.233631+00:00] mongoc: TRACE > ENTRY: _process_line():93
[2019-07-07T11:14:35.233637+00:00] mongoc: TRACE > TRACE: _process_line():121 Found name: Arch Linux
[2019-07-07T11:14:35.233640+00:00] mongoc: TRACE > EXIT: _process_line():128
[2019-07-07T11:14:35.233643+00:00] mongoc: TRACE > ENTRY: _process_line():93
[2019-07-07T11:14:35.233646+00:00] mongoc: TRACE > EXIT: _process_line():128
[2019-07-07T11:14:35.233649+00:00] mongoc: TRACE > ENTRY: _process_line():93
[2019-07-07T11:14:35.233653+00:00] mongoc: TRACE > EXIT: _process_line():128
[2019-07-07T11:14:35.233657+00:00] mongoc: TRACE > ENTRY: _process_line():93
@Frederick888
Frederick888 / mysql-diff.csv
Created August 18, 2019 12:29
Difference of files between AUR and Ubuntu packages
AUR Package AUR File Ubuntu Package Ubuntu File src Path Common File
mysql-community-server /etc/apparmor.d/usr.sbin.mysqld
mysql /etc/conf.d/mysql.conf
mysql /etc/ld.so.conf.d/mysql.conf
mysql-common /etc/mysql/conf.d/mysql.cnf ./mysql/src/mysql-8.0.17/packaging/deb-in/extra/conf.d/mysql.cnf,./mysql/src/mysql-8.0.17/packaging/deb-in/extra/mysql.cnf
mysql /etc/mysql/my.cnf
libmysqlclient /etc/mysql/my.cnf.default
mysql-common /etc/mysql/my.cnf.fallback ./mysql/src/mysql-8.0.17/packaging/deb-in/extra/my.cnf.fallback
mysql-community-server /etc/mysql/mysql.cnf ./mysql/src/mysql-8.0.17/packaging/deb-in/extra/conf.d/mysql.cnf,./mysql/src/mysql-8.0.17/packaging/deb-in/extra/mysql.cnf
mysql-community-server /etc/mysql/mysql.conf.d/mysqld.cnf ./mysql/src/mysql-8.0.17/packaging/deb-in/extra/mysqld.cnf
@Frederick888
Frederick888 / #Usage.md
Created January 28, 2020 04:02
Offloading XDG cache home to tmpfs
  1. Configure /tmp as per fstab, adjust size if needed
  2. Copy xdg-cache.service to /etc/systemd/user/xdg-cache.service
  3. Copy xdg-cache.sh to /usr/local/bin/xdg-cache.sh and then chmod +x /usr/local/bin/xdg-cache.sh
  4. Run systemctl --user enable xdg-cache.service as the user that needs this service
@Frederick888
Frederick888 / control.sh
Last active April 21, 2020 09:31
Bash script to pull latest Docker container, (re)start container if needed, and clean up dangling images
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" > /dev/null && pwd )"
IMAGE=
TAG='latest'
CONTAINER=
function printf() {
format="\e[1;31m$1\e[m"
shift
@Frederick888
Frederick888 / 1-diff-from-neovim-0.4.3.diff
Created April 26, 2020 15:19
Simplified NeoVim man.vim for GNU Linux
--- /usr/share/nvim/runtime/autoload/man.vim 2020-03-31 21:23:02.000000000 +1100
+++ ./man.vim 2020-04-27 01:04:54.716553901 +1000
@@ -8,31 +8,8 @@
let s:find_arg = '-w'
let s:localfile_arg = v:true " Always use -l if possible. #6683
let s:section_arg = '-s'
-function! s:init_section_flag()
- call system(['env', 'MANPAGER=cat', 'man', s:section_arg, '1', 'man'])
- if v:shell_error