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?"

WPTouch 3.1.1 Search and Menu Buttons Bug Fixes

Using WPTouch 3.1.1? Are the search and menu buttons not working in the mobile view? Just add the following in the Branding | Theme Footer section under Theme Settings: <script type=”text/javascript”> jQuery(‘#search-toggle’).off(); jQuery(‘#search-toggle’).on(‘touchend’, function (e) { jQuery(‘#search-dropper’).toggleClass(‘toggled’); }); jQuery(‘#menu-toggle’).off(); jQuery(‘#menu-toggle’).on(‘touchend’, function (e) { jQuery(‘#menu’).webkitSlideToggle(); }); </script>

Pure Javascript DOM Ready

Yet another a pure Javascript DOM Ready option. The concept was gathered from many options that were considered (in particular from Stackoverflow), which resulted in the below code: (function(f){var t=setInterval(function(){if(document.readyState==”complete”){clearInterval(t);f();}},9);})(); Features: Javascript library independant. Doesn’t pollute global scope. That’s it. 🙂 Usage: var f = function(){ alert(‘Hello, World!’); }; (function(f){var …

PHP “Executing SQL directly; no cursor” Error When Executing a Stored Procedure?

Are you getting the following error in PHP from the PHP SQLSRV driver? Executing SQL directly; no cursor This apparently is just a warning, so before you connect to your server, issue this command: sqlsrv_configure(“WarningsReturnAsErrors”, 0); Oh, and guess what? sqlsrv_num_rows() worked for me to boot! Weird. See stackoverflow.com

Issues With Remote Debugging Using XDebug on IIS? (Updated)

UPDATE 11-13-2013: If you want to trigger the debugger on your IDE from another application other than a browser, you can use an application such as Fiddler and then add the following header to your request. If you already have a cookie, just append the below string with a semi-colon …