Skip to content

Instantly share code, notes, and snippets.

View skywarth's full-sized avatar
🇵🇹
Liberdade

skywarth

🇵🇹
Liberdade
  • Solo-self-found projects
  • Portugal
  • 22:34 (UTC +01:00)
View GitHub Profile
@skywarth
skywarth / presentation-resources.md
Last active June 6, 2025 19:38
Laravel OSS Development: Zero to Hero

Laravel OSS Development: Zero to Hero

Hi y'all, thanks for joining this session! Relevant resources and links are listed down below.

If you have any questions, comments, or just wanna holler 👋; feel free to drop it down below 👇

Resources

Sample OSS projects

@skywarth
skywarth / gist:0dea4a1b3ccce8320b7f6eb595553598
Created July 26, 2021 20:56
Bash parse json as associative array (recursive). Supports integer and floating point values too.
Toolbelt_parseJSON(){
local -n jsonArray=$2
jsonArray[0]="rrr"
SETTINGS_FILE="$1"
SETTINGS_JSON=$(cat $SETTINGS_FILE)
__readJSON "$SETTINGS_JSON"
}
# Usage: