Airport Extreme: Using the Guest Wifi With Bridge Mode
This article did the trick: https://www.thegeekpub.com/5191/use-airport-extreme-guest-network-bridge-mode/. If happen to have an unmanaged "smart" switch (such as the NETGEAR GS108) between your Airport Extreme and your firewall, you should only need to config the VLAN on the firewall and your unmanaged "smart"...
Read More "Airport Extreme: Using the Guest Wifi With Bridge Mode"
How to Change the Icon of an Apple Script Application
If you have an Apple Script that you've saved as an application, here's a way to change the icon for it. The process is straightforward and mainly involves copy/paste. Create an icon in any format. For best results, make sure it's...
Read More "How to Change the Icon of an Apple Script Application"
How to Run Microsoft Money on a Mac
Wine is a great tool to run Windows applications and setup is fairly easy on a Mac. These instructions could actually apply to any Windows application. Install Homebrew: https://brew.sh/ Install wine prerequisites. Open up a terminal and run the following:...
Read More "How to Run Microsoft Money on a Mac"
Airport Extreme: Using the Guest Wifi With Bridge Mode
This article did the trick: https://www.thegeekpub.com/5191/use-airport-extreme-guest-network-bridge-mode/. If happen to have an unmanaged "smart" switch (such as...
Read More "Airport Extreme: Using the Guest Wifi With Bridge Mode"
How to Change the Icon of an Apple Script Application
If you have an Apple Script that you've saved as an application, here's a way to...
Read More "How to Change the Icon of an Apple Script Application"
How to Run Microsoft Money on a Mac
Wine is a great tool to run Windows applications and setup is fairly easy on...
Read More "How to Run Microsoft Money on a Mac"
How to Configure AnyTerm Web-based SSH on Ubuntu
Anyterm provides a web-based SSH interface that would allow you to, for example, access your...
Read More "How to Configure AnyTerm Web-based SSH on Ubuntu"
Raspberry Pi: Connecting the PS3 Keypad Over Bluetooth
If you’re interested in connecting the PS3 Keypad to your Raspberry Pi, I’ve found a...
Read More "Raspberry Pi: Connecting the PS3 Keypad Over Bluetooth"
Settings Not Saving on a Bitnami Stack on Reboot?
This was happening to my Gitlab instance. What happens is that the Bitnami stack reconfigures...
Read More "Settings Not Saving on a Bitnami Stack on Reboot?"

iOS6 Removed Mouse Events in Safari/UIWebView? (Updated)

UPDATE 10-08-2012: Here’s a blog entry on how to determine if the device you’re on has touchevents enabled. Note that most Javascript libraries/frameworks should already have some sort of detection for this built in. My demo for using Cubiq.org’s SpinningWheel control stopped working on iOS6. The issue was that I …

Dynamically Load Javascript Files Using XHR

It probably won’t be often, but sometimes you may find yourself having the need to load Javascript dynamically using XHR.   To name a few use cases: Developing a plugin architecture for an HTML5 application. In order to extend your application’s functionality. Load certain Javascript depending the browser environment. A …

CSS3 Image Reflections

Kind of a cool effect. Here’s an example: To get the image reflect on the bottom, I used the following CSS: -webkit-box-reflect: below 5px -webkit-gradient( linear, left top, left bottom, from(transparent), color-stop(0.75, transparent), to(rgba(255,255,255,0.3)) ); Here’s some other options: Basic -webkit-box-reflect: below; Offset -webkit-box-reflect: below 5px; Masking with Gradient -webkit-box-reflect: …

NSURL Failed With Error NSURLErrorDomain “bad URL”

I got the following error when trying to connect to my web service using NSURL: Failed with error: Error Domain=NSURLErrorDomain Code=-1000 “bad URL” My URL was a GET request and so had several parameters in it. At first, I tried to URL encode the spaces manually using %20 (you’ll have to use …

CSS Matrix3d Z coordinate and Chrome Issue

I was playing around with Wink Toolkit’s Tag Cloud control and came across an interesting issue with Chrome and the CSS3 matrix3d transform function. In order for the z coordinate to work properly in the matrix3d parameters, you’ll need to set the parent element’s -webkit-transform-style property to preserve-3d. The following example …

Modifications to Cubiq dot org’s Spinning Wheel Control (Updated)

Working with the UIPickerView isn’t too bad, but if you’d rather work with cool web technology like CSS3, then this control’s for you. Plus it gives you a nice basis for a very customizable picker control.  UPDATE 09-21-2012: The demo stopped working and I suspect it has something to do …