cheatsheets/index.md Markdown · master
cheatsheets/shell/links.md Markdown · master
- [ln][] command cheatsheet. [ln]: {% link cheatsheets/shell/commands/ln.md %}
cheatsheets/web/analytics.md Markdown · master
For approaches to adding analytics to a Jekyll site, see the [Jekyll Analytics][] cheatsheet. [Jekyll Analytics]: {% link cheatsheets/jekyll/templating/analytics.md %}
cheatsheets/shell/searching.md Markdown · master
- [fzf][] - find files by name using fuzzy search pattern
- [rg][] - search contents across files, using
.gitignore. - [bat][] - find a pattern within a file. [fzf]: {% link cheatsheets/shell/commands/fzf.md %} [bat]: {% link cheatsheets/shell/commands/bat.md %} [rg]: {% link cheatsheets/shell/commands/grep/rg.md %}
- [All filters]({% link cheatsheets/jekyll/liquid/all-filters.md %})
cheatsheets/data/base64.md Markdown · master See [Python Base 64][] cheatsheet for more info. [Python Base 64]: {% link cheatsheets/python/strings/encoding/base64.md %}
cheatsheets/web/requests.md Markdown · master See also [Shell requests][] for doing requests from the command-line. [Shell requests]: {% link cheatsheets/shell/requests.md %}
cheatsheets/shell/dotenv-file.md Markdown · master [export command]: {% link cheatsheets/shell/commands/export.md %} [Python dotenv]: {% link cheatsheets/python/configs/dotenv.md %}
cheatsheets/shell/architecture.md Markdown · master With [uname][] [uname]: {% link cheatsheets/shell/commands/uname.md %}
$ uname -m
cheatsheets/typescript/classes.md
Markdown
·
master
See also [JavaScript Classes][] cheatsheet.
[JavaScript Classes]: {% link cheatsheets/javascript/general/classes.md %}
## Class syntax
cheatsheets/python/environment.md
Markdown
·
master
Related - see [dot-env][] cheatsheet for reading environment variables in your Python application.
[dot-env]: {% link cheatsheets/python/configs/dotenv.md %}
## Read values
cheatsheets/shell/sudoers.md
Markdown
·
master
See the [Users][] cheatsheet for creating a user and adding them to the sudo group.
[Users]: {% link cheatsheets/shell/user.md %}
## View manpage
cheatsheets/markdown/blockquotes.md
Markdown
·
master
…on GitHub [here](https://github.com/MichaelCurrin/dev-cheatsheets/blob/master/cheatsheets/markdown/blockquote.md#icons…
cheatsheets/shell/cross-language.md
Markdown
·
master
---
description: How to run a shell command from another language
---
# Cross language
- [Python]({% link cheatsheets/python/shell.md %})
- [Ruby]({% link cheatsheets/ruby/shell.md %})
cheatsheets/package-managers/lock.md
Markdown
·
master
How to pin packages at version or range.
- [NPM package versions]({% link cheatsheets/package-managers/javascript/npm/versions.md %})
- [Python pip package versions]({% link cheatsheets/package-managers/python/pip/versions.md %})
- [Ruby gem versions]({% link cheatsheets/package-managers/ruby/versions.md %})
cheatsheets/javascript/typescript.md
Markdown
·
master
---
logo: typescript
---
# TypeScript
This section has moved [here]({% link cheatsheets/typescript/index.md %}).
cheatsheets/go/code/map.md
Markdown
·
master
- [JSON][] cheatsheet for converting a JSON string to a map.
[JSON]: {% link cheatsheets/go/code/json.md %}
## Syntax
cheatsheets/python/template-projects.md
Markdown
·
master
## Related
- [Python libraries][] or packages cheatsheets.
- [Package managers][] Python cheatsheets for using pip and similar tools.
[Python libraries]: {% link cheatsheets/python/libraries/index.md %}
Show 1 more match
cheatsheets/python/random.md
Markdown
·
master
See [String Constants][] page for more info on the `string` module's values.
[String Constants]: {% link cheatsheets/python/strings/constants.md %}
Note use of `.choices` to get multiple values.
cheatsheets/go/packages/fmt.md
Markdown
·
master
- [Printing][] cheatsheets
[Printing]: {% link cheatsheets/go/code/printing/index.md %}