Skip to content

Instantly share code, notes, and snippets.

[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 / dkim_rotation.sh
Last active October 27, 2023 15:22
Automatic DKIM key rotation with Cloudflare
#!/usr/bin/env bash
# Read https://www.linode.com/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8 first!
# Run this script at the beginning of each month
# (Optional) Email notification if the script is interrupted
#function notify() {
# printf 'Refer to the logs for further info.\n' | mail -s 'DKIM rotation process was interrupted' 'admin@example.com'
#}
#
@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
@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 / 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 / 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 / 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)",
]