Skip to content

Commit baa63fb

Browse files
authored
Merge branch 'main' into add_workflow_ffprobe
2 parents e7dbb34 + f4fb3b3 commit baa63fb

14 files changed

Lines changed: 51 additions & 19 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

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
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Installing Laravel Installer
3+
command: |-
4+
composer global require laravel/installer
5+
tags:
6+
- composer
7+
- laravel
8+
- php
9+
description: Install Laravel Installer
10+
arguments: []
11+
source_url: "https://laravel.com/docs/5.4/installation"
12+
author: Charles Adu Boakye
13+
author_url: "https://www.linkedin.com/in/charles-adu-boakye/"
14+
shells: []

specs/nextjs/create_next_app.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Create Next.JS app
3+
command: npx create-next-app {{project_name}} --use-{{package_manager}}
4+
tags:
5+
- react
6+
- nextjs
7+
arguments:
8+
- name: project_name
9+
description: Project name
10+
default_value: my-app
11+
- name: package_manager
12+
description: The package manager to use for the application
13+
default_value: npm
14+
source_url: https://nextjs.org/docs/api-reference/create-next-app
15+
description: Create Next.JS application
16+
author: Lukas Varkalis
17+
author_url: https://github.com/lukasvarkalis
18+
shells: []

0 commit comments

Comments
 (0)