Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion specs/android/push_deeplink_onto_android_device.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags:
description: Uses adb to push a deeplink onto an Android device.
arguments:
- name: your_app_package_name
description: The package name of the app that you want to recieve the deeplink.
description: The package name of the app that you want to receive the deeplink.
default_value: com.my.app.package
- name: deeplink
description: The deeplink you want to send (eg. `app://open.my.app`)
Expand Down
2 changes: 1 addition & 1 deletion specs/android/send_firebase_push_notification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tags:
description: Uses adb to push a Firebase push notification to your local emulator
arguments:
- name: your_app_package_name
description: The package name of the app that you want to recieve the notification. It has to have implemented the reciever for it to work.
description: The package name of the app that you want to receive the notification. It has to have implemented the receiver for it to work.
default_value: com.my.app.package
- name: notification_title
description: The title of the notification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ tags:
description: "Install a specific version of a formula using Homebrew. To list all available versions, you can run `brew search {{formula_name}}@`."
arguments:
- name: formula_name
description: The fomula to install
description: The formula to install
default_value: ~
- name: version_name
description: "The version of the formula to install. You can ensure this version is availalble on homebrew by running `brew search {{formula_name}}`"
description: "The version of the formula to install. You can ensure this version is available on homebrew by running `brew search {{formula_name}}`"
default_value: ~
source_url: "https://stackoverflow.com/questions/3987683/homebrew-install-specific-version-of-formula"
author: Debilski
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tags:
- file manipulation
- sed
- grep
description: Replaces all occurences of a string recursively within a directory
description: Replaces all occurrences of a string recursively within a directory
arguments:
- name: old_text
description: The text that should be replaced
Expand Down
2 changes: 1 addition & 1 deletion specs/file_manipulation/sort_a_file_by_line_length.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ command: "cat {{file_name}} | awk '{ print length, $0 }' | sort -n -s | cut -d\"
tags:
- file manipulation
- awk
description: "Sorts a text file by line length (including spaces). The `-s` flag indicates that any lines that are the same length are kept in the relative order that they ocurred in the input."
description: "Sorts a text file by line length (including spaces). The `-s` flag indicates that any lines that are the same length are kept in the relative order that they occurred in the input."
arguments:
- name: file_name
description: The name of the file to sort.
Expand Down
2 changes: 1 addition & 1 deletion specs/git/modify_the_most_recent_commit_message.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Modify the most recent commit message
command: "git commit --amend -m \"{{new_commit_message}}\""
tags:
- git
description: "Ammends the most recent git commit with a new message. This will not update the commit on a remote branch unless you force push the branch,"
description: "Amends the most recent git commit with a new message. This will not update the commit on a remote branch unless you force push the branch,"
arguments:
- name: new_commit_message
description: The new commit message
Expand Down
2 changes: 1 addition & 1 deletion specs/git/squash_last_n_commits_together.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Squash last n commits together
command: "git reset --soft HEAD~{{num_commits}} && git commit"
tags:
- git
description: "Squashes the last n commits together. This approach requires rewriting a commit message for the new sqashed changes, unlike running `git rebase`."
description: "Squashes the last n commits together. This approach requires rewriting a commit message for the new squashed changes, unlike running `git rebase`."
arguments:
- name: num_commits
description: The number of commits that should be squashed together
Expand Down
2 changes: 1 addition & 1 deletion specs/git/undo_git_add.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Undo git add
command: "git reset {{file}}"
tags:
- git
description: "Removes a file that was staged for commit by `git add`. Executing `git reset` withou any file name will unstage all changes."
description: "Removes a file that was staged for commit by `git add`. Executing `git reset` without any file name will unstage all changes."
arguments:
- name: file
description: The file to unstage
Expand Down
2 changes: 1 addition & 1 deletion specs/shell/chain_commands_together_pipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Chain commands together by forwarding output as input to the next command
command: "{{command_1}} | {{command_2}}"
tags:
- shell
description: Executs command_1 and passes the output as input to command_2
description: Executes command_1 and passes the output as input to command_2
arguments:
- name: command_1
description: The first command to run (whose output will be passed to the second command)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ command: "pgloader mysql://{{mysql_username}}:{{mysql_password}}@{{mysql_hostnam
tags:
- postgresql
- mysql
description: Loads data from the MySQL database, transforms it to PostgresSQL compatible format and uploads it to the PostgresSQL database. Note - it requires pgloader to be installed and both PostgresSQL and MySQL hosts are accessible from the machine running this script.
description: Loads data from the MySQL database, transforms it to PostgreSQL compatible format and uploads it to the PostgreSQL database. Note - it requires pgloader to be installed and both PostgreSQL and MySQL hosts are accessible from the machine running this script.
arguments:
- name: mysql_username
description: The username for the MySQL database.
Expand All @@ -22,21 +22,21 @@ arguments:
description: The name of the MySQL database.
default_value: ~
- name: postgres_username
description: The username for the Postgres database.
description: The username for the PostgreSQL database.
default_value: ~
- name: postgres_password
description: The password for the Postgres database.
description: The password for the PostgreSQL database.
default_value: ~
- name: postgres_hostname
description: The hostname for the Postgres database.
description: The hostname for the PostgreSQL database.
default_value: ~
- name: postgres_port
description: The port for the Postgres database.
description: The port for the PostgreSQL database.
default_value: 5432
- name: postgres_database_name
description: The name of the Postgres database.
description: The name of the PostgreSQL database.
default_value: ~
source_url: "https://docs.dipak.tech/database/postgres/postgres-migration"
author: Dipak Parmar
author_url: "https://github.com/dipakparmar"
shells: []
shells: []
2 changes: 1 addition & 1 deletion specs/ssl/generate_a_self_signed_ssl_certificate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ command: "openssl req -x509 -newkey rsa:4096 -keyout {{key_file}} -out {{cert_fi
tags:
- ssl
- openssl
description: "Generates a self-signed SSL certificate using OpenSSL. Beware, self-signed certificates are typically not validated with any third party. It's recommended to use a certificate signed by a certifiate authority."
description: "Generates a self-signed SSL certificate using OpenSSL. Beware, self-signed certificates are typically not validated with any third party. It's recommended to use a certificate signed by a certificate authority."
arguments:
- name: key_file
description: ~
Expand Down