Home » Archive

Articles Archive for August 2007

Uncategorized »

[31 Aug 2007 | No Comment | ]

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 »

[13 Aug 2007 | No Comment | ]

http://www.gummy-stuff.org/Yahoo-data.htm

Uncategorized »

[12 Aug 2007 | No Comment | ]

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 »

[12 Aug 2007 | No Comment | ]

Free file hosting, for the DE community (password required)
available at upload.duivesteyn.net,

Uncategorized »

[7 Aug 2007 | No Comment | ]

claimID.com/duivesteyn - Ben

Computing »

[7 Aug 2007 | No Comment | ]

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 »

[7 Aug 2007 | No Comment | ]

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 »

[7 Aug 2007 | No Comment | ]

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 »

[7 Aug 2007 | No Comment | ]

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 …