Skip to content

Instantly share code, notes, and snippets.

View SiewYan's full-sized avatar

Siewyan Hoh SiewYan

View GitHub Profile
@SiewYan
SiewYan / latex_in_atom.md
Created August 25, 2021 07:08 — forked from Aerijo/latex_in_atom.md
Setting up Atom for LaTeX

Disclaimer: I wrote the packages language-latex2e, autocomplete-latex, latex-wordcount, and hyperclick-latex. I still try to provide a list of all useful packages though, so let me know if I have missed one.

This is a general guide for how to get started with LaTeX in Atom.

NOTE: This guide assumes you already have LaTeX installed on your computer. If you do not, I recommend TeX Live.

@SiewYan
SiewYan / README.md
Created July 28, 2018 10:19 — forked from magnetikonline/README.md
Bash string manipulation cheatsheet.

Bash string manipulation cheatsheet

Assignment
Assign value to variable if variable is not already set. Value will be returned.

Couple with : no-op if return value is to be discarded.
${variable="value"}
: ${variable="value"}