$ uname -r
- Do you have an Github account ? If not create one.
- Install required tools
- Latest Git Client
- gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
We are making CSS/SVG buttons for Google Sign In but the SVGs are giving us trouble. This to debug what's going on and generate new ones.
Took SVG from button builder:
https://developers.google.com/identity/sign-in/web/build-button
and SVG from assets:
# Redis Cheatsheet | |
# All the commands you need to know | |
redis-server /path/redis.conf # start redis with the related configuration file | |
redis-cli # opens a redis prompt | |
# Strings. |
Issue is due to the fact that lineage 14.1 bullhead nightlies are based on the 7.1.2 N2G47F (Apr 2017) monthly update from google.
More explanations in xda-developers.
This assumes:
- you already know a bit about flashing you android device and you already installed TWRP.
The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd
daemon, you'll need a copy of the ClamAV databases.
Inside /your/location/to/brew/etc/clamav, you'll see 2 files:
https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css
<link rel="https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css">
Last updated March 13, 2024
This Gist explains how to sign commits using gpg in a step-by-step fashion. Previously, krypt.co was heavily mentioned, but I've only recently learned they were acquired by Akamai and no longer update their previous free products. Those mentions have been removed.
Additionally, 1Password now supports signing Git commits with SSH keys and makes it pretty easy-plus you can easily configure Git Tower to use it for both signing and ssh.
For using a GUI-based GIT tool such as Tower or Github Desktop, follow the steps here for signing your commits with GPG.
# | |
# File Path : /etc/fail2ban/jail.local | |
# | |
# Please modify the port and logpath that you configured. | |
# | |
[mongo-auth] | |
enabled = true | |
filter = mongo-auth |
const util = require('util'); | |
const Transform = require('stream').Transform; | |
function Slicer (options) { | |
if (!(this instanceof Slicer)) { | |
return new Slicer(options); | |
} | |
Transform.call(this, options); | |
} |