- Mac crashes
- Reboot and when Mail starts up, it's lost all of it's state and wants me to re-enter all my accounts information.
Wednesday, April 6, 2011
Apple Mail losing all state
Saturday, March 12, 2011
Adding a Tomato router as a Wifi extender
Since I'm using a Tomato router which supports WDS, I decided to add a second router and use WDS to turn it into an extender and a wired-to-wireless bridge.
I bought another Cisco/Linksys WRT54GL and installed Tomato 1.28. I basically did what I did last time, with a couple tweaks:
- I downloaded and unpacked the Tomato firmware.
- Since my home LAN is not the default network (192.168.1.0) I was able to connect my laptop to the new router via an ethernet cable and communicate with it directly without having it connected to the rest of my LAN. If you are using 192.168.1.0 for your LAN, you can do the same but you'll probably need to swap back and forth by turning your airport interface on and off, and disconnecting the ethernet cable.
- I skipped the factory reset and just did the upgrade. All went smoothly.
- After changing the password, under Basic/Identification I changed the router name and under Administration I changed the color scheme.
- I then followed the directions in the Tomato FAQ to set up WDS on both routers. The only hitch I had here is initially tried to use "WPA/WPA2 Personal" and "TKIP/AES" instead of "WPA Personal" and "AES" as the FAQ suggests and I couldn't get that to work. Following the directions exactly and things worked fine.
That's it - pretty darn easy. I've ordered a third WRT54GL to add a third repeater which I'll chain to the second to add another wired-to-wireless bridge. I expect that to go smoothly and will post when I've finished that.
Update 3/15: Added a third router, chained to the second and all is working well.
Monday, October 25, 2010
Fix stuck install on Android
What worked for me was to follow the advice on this page and Uninstall Updates for the Market app (#1 on the page).
Saturday, October 23, 2010
Migrating from hg to git
Thursday, August 19, 2010
git: Pushing a new branch back to an origin
OK, I know this is straight forward git stuff, but I just couldn't find a clear example anywhere. I cloned a remote git repository, created a new local branch and then wanted to push that branch back to the original remote repository (without merging it first).
First, I cloned a remote repository, e.g.:
git clone git@github.com:von/sandbox.git
Then I created a new branch locally and make changes in that branch:
cd sandbox
git checkout -b new-branch
edit && commit
Now I pushed the new branch back to the remote repository (i.e. origin) without merging it into the main branch (i.e. master). To do this, while on new-branch, just do a git push origin HEAD, i.e.:
git checkout new-branch
git push origin HEAD
Basically you are saying push to origin the current HEAD.
Saturday, March 13, 2010
Thursday, February 18, 2010
Mapping control-click to right click in Windows VM on a Mac host
- Download and install AutoHotKey.
- Right click on contrl-left-remap.ahk and save to Windows VM.
- Double click on contrl-left-remap.ahk, while it will appear nothing happens you should now be able to control-click on things and Windows should behave like you right-clicked (e.g. you'll get the context menu if you click on a file).
- To have this persist past a reboot, copy contrl-left-remap.ahk to C:/Program Files/All Users/Start Menu/Programs/Startup