Table of Contents
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
| syntax on | |
| set ruler " Show the line and column numbers of the cursor. | |
| set formatoptions+=o " Continue comment marker in new lines. | |
| set textwidth=0 " Hard-wrap long lines as you type them. | |
| set modeline " Enable modeline. | |
| set esckeys " Cursor keys in insert mode. | |
| set linespace=0 " Set line-spacing to minimum. | |
| set nojoinspaces " Prevents inserting two spaces after punctuation on a join (J) | |
| " More natural splits | |
| set splitbelow " Horizontal split below current. |
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
| # file /nightlies/jenkins/workspace/nightly-slot-checkout/tmp/checkout/DBASE/Gen/DecFiles/v28r1/options/13104013.py generated: Wed, 12 Aug 2015 15:32:33 | |
| # | |
| # Event Type: 13104013 | |
| # | |
| # ASCII decay Descriptor: [B_s0 -> (phi(1020) -> K+ K-) (phi(1020) -> K+ K-)]cc | |
| # | |
| from Gaudi.Configuration import * | |
| #importOptions( "$DECFILESROOT/options/B2PhiPhi.py" ) | |
| from Configurables import Generation | |
| Generation().EventType = 13104013 |
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
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
| # Compile latex files online using https://latexonline.cc | |
| # Overleaf | |
| # Usage | |
| https://latexonline.cc/compile?git=https://git.overleaf.com/{id}&target={filename}.tex | |
| # Example | |
| https://latexonline.cc/compile?git=https://git.overleaf.com/9212267nmctrvktqxnf&target=main.tex | |
| # Github |
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.
- Copy content of
vsix-bookmarklet, create a bookmark in your browser. - Navigate to the web page of the VS Code extension you want to install.
- Click the bookmark you just created, then click the download button.

- After download finished, rename the file extension to
*.vsix. - In VS Code, select Install from VSIX... in the extension context menu.

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
| alias l='exa -1a' # Lists in one column, hidden files. | |
| alias ll='exa -l' # Lists human readable sizes. | |
| alias lr='ll -R' # Lists human readable sizes, recursively. | |
| alias la='ll -a' # Lists human readable sizes, hidden files. | |
| alias lm='la | "$PAGER"' # Lists human readable sizes, hidden files through pager. | |
| alias lx='ll --sort=Extension' # Lists sorted by extension (GNU only). | |
| alias lk='ll --sort=size -r' # Lists sorted by size, largest last. | |
| alias lt='ll --sort=modified -r' # Lists sorted by date, most recent last. | |
| alias lc='lt -m' # Lists sorted by date, most recent last, shows change time. | |
| alias lu='lt -u' # Lists sorted by date, most recent last, shows access time. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| require 'execjs' | |
| module Katex | |
| class << self | |
| JS_FILENAME = 'vendor/katex/katex.min.js' | |
| JS_CTX = ::ExecJS.compile(File.read(JS_FILENAME)) | |
| INLINE_REGEX = /\\\((.*?)\\\)/m.freeze | |
| DISPLAY_REGEX = /\\\[(.*?)\\\]/m.freeze |