-
Notifications
You must be signed in to change notification settings - Fork 3
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
d7558f6
commit 8181787
Showing
4,271 changed files
with
45,292 additions
and
5,393 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# aapt | ||
|
||
> Android Asset Packaging Tool. | ||
> Compile and package an Android app's resources. | ||
|
||
- List files contained in an APK archive: | ||
|
||
`aapt list {{path/to/app.apk}}` | ||
|
||
- Display an app's metadata (version, permissions, etc.): | ||
|
||
`aapt dump badging {{path/to/app.apk}}` | ||
|
||
- Create a new APK archive with files from the specified directory: | ||
|
||
`aapt package -F {{path/to/app.apk}} {{path/to/directory}}` |
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,24 @@ | ||
# abduco | ||
|
||
> Terminal session manager. | ||
> More information: <http://www.brain-dump.org/projects/abduco/>. | ||
|
||
- List sessions: | ||
|
||
`abduco` | ||
|
||
- Attach to a session, creating it if it doesn't exist: | ||
|
||
`abduco -A {{name}} {{bash}}` | ||
|
||
- Attach to a session with `dvtm`, creating it if it doesn't exist: | ||
|
||
`abduco -A {{name}}` | ||
|
||
- Detach from a session: | ||
|
||
`Ctrl + \` | ||
|
||
- Attach to a session in read-only mode: | ||
|
||
`abduco -Ar {{name}}` |
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 @@ | ||
# act | ||
|
||
> Execute GitHub Actions locally using Docker. | ||
> More information: <https://github.com/nektos/act>. | ||
|
||
- List the available actions: | ||
|
||
`act -l` | ||
|
||
- Run the default event: | ||
|
||
`act` | ||
|
||
- Run a specific event: | ||
|
||
`act {{event_type}}` | ||
|
||
- Run a specific action: | ||
|
||
`act -a {{action_id}}` | ||
|
||
- Do not actually run the actions (i.e. a dry run): | ||
|
||
`act -n` | ||
|
||
- Show verbose logs: | ||
|
||
`act -v` |
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,24 @@ | ||
# alacritty | ||
|
||
> Cross-platform, GPU-accelerated terminal emulator. | ||
> More information: <https://github.com/jwilm/alacritty>. | ||
|
||
- Open a new alacritty window: | ||
|
||
`alacritty` | ||
|
||
- Run in a specific directory: | ||
|
||
`alacritty --working-directory {{path/to/directory}}` | ||
|
||
- Run a command in a new alacritty window: | ||
|
||
`alacritty -e {{command}}` | ||
|
||
- Specify alternative configuration file (defaults to $XDG_CONFIG_HOME/alacritty/alacritty.yml): | ||
|
||
`alacritty --config-file {{path/to/config.yml}}` | ||
|
||
- Run with live config reload enabled (can also be enabled by default in alacritty.yml): | ||
|
||
`alacritty --live-config-reload --config-file {{path/to/config.yml}}` |
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,21 @@ | ||
# alex | ||
|
||
> A tool that catches insensitive, inconsiderate writing. | ||
> It helps you find gender favouring, polarising, race related, religion inconsiderate, or other unequal phrasing in text. | ||
> More information: <https://github.com/get-alex/alex>. | ||
|
||
- Analyze text from `stdin`: | ||
|
||
`echo {{His network looks good}} | alex --stdin` | ||
|
||
- Analyze all files in the current directory: | ||
|
||
`alex` | ||
|
||
- Analyze a specific file: | ||
|
||
`alex {{textfile.md}}` | ||
|
||
- Analyze all markdown files except `example.md`: | ||
|
||
`alex *.md !{{example.md}}` |
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,16 @@ | ||
# androguard | ||
|
||
> Reverse engineering tool for Android applications. Written in Python. | ||
> More information: <https://github.com/androguard/androguard>. | ||
|
||
- Display Android app manifest: | ||
|
||
`androguard axml {{path/to/app.apk}}` | ||
|
||
- Display app metadata (version and app ID): | ||
|
||
`androguard apkid {{path/to/app.apk}}` | ||
|
||
- Decompile Java code from an app: | ||
|
||
`androguard decompile {{path/to/app.apk}} --output {{path/to/directory}}` |
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,16 @@ | ||
# ansiweather | ||
|
||
> A shell script for displaying the current weather conditions in your terminal. | ||
> More information: <https://github.com/fcambus/ansiweather>. | ||
|
||
- Display a forecast using metric units for the next five days for Rzeszow, Poland: | ||
|
||
`ansiweather -u {{metric}} -f {{5}} -l {{Rzeszow,PL}}` | ||
|
||
- Display a forecast showing symbols and daylight data for your current location: | ||
|
||
`ansiweather -s {{true}} -d {{true}}` | ||
|
||
- Display a forecast showing wind and humidity data for your current location: | ||
|
||
`ansiweather -w {{true}} -h {{true}}` |
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
Oops, something went wrong.