-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00fb167
commit 1e89df6
Showing
291 changed files
with
2,209 additions
and
558 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# audtool | ||
|
||
> Control Audacious using commands. | ||
> See also: `audacious`. | ||
> More information: <https://manned.org/audtool>. | ||
- Play/pause audio playback: | ||
|
||
`audtool playback-playpause` | ||
|
||
- Print artist, album, and song name of currently playing song: | ||
|
||
`audtool current-song` | ||
|
||
- Set volume of audio playback: | ||
|
||
`audtool set-volume {{100}}` | ||
|
||
- Skip to the next song: | ||
|
||
`audtool playlist-advance` | ||
|
||
- Print the bitrate of the current song in kilobits: | ||
|
||
`audtool current-song-bitrate-kbps` | ||
|
||
- Open Audacious in full-screen if hidden: | ||
|
||
`audtool mainwin-show` | ||
|
||
- Display help: | ||
|
||
`audtool help` | ||
|
||
- Display settings: | ||
|
||
`audtool preferences-show` |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
# compare | ||
|
||
> Create a comparison image to visually annotate the difference between two images. | ||
> Part of ImageMagick. | ||
> More information: <https://imagemagick.org/script/compare.php>. | ||
> This command is an alias of `magick compare`. | ||
- Compare two images: | ||
- View documentation for the original command: | ||
|
||
`compare {{path/to/image1.png}} {{path/to/image2.png}} {{path/to/diff.png}}` | ||
|
||
- Compare two images using the specified metric: | ||
|
||
`compare -verbose -metric {{PSNR}} {{path/to/image1.png}} {{path/to/image2.png}} {{path/to/diff.png}}` | ||
`tldr magick compare` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,9 @@ | ||
# convert | ||
|
||
> Convert between image formats, scale, join, and create images, and much more. | ||
> Part of ImageMagick. | ||
> More information: <https://imagemagick.org/script/convert.php>. | ||
> This command is an alias of `magick convert`. | ||
> Note: this alias is deprecated since ImageMagick 7. It has been replaced by `magick`. | ||
> Use `magick convert` if you need to use the old tool in versions 7+. | ||
- Convert an image from JPEG to PNG: | ||
- View documentation for the original command: | ||
|
||
`convert {{path/to/input_image.jpg}} {{path/to/output_image.png}}` | ||
|
||
- Scale an image to 50% of its original size: | ||
|
||
`convert {{path/to/input_image.png}} -resize 50% {{path/to/output_image.png}}` | ||
|
||
- Scale an image keeping the original aspect ratio to a maximum dimension of 640x480: | ||
|
||
`convert {{path/to/input_image.png}} -resize 640x480 {{path/to/output_image.png}}` | ||
|
||
- Horizontally append images: | ||
|
||
`convert {{path/to/image1.png path/to/image2.png ...}} +append {{path/to/output_image.png}}` | ||
|
||
- Vertically append images: | ||
|
||
`convert {{path/to/image1.png path/to/image2.png ...}} -append {{path/to/output_image.png}}` | ||
|
||
- Create a GIF from a series of images with 100ms delay between them: | ||
|
||
`convert {{path/to/image1.png path/to/image2.png ...}} -delay {{10}} {{path/to/animation.gif}}` | ||
|
||
- Create an image with nothing but a solid red background: | ||
|
||
`convert -size {{800x600}} "xc:{{#ff0000}}" {{path/to/image.png}}` | ||
|
||
- Create a favicon from several images of different sizes: | ||
|
||
`convert {{path/to/image1.png path/to/image2.png ...}} {{path/to/favicon.ico}}` | ||
`tldr magick convert` |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# cypher-shell | ||
|
||
> Open an interactive session and run Cypher queries against a Neo4j instance. | ||
> See also: `neo4j-admin`, `mysql`. | ||
> More information: <https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/>. | ||
- Connect to a local instance on the default port (`neo4j://localhost:7687`): | ||
|
||
`cypher-shell` | ||
|
||
- Connect to a remote instance: | ||
|
||
`cypher-shell --address neo4j://{{host}}:{{port}}` | ||
|
||
- Connect and supply security credentials: | ||
|
||
`cypher-shell --username {{username}} --password {{password}}` | ||
|
||
- Connect to a specific database: | ||
|
||
`cypher-shell --database {{database_name}}` | ||
|
||
- Execute Cypher statements in a file and close: | ||
|
||
`cypher-shell --file {{path/to/file.cypher}}` | ||
|
||
- Enable logging to a file: | ||
|
||
`cypher-shell --log {{path/to/file.log}}` | ||
|
||
- Display help: | ||
|
||
`cypher-shell --help` |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# devenv | ||
|
||
> Fast, Declarative, Reproducible and Composable Developer Environments using Nix. | ||
> More information: <https://devenv.sh>. | ||
- Initialise the environment: | ||
|
||
`devenv init` | ||
|
||
- Enter the Development Environment with relaxed hermeticity (state of being airtight): | ||
|
||
`devenv shell --impure` | ||
|
||
- Get detailed information about the current environment: | ||
|
||
`devenv info --verbose` | ||
|
||
- Start processes with `devenv`: | ||
|
||
`devenv up --config /{{file}}/{{path}}/` | ||
|
||
- Clean the environment variables and re-enter the shell in offline mode: | ||
|
||
`devenv --clean --offline` | ||
|
||
- Delete the previous shell generations: | ||
|
||
`devenv gc` |
Oops, something went wrong.