-
leave at 10:30
-
Switch
-
portable hand sanitizer
-
5 Masks
-
wear KN95 mask and don’t take off/eat on bus so make sure he has something good to eat as it’s a long drive
-
something warm on body and feet and clothes and underwear as well as toothbrush
-
two outfits, small, so you could keep pack on bus, otherwise they put it underneath, takes longer.
-
headphones
View activetable.js
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
// ActiveTable - a bookmarklet to make tables sortable and editable | |
function init() { | |
var aHrows = getHrows(); | |
var numHrows = aHrows.length; | |
var aHidden = getHiddenColumns(); | |
ATpopup = document.createElement("div"); | |
ATpopup.style.cssText = "position: absolute; visibility: hidden; padding: 0; font-family: Arial; background-color: rgba(255, 255, 255, 0.9); border-radius: .5em; text-align: center; box-shadow: .05em .05em .5em #00C;"; | |
ATpopup.innerHTML = "<a href='sort' title='sort' onclick='sortColumn(); return false'><img border=0 src='http://stevesouders.com/images/sort_up_down.png' style='padding-top: 0.2em;'></a><br><a href='hide' style='color: #C00; font-family: monospace; font-size: 1.5em; text-decoration: none;' title='hide' onclick='hideColumn(); return false'>x</a>"; // TODO - use protocol-less URL for img |
View console.py
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
from __future__ import annotations | |
import string | |
import code | |
import sys | |
import io | |
from typing import Callable | |
from textual.app import App | |
from textual.widgets import Header, ScrollView |
View gist:946fe383953fc2a86a1aebd0fbab2c93
View gist:ea5fbaac9cd3b5175a63acb06d3eb4cc
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
wander | |
The Lab - free VR mini gameso, works on Flat screens too | |
nextvr - live events, like nba, etc | |
fitxr - group fitness | |
guided meditation VR or the blue | |
360 cities app | |
YouTube VR, National Geographic Explore, Ocean Rift | |
Spatial - meetings | |
Escape Rooms | |
Google Earth VR |
View gist:7025742
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
#+f::Send {Ctrl Down}{Shift Down}r{Ctrl Up}{Shift Up} | |
;----------------------------------------- | |
; Mac keyboard to Windows Key Mappings | |
;========================================= | |
Capslock::Ctrl | |
+Capslock::+Ctrl | |
; -------------------------------------------------------------- | |
; NOTES |
View Docker
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
# Assuming an Ubuntu Docker image | |
$ docker run -it <image> /bin/bash |
View make_portable.sh
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 bash | |
# Licensed by author Alex Birch under CC BY-SA 4.0 | |
# https://creativecommons.org/licenses/by-sa/4.0/ | |
# Example input: | |
# ./make_portable.sh mycoolbinary | |
# where mycoolbinary is a mach-o object file | |
# (for example an executable binary or a .dylib) | |
# |
View Dockerfile
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
FROM php:7.1.2-apache | |
RUN docker-php-ext-install mysqli |
View set_static_ip.sh
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
# This script MAY or MAY NOT WORK ;-) Really, untested. But you can cancel before it does anything | |
# and it actually shows you what you need to add to your dhcpcd.conf file without making | |
# any changes. | |
# | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root, by putting 'sudo' before the command." | |
exit | |
fi | |
# Figure out the info we'll need to overwrite the /etc/dhcpcd.conf file |
NewerOlder