Skip to content

Instantly share code, notes, and snippets.

View aaronbmurray's full-sized avatar

Aaron B. Murray aaronbmurray

  • SLC USA
View GitHub Profile
@olets
olets / arpanet-maps.md
Last active October 23, 2020 20:38
ARPANET Maps

Compiled from http://som.csudh.edu/fac/lpress/history/arpamaps/ and https://en.wikipedia.org/wiki/ARPANET

These maps are from Heart, F., McKenzie, A., McQuillian, J., and Walden, D., ARPANET Completion Report, Bolt, Beranek and Newman, Burlington, MA, January 4, 1978.


Folks -- I just scanned these in. They are too big, but right now I do not have the time to reduce them and try filtering out the noise. If someone does, please let me know. Larry (source: http://som.csudh.edu/fac/lpress/history/arpamaps/)

--- General ---
Undo: cmd + Z
Redo: cmd + shift + Z
Redo: cmd + Y
Setup/Animate Mode: cmd + TAB
Zoom To Fit: cmd + shift + F
Zoom To 100%: cmd + F
Lock Zoom:
Fullscreen: cmd + shift + opt + F
Always On Top: cmd + shift + opt + T
@fredrikaverpil
fredrikaverpil / maya_sublime.py
Created March 25, 2014 14:58
Open ports in Maya for Sublime Text #maya
import maya.cmds as cmds
# Close ports if they were already open under another configuration
try:
cmds.commandPort(name=":7001", close=True)
except:
cmds.warning('Could not close port 7001 (maybe it is not opened yet...)')
try:
cmds.commandPort(name=":7002", close=True)
except: