X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=posts%2Fwhy_i_love_unix.mdwn;fp=posts%2Fwhy_i_love_unix.mdwn;h=1ad179ea328b2055c648448fe2cdc107ede90767;hb=125a0bd3c9decec8121154756d684262f39b14ea;hp=0000000000000000000000000000000000000000;hpb=a29dcee88e281a8a85d2be686bc64565367173f6;p=don.git diff --git a/posts/why_i_love_unix.mdwn b/posts/why_i_love_unix.mdwn new file mode 100644 index 0000000..1ad179e --- /dev/null +++ b/posts/why_i_love_unix.mdwn @@ -0,0 +1,18 @@ +[[!meta title="YA Reason why I ♥ UNIX"]] + + +Trying to do some work for the +[Mystery Hunt](http://www.mit.edu/~puzzle) which starts on Friday at +noon, and the wireless at MIT keeps deauthenticating me for reason 1. +(Which apparently is the dreaded "unknown reason for +deauthentication".) Reassociating makes everything work again. Fast, +hack solution: + + while sleep 1s; do + if iwconfig wireless |grep -q "ESSID:off"; then + iwconfig wireless essid "MIT GUEST"; + echo "reset wireless"; + fi; + done; + +and I'm back at work with relatively continuous network connectivity.