domingo, 4 de septiembre de 2011
sábado, 27 de agosto de 2011
martes, 23 de agosto de 2011
Upgrade Your Intel MacBook Memory
A place where you can buy memory for the MacBook is www.crucial.com Late 2009 Unibody MacBook Model identifier: MacBook 6,1; polycarbonate case models 2009 Memory slots: 2 Memory type: 204-pin PC3-8500 DDR3 (1066 MHz) SO-DIMM Maximum memory supported: 6 GB total. Use matched pairs of 4 GB per memory slot. Apple officially supports only 4 GB of RAM in these models. Hard drive type: SATA II 2.5-inch hard drive Hard drive size supported: Up to 1 TB Late 2009 Unibody MacBook User Guide See also:
http://eshop.macsales.com/installvideos/macbook_13_mem_hd_m/
sábado, 20 de agosto de 2011
Installing Eclipse with Subversion for PHP and Javascript Development on Mac OS X
Installing Eclipse with Subversion for PHP and Javascript Development on Mac OS X
March 7, 201010:24 pm
admin
Mac OS X
Mac OS X 10.6 Snow Leopard comes with the 64bit version of Java 1.6 installed by default. Unfortunately, Eclipse 32bit and older subeclipse plugins are not 100% compatible with the 64bit version of Java 1.6. You may encounter errors when using Eclipse such as “Unable to load default SVN client” (which can be solved by installing JavaHL), and an unknown exception when creating a “project from svn” (you’ll need Eclipse 64bit to fix this). The best, simplest solution is to get the latest version of Eclipse Cocoa 64bit for Mac OS X, codenamed Galileo.
Installing JavaHL Library (Pre-requiste for Subclipse)
In order for subclipse to work on your Mac OS X machine, you will need to download and install the JavaHL which provides a JNI binding layer from Java to the subversion binaries. The quickest way is to just install the latest subversion binaries, which includes the JavaHL library.
- Double-check what is installed on your Mac OS X by opening a Terminal and running the following:
java -version svn --version ls /Library/Java/Extensions
The last should show a symbolic link to the JavaHL library if you have a version installed.
- To install the latest subversion and JavaHL, go to Collabnet Website.
- Select the appropriate subversion binaries for your Mac OS X version; currently “Subversion 1.6.9 Universal”.
- You can leave the contact info form blank and just hit the Submit button to download the .dmg image (ex: Subversion-1.6.9-10.6.x.dmg)
- Check that the /opt directory (which is a symbolic link to “/private/opt”) exists. If not, you can create it by running this command:
sudo ln -s /private/opt /opt
- Launch the .dmg image and double-click on the subversion icon to install the binaries into the default “/opt/subversion” directory.
- Once installed, you will need to prepend “/opt/subversion/bin” to your PATH environment variable. Open up your bash environment profile “~/.profile” and add this line:
export PATH=/opt/subversion/bin:$PATH
Note that the path separator is a colon, not a semi-colon (used by Windows).
- Double-check that the JavaHL library is accessible. You should find a symbolic link (ex: “libsvnjavahl-1.jnilib”) for the JavaHL library in the “/Library/Java/Extensions” directory. This is the global location that the Mac OS X JVM will look for when loading libraries via JNI.
miércoles, 17 de agosto de 2011
SSH Can Do That? Productivity Tips for Working with Remote Servers
SSH has many features which are helpful when working regularly with files on remote servers; together they can give a vast increase in productivity over the bare use of SSH. If you regularly use SSH, it’s worth spending a little time learning about these and configuring your environment to make your life easier.
....
http://blogs.perl.org/users/smylers/2011/08/ssh-productivity-tips.html