Articles Archive for August 2007
Uncategorized »
For the Memory Bank
'Chrome Moly' is 4130 Low Alloy Steel
AISI 4000 Series Steel; Ferrous Metal; Low Alloy Steel; Medium Carbon Steel; Metal
Very well suited for Tubular sections
Uncategorized »
For i as integer = 1 to x 'x being the highest value, 1 being the lowest If var_setup(i) = "1" then ChkSetup(i).Value = TrueElse ChckSetup(i).Value = FalseEnd IfNext i
Uncategorized »
Free file hosting, for the DE community (password required)
available at upload.duivesteyn.net,
Computing »
In the past whenever I wanted/needed to view hidden files on my system I always found it necessary to use some sort of system utility. This was mildly irritating as needing a program for a single task just seems sorta silly. Then I stumbled upon: http://www.osxfaq.com/DailyTips/02-2005/02-01.ws
Show all folders/files:
Code:
$ defaults write com.apple.finder AppleShowAllFiles TRUE
$ killall Finder
Set back to default:
Code:
$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder
Uncategorized »
Fixing Bootcamp time sync issue
I found a better solution to this whole thing. The problem with the Windows clock being off is because the hardware clock (the one on your actual motherboard) is being set to “Universal” time, or GMT, when you shut down your MacOS bootup. When you boot Windows, Windows assumes your clock is set to your local timezone because that’s what Windows does …
Computing »
I found a better solution to this whole thing. The problem with the Windows clock being off is because the hardware clock (the one on your actual motherboard) is being set to “Universal” time, or GMT, when you shut down your MacOS bootup. When you boot Windows, Windows assumes your clock is set to your local timezone because that’s what Windows does by default. This explains why the people who set their MacOS clock to GMT got the right time in Windows… If the hardware clock is being set to …
Automation »
script to change location
– Global property
global set_loc
– Gets current Location
set current_location to do shell script “scselect 2>&1 | grep ‘^ ‘ 2>&1 | grep ‘*’ | cut -f 2 -d ‘(’ | cut -f 1 -d ‘)’”
– checks if it is set to first location and changes to the other one if it is
if current_location is equal to “LOCATION A” then
do shell script “scselect LOCATION B”
set set_loc to “LOCATION B”
– if not then checks to see if it is set to the second location and changes to the other one …
