de tech tips

Little tidbits that have saved me time
Jul 31
Permalink

Oil and Gas Companies Australia

  • Woodside
  • BHPB
  • Santos
  • BG
  • Shell
  • BP
  • Chevron
  • Lakes Oil
  • Origin
  • ConocoPhillips
  • AGL
  • Arrow
  • ENI
  • Tap Oil
  • Drillsearch
  • Bass Strait Oil co
  • Victoria Petroleum
  • Nexus
  • Beach
  • Anzon
  • Metgasco
  • OMV Australia
  • AWE
  • Eastern Star Gas
  • AED
  • 3D Oil
  • Roc
  • Benaris
  • Magellan
  • Cal Energy
  • Mosaic
  • Stuart
  • Molopo
  • Adelaide Energy
  • AJ Lucas
  • CS Energy
  • Inpex
  • QGC
  • Cooper Energy
  • Tokyo EP
  • Sydney Gas
  • Nexus
  • Talisman
  • Vermilion

Aug 06
Permalink

Online Bearing CAD

www.skf.com/

Aug 05
Permalink

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 if it is
else if current_location is equal to “LOCATION B” then
do shell script “scselect LOCATION A”
set set_loc to “LOCATION A”
else
display dialog “You aren’t on either main location. Nothing has been changed.” buttons {“OK”} default button 1
end if

— displays dialog telling which location changed to
display dialog “Location changed to ” & set_loc buttons {“OK”} default button 1

— Dials up.
tell application “Internet Connect”
connect
end tell

Jul 29
Permalink

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 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 “GMT,” when it’s actually the local time, Windows will pick this setting up as local time as it did before.

To fix this, you need to add a key to your Windows system registry to tell Windows that your hardware clock will always be GMT.

*** WARNING: Editing your registry improperly can render your Windows installation inoperable. Proceed VERY carefully. I am not responsible if you mess something up. ***

The short solution for people who know how to edit the registry:
A DWORD key called HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\TimeZoneInformation\RealTimeIsUniversal needs to have the value of “1”

The step-by-step solution is as follows:
1. Boot Windows

2. Click Start —> Run and type regedit. Click OK

3. The Windows Registry Editor should pop up. Navigate within the explorer to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\TimeZoneInformation

4. Click on the TimeZoneInformation “folder” from the navigation pane if you haven’t already done so.

5. This assumes the correct key doesn’t exist. If it does, you will just change the existing key’s value: Right click on the white space within the folder (If you don’t have a right mouse button, you may need to download a program called applemouse to emulate the “control-click” of the apple 1-button mouse). Select new —> DWORD Value. Title the key “RealTimeIsUniversal” (No quotes). Set the value to “1” (No quotes again). Hexidecimal should be fine.

6. Either reboot and set the clock in MacOS or set the clock in Windows. You should now be able to reboot into either OS and have a correct clock.

Jul 26
Permalink
Mum’s new ADSL 2+ Speed07 2007

Mum’s new ADSL 2+ Speed
07 2007

Jul 23
Permalink

OSX Hidden Files

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

Jul 22
Permalink

Sygate Recovering System Tray (Nofitication Area) Icon

Just simply relaunch the file from the start menu or your program files folder and uncheck the Hide System Tray option

easy 

Jun 12
Permalink
May 26
Permalink

Recovering a Palm OS4 's Data without being synced to the computer

If you by any chance can get FileZ onto the palm (external memory slot a possibility) Backup the AddressBook data base to the external card.

Alternatively, Install the Palm Conduit for Windows, and get ready to sync.

First find the name of the user on the palm (top right hand corner on hotsync) and simply name your windows profile with the same user name.

Go ahead and sync, to get all of your palm data recovered

*Not supported nor recommended
* Leave a comment if it works for you.

Mar 23
Permalink

Edgy to Feisty

sudo sed -e ’s/\edgy/ feisty/g’ -i /etc/apt/sources.list

Now you need to update the source list using the following command
sudo apt-get update

Upgrade using the following command
sudo apt-get dist-upgrade

Double check your process was finished properly using the following commd
sudo apt-get -f install

sudo dpkg —configure -a
Now you need to Reboot your machine to take your new ubuntu 7.04 installation to effect all changes.

Testing Your Upgrade
You can check the ubuntu version installed using the following command

sudo lsb_release -a