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
<html ><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8"><meta name="viewport" content="initial-scale=0.75"> | |
<style type="text/css"> | |
.bugviewWidth { width: 757px; } | |
div.ixBug { width: 187px; } | |
#bugviewContainerSide { width: 170px; } | |
.bugFields,.bugevents { margin-left: 192px; } | |
html > body { |
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 | |
# ------- NOTE: this is ***NOT*** (not not not) a bash file. However, i added the bin/bash line to get better highlighting in emacs. | |
# note that INSERT of libgmalloc makes the app run SLOWER !!! | |
#set environment DYLD_INSERT_LIBRARIES=/usr/lib/libgmalloc.B.dylib | |
# WATCHPOINT. | |
# (gdb) awatch -location m_extraActionTimeLimitUnitTracker | |
# Hardware access (read/write) watchpoint 4: *(int *) 4423742944 | |
# it worked with awatch and watch |
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
[user] | |
email = [email protected] | |
name = pestophagous | |
[color] | |
ui = auto | |
[color "diff"] | |
new = blue | |
commit = blue | |
[color "status"] | |
added = black bold |
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
# write a function to compute the current git branch | |
parse_git_branch() { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} # why is the ending with the > and the extra space not working?? | |
# set the PS1 variable | |
PS1="$PS1\[\e[0;33;34m\]\$(parse_git_branch)\[\e[0;0m\]" |
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
var somespecialthing = -1; | |
var superarraything = [ | |
"2011-November/000089.html", | |
"2011-November/000090.html", | |
"2011-November/000091.html", | |
"2011-November/000092.html", | |
"2011-November/000093.html", | |
"2011-November/000094.html", |
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
(setq mybuild-command "go build -v main.go && go test -v ./...") | |
(setq mybuild-command "go test -v github.com/practicum/sandbox/...") | |
(setq mybuild-command "go build -v github.com/practicum/sandbox/executables/cli/... && go test -v github.com/practicum/sandbox/...") | |
; run the go build from "high" in the folder tree, so you see longer paths in the compiler errors: | |
(setq mybuild-dir "/Users/someone/") | |
; available because of edits I made in go-mode.el (see bottom) | |
; M-x j (open go definition in this same 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
#!/bin/bash | |
echo "about to run 'sudo launchtl list', so you might be prompted for sudoer password!" | |
CHECK_ATRUN=`(sudo launchctl list | grep atrun | wc -l)` | |
if [ "$CHECK_ATRUN" -ne "1" ]; then | |
echo "" | |
echo "Refusing to run the script." | |
echo "" |
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
chicken scratch |
OlderNewer