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

Enable Active Directory Authentication for GitLab

If you’re having trouble, here are some tips: Query all the users by using the following command: dsquery user -limit 1000 > users.txt Find the bind_dn user from this list and copy and paste the entire line. It will be a format similar to: ‘CN=Name\, Display,OU=Some Organizational Unit,OU=Another Organizational Unit,DC=domain,DC=com’ …

Bitnami Gitorious Appliance Login Issues

Did you download Bitnami’s Gitorious Appliance? Did you convert it to VMware’s OVF format and add it to your infrastructure? Great! However, if you run into an issue where you can’t login using Bitnami’s default username and password (user/bitnami), you’ll need to make sure of a few things: For reference, …

Active Directory: Get Last Logon Time For Users

Ever needed the logon time for users in your Active Directory domain? Use the following command: For /F “Skip=1 Tokens=3” %I in (‘Dsquery * domainroot -filter “(&(objectCategory=Person)(objectClass=User)(samaccountname=))” -attr name lastLogon’) Do @w32tm /ntte %I The above command runs the Dsquery command and pipes the output to the w32tm command to …

How to Increase Disk Space on a VM When Using VMware, Ubuntu, and LVM

You’ll need the GParted ISO before you start. Delete any snapshots (this allows you to increase the disk size). Edit virtual machine settings, then increase the disk size. Create a snapshot in case anything goes wrong. Boot GParted ISO. Resize the partition related to the LVM volume. Save your changes …

Javascript Workers: An Ajax Example With Callback

I was browsing the Internet one day looking for a conference I could possibly attend regarding web technologies. I came across a certain conference that caught my eye which talked about Javascript workers. To be honest, I’ve never used workers or had any experience with multi-threaded web programming, but, after …