From: Don Armstrong Date: Thu, 12 Jan 2012 17:49:53 +0000 (-0800) Subject: * add ya reason why I heart unix X-Git-Url: https://git.donarmstrong.com/?p=don.git;a=commitdiff_plain;h=125a0bd3c9decec8121154756d684262f39b14ea;hp=a29dcee88e281a8a85d2be686bc64565367173f6;ds=sidebyside * add ya reason why I heart unix --- 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.