-
Shut down the machine and insert a USB drive with the Ubuntu 10.04 64 bit installation disk.
-
(Re)Boot the machine and press F12 (on Dell Optiplex 960) during the BIOS loading
-
Choose USB drive from the list of boot devices.
- If the machine continues to boot go back to step 2
-
Once Ubuntu starts up choose 'Install Ubuntu 10.04 LTS' (Desktop LTS ending April 2013)
-
Choose your timezone and keyboard layout
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
#!/usr/bin/env ruby | |
# | |
# Usage: medium-draft TOKEN FILENAME | |
# Where TOKEN is a medium integration token and FILENAME is the path to the | |
# markdown file you'd like to post | |
# | |
# Get your token from https://medium.com/me/settings (integration tokens section) | |
# | |
# This requires httparty and redcarpet | |
# Install with: |
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
function! s:BuffersList() | |
let buffers = range(0, bufnr('$')) | |
let searchBuffers = [] | |
for buffer in buffers | |
if buflisted(buffer) && index(searchBuffers, bufname(buffer)) < 0 | |
call add(searchBuffers, bufname(buffer)) | |
endif | |
endfor | |
return searchBuffers | |
endfunction |
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
#!/bin/sh | |
exec vim --startuptime ~/.cache/vim/"$(date -j -f "%a %b %d %T %Z %Y" "$(date)" "+%s")".log "$@" |
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
#!/bin/bash | |
set -e | |
mail=~/.mail | |
maildirs=($mail/*) | |
inbox=INBOX | |
folders=(new cur) | |
archive="archive/cur" | |
trash="trash/cur" |
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
import UIKit | |
extension UIView { | |
public override var accessibilityLabel: String? { | |
get { | |
return "Hi \(super.accessibilityLabel)" | |
} | |
set { | |
super.accessibilityLabel = newValue | |
} |
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
extension NSEvent { | |
func eventByChangingKeyToKey(key: Int) -> NSEvent? { | |
var char = unichar(key) | |
let characterString = NSString(characters: &char, length: 1) | |
return NSEvent.keyEventWithType(type, | |
location: locationInWindow, | |
modifierFlags: modifierFlags, | |
timestamp: timestamp, | |
windowNumber: windowNumber, |
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
http://stackoverflow.com/questions/5286274/front-most-window-using-cgwindowlistcopywindowinfo | |
http://stackoverflow.com/questions/13426488/notification-of-active-document-change-on-os-x | |
https://github.com/ianyh/Amethyst/blob/master/Amethyst/AMWindowManager.m | |
http://stackoverflow.com/questions/12540010/how-to-identify-window-under-mouse-with-objective-c | |
http://stackoverflow.com/questions/15612050/cocoa-objective-c-how-to-know-which-control-is-under-the-cursor | |
https://github.com/jigish/slate/blob/ff5ee5a53afc05b619cf9eb78e852b83ad714de4/Slate/RunningApplications.m | |
http://stackoverflow.com/questions/853833/how-can-my-app-detect-a-change-to-another-apps-window |
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
https://github.com/jerrymarino/xcodebuild.vim | |
https://gist.github.com/terhechte/4665223 | |
https://github.com/yoyokko/Tools/blob/master/clang_complete/clang_complete.py | |
https://github.com/eraserhd/vim-ios | |
http://commandlinefanatic.com/cgi-bin/showarticle.cgi?article=art024 | |
http://appventure.me/2013/01/29/use-vim-as-xcode-alternative-ios-mac-cocoa/ | |
https://github.com/ap4y/dotfiles/blob/907da85bcfeeb2db772e185c3bb7b616202351a9/scripts/xcode_utils.rb | |
https://github.com/scrooloose/syntastic/wiki/Objective-C:---gcc | |
https://github.com/ap4y/dotfiles/blob/907da85bcfeeb2db772e185c3bb7b616202351a9/vim/UltiSnips/objc.snippets | |
https://github.com/ap4y/dotfiles/blob/907da85bcfeeb2db772e185c3bb7b616202351a9/scripts/clang_db.rb |
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
function! Buffers() | |
let ids = filter(range(1, bufnr('$')), | |
\ 'empty(getbufvar(v:val, "&bt"))' | |
\ . ' && getbufvar(v:val, "&bl")') | |
let names = [] | |
for id in ids | |
call add(names, bufname(id)) | |
endfor | |
return join(names, "\n") |