Skip to content

Instantly share code, notes, and snippets.

View introkun's full-sized avatar
:octocat:
Pythonning

Sergey Grd introkun

:octocat:
Pythonning
View GitHub Profile
@introkun
introkun / catalina_devkitpro_setup.md
Created August 1, 2022 19:13 — forked from joshenders/devkitpro_setup_macos.md
Getting started with Nintendo Switch Development using devkitpro on macOS

Getting started with Nintendo Switch Development using devkitpro on macOS

Prerequsite: Ensure Xcode command line tools are installed

xcode-select --install

Install the devkitpro Package Manager

@introkun
introkun / .bashrc
Created March 5, 2013 12:31 — forked from mcjim/.bashrc
# Quick fork by @mcjim to add stash status and tweak to suit his style.
# http://henrik.nyh.se/2008/12/git-dirty-prompt
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
# host dir master $ # clean working directory
# host dir master* $ # dirty working directory
# host dir master*^ $ # dirty working directory with stash
# host dir master^ $ # clean working directory with stash
function parse_git_dirty {
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"