Skip to content

Instantly share code, notes, and snippets.

View dimitriye98's full-sized avatar

Dimitriye Danilovic dimitriye98

View GitHub Profile
@dimitriye98
dimitriye98 / appify
Last active September 25, 2015 16:01 — forked from mathiasbynens/appify
#!/bin/bash
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then echo "\
appify v3.0.1 for Mac OS X - http://mths.be/appify
Creates the simplest possible Mac app from a shell script.
Appify takes a shell script as its first argument:
`basename "$0"` my-script.sh
@dimitriye98
dimitriye98 / README.md
Last active August 29, 2015 14:23 — forked from agnoster/README.md

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@dimitriye98
dimitriye98 / install.sh
Last active January 26, 2016 08:52 — forked from eddieantonio/install.sh
marginalize.js: Intended to be a bookmarklet that gives unstyled pages margins and a somewhat more readable font.
#!/bin/sh
# If you have OS X and have UglifyJS installed, this uglifies Marginalize and
# puts the `javascript:` URL into the clipbord. Hoorah!
uglifyjs -c -m -o marginalize.min.js marginalize.js
printf 'javascript:' | cat - marginalize.min.js | pbcopy