-----BEGIN PGP MESSAGE-----
Comment: GPGTools - http://gpgtools.org
owGbwMvMwMS47tLCpXv9V05hPH3gWRJDsMRCnmqlpPyUSiWraqXsVDCVlpmXnlpU
UJSZV6JkpZSSZGCcnGJsYG6QZpxkaWhqkppomGqelGaeYmiSmJJmkmZsbJSUkpqo
pKOUkV8M0gE0JimxOFUvMx8oBuTEZ6YARc1dDE0cXdxM3IDqnVxcHYFypWAJI/Nk
E7NkcxNzC/NEg2QL82SjpDQLE6O0VPPk5DRLAwOQwuLUorzE3FSg6sTiNKVaHSWg
QFlmcirIuVCJ9MySjNIkNMV5JZlppckZxSAtJZUFILHy1KR4qO74pMy8FKBngZrK
UouKM/PzlKwMgSqTSzJB2g2NLU0MjYwNjAx0lFIrCjKLUuMzQSpMzc0sDIBAR6mg
This file contains 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
10/10/13 11:16:51.609 AM Textual[196]: undo: NSUndoManager 0x111ab34d0 is in invalid state, undo was called with too many nested undo groups | |
10/10/13 11:16:51.610 AM Textual[196]: ( | |
0 CoreFoundation 0x00007fff8e268b06 __exceptionPreprocess + 198 | |
1 libobjc.A.dylib 0x00007fff95f7e3f0 objc_exception_throw + 43 | |
2 CoreFoundation 0x00007fff8e2688dc +[NSException raise:format:] + 204 | |
3 Foundation 0x00007fff8fd3fb7c -[NSUndoManager undo] + 225 | |
4 AppKit 0x00007fff9693b959 -[NSApplication sendAction:to:from:] + 342 | |
5 AppKit 0x00007fff96a7136c -[NSMenuItem _corePerformAction] + 406 | |
6 AppKit 0x00007fff96a7105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133 | |
7 AppKit 0x00007fff96a6fce0 -[NSMenu performKeyEquivalent:] + 271 |
This file contains 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
#[fixed_stack_segment] | |
fn exec_program(program: &str, args: &[~str]) { | |
do program.with_c_str() |c_program| { | |
// I don't much care about the ownership of the strings here | |
// at this point, so let's just fail if execvp isn't working. | |
unsafe { | |
let mut c_args = args.map(|arg| { arg.to_c_str().unwrap() }); | |
c_args.push(ptr::null()); | |
execvp(c_program, vec::raw::to_ptr(c_args)); | |
perror("Running tmux failed:".to_c_str().unwrap()); |
This file contains 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
;;;; asf's emacs config | |
;;; Packages: | |
(require 'package) | |
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") | |
("marmalade" . "http://marmalade-repo.org/packages/") | |
("melpa" . "http://melpa.milkbox.net/packages/"))) | |
(package-initialize) | |
;;; Bootstrap package config: |
This file contains 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 'package) | |
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") | |
("marmalade" . "http://marmalade-repo.org/packages/") | |
("melpa" . "http://melpa.milkbox.net/packages/"))) | |
(package-initialize) |
This file contains 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
;; My helm config for pretty fast updates when hitting RET too quickly after typing fast: | |
(setq helm-idle-delay 0.0 ; update fast sources immediately (doesn't). | |
helm-input-idle-delay 0.01 ; this actually updates things | |
; reeeelatively quickly. | |
helm-quick-update t | |
helm-M-x-requires-pattern nil | |
helm-ff-skip-boring-files t) |
This file contains 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
;;; SMTP settings: | |
;; Available SMTP accounts. | |
(require 'smtpmail) | |
(setq smtpmail-smtp-server "smtp.gmail.com" | |
smtpmail-smtp-service 587 | |
starttls-use-gnutls t |
This file contains 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
source 'https://rubygems.org' | |
group :unclear do | |
gem 'bundler-git-repo', :git => '[email protected]:antifuchs/bundler-git-repo.git', :ref => 'fd010ae5d55f5e66d5cc957d2670fa73f27f9b45' | |
end |
- Your Bundler configuration settings (run bundle config)
Settings are listed in order of priority. The top value will be used.
build.thrift
Set for the current user (/Users/asf/.bundle/config): "--with-cppflags=-D_FORTIFY_SOURCE=0"
jobs
Set for the current user (/Users/asf/.bundle/config): "8"
This file contains 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
$ make visitor-nbi | |
rm -rf output/osx-visitor.nbi | |
#dir=$(hdiutil attach -readonly output/osx-visitor-10.10.1-14B25.dmg | awk '/Apple_HFS/ {print }' | cut -f 3 -d ' ') ; | |
dir='/Volumes/Macintosh HD 2'; \ | |
echo "$dir" ; \ | |
sudo /System/Library/CoreServices/Applications/System\ Image\ Utility.app/Contents/MacOS/imagetool --plist `pwd`/netboot-plists/visitor.plist --source "$dir" ; \ | |
hdiutil detach "$dir" | |
/Volumes/Macintosh HD 2 | |
Create NetRestore Image |