Difference between revisions of "Computers"
Line 1: | Line 1: | ||
− | |||
− | |||
{| border = "1" | {| border = "1" | ||
|+ Computers in the Houpt Lab | |+ Computers in the Houpt Lab | ||
Line 24: | Line 22: | ||
|- | |- | ||
|} | |} | ||
+ | |||
+ | =Computer Hints= | ||
+ | |||
+ | 1. '''Acid Search''' from [http://www.pozytron.com/acidsearch pozytron.com ] | ||
+ | |||
+ | Add a search channel for PubMed: "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?DB=pubmed&term=” | ||
+ | |||
+ | 2. '''Add debug menu to Safari''': | ||
+ | |||
+ | defaults write com.apple.Safari IncludeDebugMenu 1 | ||
+ | |||
+ | 3. '''to make Safari pass PDFs to Preview''' instead of opening itself: | ||
+ | |||
+ | defaults write com.apple.Safari WebKitOmitPDFSupport -bool YES | ||
+ | |||
+ | (also remove Adobe PDF viewer from /Library/Internet Plug-Ins) | ||
+ | |||
+ | (could also try using [http://www.celestialfrontiers.com/safari_enhancer.php Safari Enhancer]) | ||
+ | |||
+ | 4. '''To change the __MyCompanyName__''' in Xcode (from MacOSXGuru.Net): | ||
+ | |||
+ | Open the ProjectBuilder preferences file (~/Library/Preferences/com.apple.ProjectBuilder.plist) or the Xcode one (~/Library/Preferences/com.apple.Xcode.plist) and edit the dictionary associated with the key PBXCustomTemplateMacroDefinitions (create one if it does not exist, as child of the root node), edit or add the key ORGANIZATIONNAME, the associated string value will be used when PB creates new source files. | ||
+ | |||
+ | You could also do it via Terminal.app: | ||
+ | |||
+ | defaults write com.apple.ProjectBuilder PBXCustomTemplateMacroDefinitions '{ "ORGANIZATIONNAME" = "Behavioral Cybernetics";}' | ||
+ | |||
+ | or | ||
+ | |||
+ | defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ "ORGANIZATIONNAME" = "Behavioral Cybernetics";}' | ||
+ | |||
+ | |||
+ | 5. '''download [www.allume.com stuffit expander]''' | ||
+ | |||
+ | 6. ''' make iChat autoconnect ''' | ||
+ | |||
+ | defaults write com.apple.ichat AutoAcceptVCInvitations -1 | ||
+ | |||
+ | 7. '''Making bootable backups''': | ||
+ | |||
+ | sudo rsync -xrlptgoEv --progress --delete / /Volumes/Backup | ||
+ | |||
+ | or just use [http://www.bombich.com/software/ccc.html carbon copy cloner] |
Revision as of 12:49, 24 September 2007
Computer | Location | IP address |
---|---|---|
Principia | 209 | 65 |
Magnet | 209 | 73 |
Tesla | 252 | 226 |
Micrographia | 250 | (DHCP) |
Vaio | 250 | 78 |
G3 GelDoc | core | nc |
HP 3005 Printer | 250 | 15 |
BRF iMac | 115 | DHCP |
Maglab iMac | Maglab | ??? |
Computer Hints
1. Acid Search from pozytron.com
Add a search channel for PubMed: "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?DB=pubmed&term=”
2. Add debug menu to Safari:
defaults write com.apple.Safari IncludeDebugMenu 1
3. to make Safari pass PDFs to Preview instead of opening itself:
defaults write com.apple.Safari WebKitOmitPDFSupport -bool YES
(also remove Adobe PDF viewer from /Library/Internet Plug-Ins)
(could also try using Safari Enhancer)
4. To change the __MyCompanyName__ in Xcode (from MacOSXGuru.Net):
Open the ProjectBuilder preferences file (~/Library/Preferences/com.apple.ProjectBuilder.plist) or the Xcode one (~/Library/Preferences/com.apple.Xcode.plist) and edit the dictionary associated with the key PBXCustomTemplateMacroDefinitions (create one if it does not exist, as child of the root node), edit or add the key ORGANIZATIONNAME, the associated string value will be used when PB creates new source files.
You could also do it via Terminal.app:
defaults write com.apple.ProjectBuilder PBXCustomTemplateMacroDefinitions '{ "ORGANIZATIONNAME" = "Behavioral Cybernetics";}'
or
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ "ORGANIZATIONNAME" = "Behavioral Cybernetics";}'
5. download [www.allume.com stuffit expander]
6. make iChat autoconnect
defaults write com.apple.ichat AutoAcceptVCInvitations -1
7. Making bootable backups:
sudo rsync -xrlptgoEv --progress --delete / /Volumes/Backup
or just use carbon copy cloner