Skip to content

Commit aaeedd0

Browse files
authored
Merge branch 'main' into main
2 parents 391e898 + 5364d85 commit aaeedd0

22 files changed

Lines changed: 164 additions & 21 deletions

specs/android/push_deeplink_onto_android_device.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
description: Uses adb to push a deeplink onto an Android device.
1010
arguments:
1111
- name: your_app_package_name
12-
description: The package name of the app that you want to recieve the deeplink.
12+
description: The package name of the app that you want to receive the deeplink.
1313
default_value: com.my.app.package
1414
- name: deeplink
1515
description: The deeplink you want to send (eg. `app://open.my.app`)

specs/android/send_firebase_push_notification.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
description: Uses adb to push a Firebase push notification to your local emulator
1414
arguments:
1515
- name: your_app_package_name
16-
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.
16+
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.
1717
default_value: com.my.app.package
1818
- name: notification_title
1919
description: The title of the notification

specs/brew/install_a_specific_version_of_a_homebrew_formula.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ tags:
66
description: "Install a specific version of a formula using Homebrew. To list all available versions, you can run `brew search {{formula_name}}@`."
77
arguments:
88
- name: formula_name
9-
description: The fomula to install
9+
description: The formula to install
1010
default_value: ~
1111
- name: version_name
12-
description: "The version of the formula to install. You can ensure this version is availalble on homebrew by running `brew search {{formula_name}}`"
12+
description: "The version of the formula to install. You can ensure this version is available on homebrew by running `brew search {{formula_name}}`"
1313
default_value: ~
1414
source_url: "https://stackoverflow.com/questions/3987683/homebrew-install-specific-version-of-formula"
1515
author: Debilski
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: FFprobe file in json
3+
command: ffprobe -i {{media_file_path}} -show_streams -show_format -print_format json
4+
tags:
5+
- ffprobe
6+
description: Show streams and format of media file in json format using ffprobe
7+
arguments:
8+
- name: media_file_path
9+
description: Path of media file (may be local file path, http url or some other protocols described at https://ffmpeg.org/ffmpeg-protocols.html#Protocols)
10+
source_url: "https://ffmpeg.org/ffprobe.html"
11+
author: tabroot
12+
author_url: "https://github.com/bvc3at"
13+
shells: []

specs/file_manipulation/recursively_find_and_replace_within_a_directory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tags:
55
- file manipulation
66
- sed
77
- grep
8-
description: Replaces all occurences of a string recursively within a directory
8+
description: Replaces all occurrences of a string recursively within a directory
99
arguments:
1010
- name: old_text
1111
description: The text that should be replaced

specs/file_manipulation/sort_a_file_by_line_length.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ command: "cat {{file_name}} | awk '{ print length, $0 }' | sort -n -s | cut -d\"
44
tags:
55
- file manipulation
66
- awk
7-
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."
7+
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."
88
arguments:
99
- name: file_name
1010
description: The name of the file to sort.

specs/git/modify_the_most_recent_commit_message.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Modify the most recent commit message
33
command: "git commit --amend -m \"{{new_commit_message}}\""
44
tags:
55
- git
6-
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,"
6+
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,"
77
arguments:
88
- name: new_commit_message
99
description: The new commit message

specs/git/squash_last_n_commits_together.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Squash last n commits together
33
command: "git reset --soft HEAD~{{num_commits}} && git commit"
44
tags:
55
- git
6-
description: "Squashes the last n commits together. This approach requires rewriting a commit message for the new sqashed changes, unlike running `git rebase`."
6+
description: "Squashes the last n commits together. This approach requires rewriting a commit message for the new squashed changes, unlike running `git rebase`."
77
arguments:
88
- name: num_commits
99
description: The number of commits that should be squashed together

specs/git/undo_git_add.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Undo git add
33
command: "git reset {{file}}"
44
tags:
55
- git
6-
description: "Removes a file that was staged for commit by `git add`. Executing `git reset` withou any file name will unstage all changes."
6+
description: "Removes a file that was staged for commit by `git add`. Executing `git reset` without any file name will unstage all changes."
77
arguments:
88
- name: file
99
description: The file to unstage

specs/laravel/laravel_install_nova.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
name: Install Laravel Sail using Composer
2+
name: Install Laravel Nova using Composer
33
command: 'composer config repositories.nova ''{"type": "composer", "url": "https://nova.laravel.com"}'' --file composer.json && composer require laravel/nova && composer update --prefer-dist'
44
tags:
55
- composer
66
- laravel
77
- php
8-
description: Install Laravel Sail using Composer
8+
description: Install Laravel Nova using Composer
99
arguments: []
1010
source_url: "https://nova.laravel.com/docs/4.0/installation.html"
1111
author: Rob Mellett

0 commit comments

Comments
 (0)