links for old versions of Docker for Mac
Docker provides download links in release note. They promised that
(we) will also include download links in release notes for future releases.
Note:
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| // ==UserScript== | |
| // @name Remove Horror From Itch | |
| // @match *://itch.io/* | |
| // @run-at document-start | |
| // @grant none | |
| // @description add exclude horror filter to all itch.io pages | |
| // ==/UserScript== | |
| var oldUrlPath = window.location; |
| # https://unix.stackexchange.com/a/10065 | |
| # if stdout is a terminal | |
| if test -t 1; then | |
| # see if it supports colors | |
| ncolors=$(tput colors) | |
| if test -n "$ncolors" && test $ncolors -ge 8; then | |
| bold="$(tput bold)" | |
| underline="$(tput smul)" | |
| standout="$(tput smso)" | |
| normal="$(tput sgr0)" |
Docker provides download links in release note. They promised that
(we) will also include download links in release notes for future releases.
Note:
In the below keyboard shortcuts, I use the capital letters for reading clarity but this does not imply shift, if shift is needed, I will say shift. So ⌘ + D does not mean hold shift. ⌘ + Shift + D does of course.
| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| import sublime, sublime_plugin | |
| import os | |
| class DetectFileTypeCommand(sublime_plugin.EventListener): | |
| """ Detects current file type if the file's extension isn't conclusive """ | |
| """ Modified for Ruby on Rails and Sublime Text 2 """ | |
| """ Original pastie here: http://pastie.org/private/kz8gtts0cjcvkec0d4quqa """ | |
| def on_load(self, view): | |
| filename = view.file_name() |