Skip to content

Instantly share code, notes, and snippets.

View hope4u's full-sized avatar

Marc Müller hope4u

View GitHub Profile

Keybase proof

I hereby claim:

  • I am hope4u on github.
  • I am hope4u (https://keybase.io/hope4u) on keybase.
  • I have a public key ASATlOg0h8PbV34O_Fu0vRgumpce_po_RhANThZBox8bYAo

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am hope4u on github.
* I am hope4u (https://keybase.io/hope4u) on keybase.
* I have a public key ASATlOg0h8PbV34O_Fu0vRgumpce_po_RhANThZBox8bYAo
To claim this, I am signing this object:
@hope4u
hope4u / GitCommitTags.md
Last active April 4, 2016 19:45
Commit Style

Use following tags to commit messages

  • :sparkles: when adding new features
  • :star: when improving functionality
  • :octocat: :octocat: when finishing a project
  • 💄 :lipstick: when improving the format/structure of the code
  • 🐎 :racehorse: when improving performance
  • 🚱 :non-potable_water: when plugging memory leaks
  • 📝 :memo: when writing docs
  • 🏢 :office: when fixing something backend related
@hope4u
hope4u / profile.ps1
Created October 7, 2015 14:35
Setup PowerShell to work with GitHub for Windows
# load git into path and enable posh-git
function Enable-Git() {
# load git with all its dependencies into path
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1")
# setup posh-git
Push-Location (Split-Path -Path $MyInvocation.MyCommand.Definition -Parent)
Set-Location (Resolve-Path $env:github_posh_git)
Import-Module .\posh-git