Quick guide on how to setup git signing. Information is aggregated from following sources:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
${CONTENT} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
π Morning 48 commits βββββββββββββββββββββ 5.1% | |
π Daytime 277 commits βββββββββββββββββββββ 29.2% | |
π Evening 411 commits βββββββββββββββββββββ 43.3% | |
π Night 214 commits βββββββββββββββββββββ 22.5% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Install oh-my-zsh | |
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" | |
2. Clone necessary plugins. | |
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions | |
git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
3. Add plugins to ~/.zshrc as | |
plugins = ( [plugins...] zsh-autosuggestions history-substring-search zsh-syntax-highlighting) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
β Total Stars: 0 | |
β Total Commits: 1,226 | |
π Total PRs: 80 | |
π© Total Issues: 25 | |
π¦ Contributed to: 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## /usr/share/X11/xkb/symbols/altwin | |
partial modifier_keys | |
xkb_symbols "meta_alt" { | |
key <LALT> { [ Alt_L, Meta_L ] }; | |
key <RALT> { | |
type[Group1] = "TWO_LEVEL", | |
symbols[Group1] = [ Alt_R, Meta_R ] }; -> symbols[Group1] = [ Hangul ] }; | |
modifier_map Mod1 { Alt_L, Alt_R, Meta_L, Meta_R }; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const purpose = "Purpose: deobfuscate odttf file (extracted from M$ XPS file)" | |
const usage = "Usage: node deobfuscate-odttf-in-xps.js <guid-obfuscated-font-file.odttf> [<output-file.ttf>]" | |
const obfuscatedStartOffset = 0 //start of obfuscated bytes in font file | |
const obfuscatedEndOffset = 32 //start of obfuscated bytes in font file | |
const guidSize = 32 // length of GUID string (only hex characters included) | |
const fs = require('fs') | |
const path = require('path') |
./gradlew compileJava --continuous --parallel --build-cache --configuration-cache
./gradlew bootRun