This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Require fireplace.vim | |
| function! s:ClojureSlamHound(file) | |
| if &modified | |
| echom "Buffer contains unsaved changes!" | |
| return 1 | |
| endif | |
| call fireplace#session_eval( | |
| \ '(clojure.core/require (quote slam.hound) (quote clojure.pprint))' | |
| \ . '(let [file (clojure.java.io/file "' . a:file . '")]' | |
| \ . ' (binding [clojure.pprint/*print-right-margin* ' . &textwidth . ']' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class BsdgamesOsx < Formula | |
| desc 'The classic bsdgames of yore for Mac OS X and macOS.' | |
| homepage 'https://github.com/ctdk/bsdgames-osx' | |
| url 'https://github.com/ctdk/bsdgames-osx/archive/bsdgames-osx-2.19.3.tar.gz' | |
| sha256 '699bb294f2c431b9729320f73c7fcd9dcf4226216c15137bb81f7da157bed2a9' | |
| head 'https://github.com/ctdk/bsdgames-osx.git' | |
| version '2.19.3' | |
| depends_on "bsdmake" => ':build' |