Windows 7 Tutorials
June 14, 2011 in Computer Configuration, Software, Windows
June 14, 2011 in Computer Configuration, Software, Windows
June 14, 2011 in Development, Google Calendar, Google Map
Google Map Code Generator: http://www.mobilefish.com/services/googlemap/googlemap.php
Color customization for embedded Google Calendars: http://www.unitz.com/u-notez/2009/04/color-customization-for-embedded-google-calendars/
May 10, 2011 in Apple, Computer Configuration, Software
Original Post: http://appleclinic.wordpress.com/2008/10/30/time-machine-on-nas/
Some of us may own Network Attached Storage (NAS) devices, and/or may feel that an Apple Time Capsule is too expensive, and hence would rather buy a seperate router, NAS and Hard Disk Drives. This guide will help you to enable Time Machine on any NAS, allowing you to have the functionality of a Time Capsule, with hardware of your own choosing.
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1your Computername_MACaddress.sparsebundle.ifconfig en0 | grep ether | sed s/://g | sed s/ether// in Terminal. This will return one line of output, which is the MAC address for the Ethernet port, which will be a string of 14 hexadecimal characters (letters and numbers, for example,001ec4b8f9b3).
Even if the network backups will be done using a different port (e.g. AirPort: usually en1), the system will use the MAC address of en0 as part of the system identifier.sudo hdiutil create -size 70g -type SPARSEBUNDLE -nospotlight -volname "Backup of My Mac" -fs "Case-sensitive Journaled HFS+" -verbose ./Computername_MACaddress. This will create a 70GB sparse-bundle as a case-sensitive, journaled HFS+ without spotlight indexing. Substitute variables in red for values you need. Computername_MACaddress may be in the form of “DansComputer_001ec4b8f9b3smb://TimeMachine@ip-address-of-nas/TimeMachine. Click Connect and when prompted, enter the password and save in your keychain.Hope this helps.
April 28, 2011 in Development
It’s billed as, “Bazaar is a distributed version control system that makes it easier for people to work together on software projects.”
April 4, 2011 in Apple, Computer Configuration, Development
All of the sudden, my development Apache webserver on my Macbook Pro stopped working. I found the soution here:
http://hintsforums.macworld.com/showthread.php?t=83942
Hi aaron. I had exactly the same problem. “Safari can’t connect to the server.
Safari can’t open the page “http://localhost/” because it could not connect to the server “localhost”.
Using Terminal and issuing a “sudo apachectl -t” showed that I had a syntax error in line 1 of my httpd.conf file. I think it happened when I edited the file using Text Wrangler, and accidently saved it with hard-coded line-numbers prefixed to the lines; of course – apache didn’t understand the 1st line, which was “1 #”. Once I fixed that and restarted apache, everything started working as it used to in Mac OS X 10.4.10.
March 16, 2011 in Development
Here’s the solution to the problem I was having where two consecutive “Home” links were appearing in my Breadcrumb NavXT plug-in generated breadcrumb trail. The problem would appear on category listing pages (i.e. /category/news/). First off, I changed the name of an alternate home page template that I was using from “home.php” to something else. Apparently, WP uses index.php and home.php interchangeably. If home.php exists as an alternate template file, it will cause problems (read here for reference: http://codex.wordpress.org/Settings_Reading_SubPanel). That was one thing.
The other change and the one that I think solved the problem was opening up the Breadcrumb NavXT settings panel and unchecking and clearing out the “Home Breadcrumb” setting. Saving the configuration and rechecking and resetting the Home Title to “Home”. When I took this action, the double Home was gone and all was good.