.bashrc and .bash_profile
.bashrc
# .bashrc
echo processing ~/.bashrc
#required to get X11 working right (for ssh -X and gtk)
export DISPLAY=:0
#modified (colourised) prompt
#export PS1='\h:\w \e[31m\u\e[0m$'
export PS1='[\t] \h:\w \u\$ ‘
# colors that “ls” uses.
export CLICOLOR=1
export LS_COLORS=’no=00:fi=00:di=01;34:ln=01;43;36:pi=40;33:so=01;35:do=01;35\
:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32;41:*.tar=01;31:*.tgz=01;31:*.ar\
j=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.\
bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jpg=01;35:*.png=01;35:*.gif=01;35:*.bmp=0\
1;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.png=01;35:\
*.mpg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:’
# User specific environment and startup programs
.bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
- Installing and Configuring Fink for OS X
- AVR Toolchain on OS X
- Using Subversion (SVN) in OS X with XCode & Apache2
Download fink from http://fink.sourceforge.net and run the .dmg suited for your architechture; in my case I ran the file contained in Fink-0.8.1-PowerPC-Installer.dmg Once this is done, run the lit...
UPDATE: Get the AVR MacPack instead of running the script below here. AVR MacPack is a development environment for Atmel's AVR microcontrollers running on Apple's Mac OS X, similar to WinAVR for W...
IMPORTANT: XCode v2.4 is incompatible with SVN v1.40 - Please download XCode version v2.4.1 from the ADC website, which corrects this problem and has been tested for compatibility. This article ha...

