Skip to content

Instantly share code, notes, and snippets.

View pebojote's full-sized avatar
🏠
Working from home

Edison Pebojot pebojote

🏠
Working from home
View GitHub Profile
@tterb
tterb / README-badges.md
Last active September 11, 2024 22:36
A collection of README badges

Badges

License

MIT License GPLv3 License AGPL License

Version

Version GitHub Release

@EvanAgee
EvanAgee / changelog.md
Created March 6, 2017 20:15
changelog.md example

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Marketing banner to prompt users to upgrade to a free account
@steinwaywhw
steinwaywhw / One Liner to Download the Latest Release from Github Repo.md
Last active September 19, 2024 19:00
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \