From 125a0bd3c9decec8121154756d684262f39b14ea Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 12 Jan 2012 09:49:53 -0800 Subject: [PATCH 1/1] * add ya reason why I heart unix --- posts/why_i_love_unix.mdwn | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 posts/why_i_love_unix.mdwn 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. -- 2.39.2