Skip to content

Instantly share code, notes, and snippets.

View GuyHoozdis's full-sized avatar

Guy Hoozdis GuyHoozdis

View GitHub Profile
@GuyHoozdis
GuyHoozdis / GitHubMarkdownEmojis.md
Last active July 27, 2024 13:13 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@GuyHoozdis
GuyHoozdis / bash-template
Last active May 24, 2018 06:57 — forked from renzok/bash-template
A template bash script based on google style guide with some little improvements
#!/bin/bash
# Here short description of this script
# This is just a template to be used for writing new bash scripts
###
# Above all else, for the script utilities and applications you create aspire to:
# * Write small utilities with a singular focus, a limited scope, just one job. Do that job well.
# * Write utilities that are flexibile on how input is provided (e.g. pipes, redirection, ...)
# * Build application by composing these utilities or functions.