Skip to content

Commit

Permalink
Org archive from Sat Apr 20 09:57:07 EDT 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
tdeebswihart committed Apr 20, 2019
1 parent 134f1b8 commit 2138301
Show file tree
Hide file tree
Showing 14 changed files with 669 additions and 0 deletions.
20 changes: 20 additions & 0 deletions bin/orgbackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash
set -eo pipefail

BEORG="$HOME/Library/Mobile Documents/iCloud~com~appsonthemove~beorg/Documents/org/"
BACKUP="$HOME/Documents/org"
if ! test -d "$BEORG"; then
exit 0
fi

rsync -a --exclude-from="$HOME/.gitignore" "$BEORG" "$BACKUP"
cd "$BACKUP" && (
if ! test -d .git; then
git init
fi

if git status | grep 'not staged' &>/dev/null; then
find -X . -name '*.org*' -and -not -name '.*' | xargs git add
git commit -m "Org archive from $(date)"
fi
)
23 changes: 23 additions & 0 deletions org/career.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
* Professional Development
** SOMEDAY Look at CS 242: Programming Languages and break it down
http://cs242.stanford.edu/f18/
** SOMEDAY Read The Mythical Man Month overview
https://en.wikipedia.org/wiki/The_Mythical_Man-Month
** SOMEDAY Estimating work
https://az3.apms5.com/anywhere/m?s=az3&m=s_7fd74129-6ff6-431f-8aec-1cfa9a787c51&u=e1jq4wvfdtfk6gtq70wm4gtk5n0m8ga45mu3chj55n13ehhg5mvmcd9n6123gchq8gt32&r2=d1u78w3k78qjyu35dhr2wyk5dtm7arhecdqpubvkenr70vvjegqq6vvcenu6jvveecqp2wkmd5hprtbk5wu36c1g60r36d1j70t0&n=1
** SOMEDAY XANADU - Infiltrate
https://vimeo.com/322257258
** SOMEDAY Rise of the Demiurge - Infiltrate (2 of 2)
https://vimeo.com/329589102
** SOMEDAY Diversity & Inclusion Guidebook
https://bakkenbaeck.com/diversity-inclusion/
** SOMEDAY CQRS
https://www.martinfowler.com/bliki/CQRS.html
** SOMEDAY Manual vs Automated Analysis
https://www.youtube.com/watch?v=ffPu4Bl2Mh4&feature=youtu.be
** SOMEDAY Beyond Unit Tests (TLA+)
https://www.youtube.com/watch?v=MYucYon2-lk
** SOMEDAY Compiling Knowledge into Probabilistic Models | Will Crichton
** SOMEDAY Integration tests are a scam
** SOMEDAY Get a subscription to ACM Queue
** SOMEDAY Subscribe to usenix login;
4 changes: 4 additions & 0 deletions org/home.org_archive
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# -*- mode: org -*-


Archived entries from file /Users/timods/Library/Mobile Documents/iCloud~com~appsonthemove~beorg/Documents/org/home.org
20 changes: 20 additions & 0 deletions org/inbox.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
* Inbox
* Hobby
* Home
** TODO Check out oraemacs' keybindings
SCHEDULED: <2019-04-26 Fri>
[[https:github.com/abo-abo/oremacs/blob/github/keys.el][keys.el]]

[2019-04-19 Fri 21:38]
** SOMEDAY Fix Julia's car :@home:
[2019-04-19 Fri 22:32]
** TODO Refill the tires on Julia's car :@important:@home:
SCHEDULED: <2019-04-27 Sat>
** TODO Roll Mass Mutual plan over to Fidelity Gatech plan
SCHEDULED: <2019-05-10 Fri>
** TODO LP60 record player
SCHEDULED: <2019-05-01 Wed>
** TODO Look at the Gatech retirement plan investments
SCHEDULED: <2019-05-01 Wed>
* Career
* Notes
3 changes: 3 additions & 0 deletions org/init.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#+begin_src scheme

#+end_src
47 changes: 47 additions & 0 deletions org/library/pdf-tools-keybinds.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
* Some keybindings

| Navigation | |
|--------------------------------------------+-----------------------|
| Scroll Up / Down by page-full | ~space~ / ~backspace~ |
| Scroll Up / Down by line | ~C-n~ / ~C-p~ |
| Scroll Right / Left | ~C-f~ / ~C-b~ |
| Top of Page / Bottom of Page | ~<~ / ~>~ |
| Next Page / Previous Page | ~n~ / ~p~ |
| First Page / Last Page | ~M-<~ / ~M->~ |
| Incremental Search Forward / Backward | ~C-s~ / ~C-r~ |
| Occur (list all lines containing a phrase) | ~M-s o~ |
| Jump to Occur Line | ~RETURN~ |
| Pick a Link and Jump | ~F~ |
| Incremental Search in Links | ~f~ |
| History Back / Forwards | ~B~ / ~N~ |
| Display Outline | ~o~ |
| Jump to Section from Outline | ~RETURN~ |
| Jump to Page | ~M-g g~ |

| Display | |
|------------------------------------------+-----------------|
| Zoom in / Zoom out | ~+~ / ~-~ |
| Fit Height / Fit Width / Fit Page | ~H~ / ~W~ / ~P~ |
| Trim margins (set slice to bounding box) | ~s b~ |
| Reset margins | ~s r~ |
| Reset Zoom | 0 |

| Annotations | |
|-------------------------------+-------------------------------------------------|
| List Annotations | ~C-c C-a l~ |
| Jump to Annotations from List | ~SPACE~ |
| Mark Annotation for Deletion | ~d~ |
| Delete Marked Annotations | ~x~ |
| Unmark Annotations | ~u~ |
| Close Annotation List | ~q~ |
| Add and edit annotations | via Mouse selection and left-click context menu |

| Syncing with Auctex | |
|----------------------------------+-------------|
| jump to PDF location from source | ~C-c C-g~ |
| jump source location from PDF | ~C-mouse-1~ |

| Miscellaneous | |
|-----------------------------------------------+-----------|
| Refresh File (e.g., after recompiling source) | ~g~ |
| Print File | ~C-c C-p~ |
Loading

0 comments on commit 2138301

Please sign in to comment.