Google to release Google Chrome browser


Tomorrow Google will release to the public it’s interenet browser.
They have released a comic here to explain and promote the browser.
It will be interesting to see what features they have and how it will be adopted in a world full of browsers already.
Stay tuned for a small review on the Browser after I test it tomorrow.

Edit 9/10/08:
After using the browser for a bit, here is my takes on the new Chrome browser.
It is definitely faster than any of the other browsers at rendering.
Some Java applications on pages did not function correctly however.  For example I could not print PayPal shipping labels to my label printer.  Also from what I heard, it has many security issues also.
The tear off tabs feature is cool, you can pull tabs out of the window to form there own separate windows or combine separate windows to form tabs.
So far there are no plug ins that I know of like Firefox has.
Since it’s beta, they definitely will address some of these issues and then maybe it can and will be used instead of the default browsers that come with Windows or OSX.

Triple Booting my MacBook Pro with Leopard, XP, and Ubuntu

I tried to triple boot my mac a while back, but I realized later it wasn’t as easy as seemed since the mac uses a EFI loader instead of a BIOS and XP doesn’t really support multiple OS’s.
After trying different things and searching the net, I finally found a method that enabled me to triple boot my mac successfully.
Something to note when you reboot, you can always hold down alt/option and it will let you choose to boot to a CD or eject it if you need to switch.  Also if you install rEFIt, you will also be givin the choice to boot to the CD, but you won’t be able to eject and swap CDs once rEFIt loads.

Installing.

  • First I installed rEFIt a boot loader which enables the mac to boot to more volumes than just holding down alt/option.  It has a cool graphical menu selection screen where you can choose the OS you want to start.  It is free and can be downloaded.
  • Next I partitioned the Macs hard drive to add two more partitions.  I ran terminal commands to complete this:
    diskutil list
    diskutil resizeVolume disk0s2 123.6G “Journaled HFS+” “Linux” 10G “MS-DOS FAT32″ “Windows” 15G
    The list command will show the partition and total size of partition 2.  You want to split it up so they add up to this size.
  • Reboot and hold down alt/option when the boot sound comes and choose to boot to the Windows install CD.
  • After agreeing to the user agreement choose to install Windows on the 4th partition you created that is labeled FAT32.  When it asks you to format it, choose NTFS or FAT32 and quick if you don’t want to wait a long time to check the disk for errors.  (FAT32 does not support file sizes greater than 4GB)
  • After it copies files and asks you to restart, choose the Windows partition to boot in rEFIt and finish installing XP and do the same again after it saves all the final setttings so you can boot into XP and install the Bootcamp Mac drivers.
  • Reboot and hold down alt/option and press eject if you need to change CDs and ut the Ubuntu disk in and choose to boot to the Ubuntu install CD. (It will say Windows CD)
  • Choose English, Mac keyboard, and install and follow the usual install up until the partitioning selection.
  • At the partition choice, press FN+CTRL+ALT (OPTION)+F2 to backup the MBR to a temp location.  At the terminal run: sudo dd if=/dev/sda of=/tmp/sda.mbr bs=512 count=1 . Then press FN+CTRL+ALT (OPTION)+F7″ to exit back to the installation.
  • Choose Manual and the SDA3 choose EXT3 filesystem and format checkbox and mount point / then click ok then foward.  It will warn you about SWAP space, but ignore that click continue because with 2GB or more ram, you shouldn’t need a swap file for ram.
  • Enter your name and password and I just skipped the migrate doc and settings part.
  • At the READY TO INSTALL part, click ADVANCED and choose SDA3 to place the boot loader.  You can review the settings where at the bottom it should say the following partitions are going to be formatted and it should list sda partition #3 as ext3. Click install.
  • When it says the install is complete you need to restore the Windows MBR.  Press FN+CTRL+ALT (OPTION)+F2.  At the terminal enter: sudo dd if=/tmp/sda.mbr of=/dev/sda .  Then press FN+CTRL+ALT (OPTION)+F7″ to exit back to the installation and reboot.

Hopefully you should have a triple boot going now and a bootloader to choose which OS you want at boot time.

Windows information.
After installing bootcamp drivers and everything, I still had a device in device manager with a exclamation on it.  I went to intel.com and downloaded the inf chipset file for the 960 chipsets and it reinstalled the chipset drivers and it seemed to take care of that.

Ubuntu options. Some of these I got from – https://help.ubuntu.com/community/MacBookPro
To show the temps in the top panel:

sudo apt-get install hddtemp

add this to /etc/rc.local :
modprobe coretemp
sensors -s

sudo apt-get install lm-sensors sensors-applet

Now you can right click the panel and add the sensor options.

Function Keys on Keyboard.

Pommed is a daemon to support extra keys on apple computers. These include the brightness, eject, volume and others. Releases of Pommed 1.8 or up fully support the MacBook and MacBook Pro keyboards. It can be installed with this command:

sudo apt-get install pommed

You can check your pommed version number with this command:

pommed -v

The default behavior on Apple keyboards is to have the top row keys primarily function as media keys (brightness, volume, etc), and have the expected function keys (F1, F2, etc) accessible with using the fn keys.

To reverse this behavior, edit the pommed configuration file with this command:

sudo gedit /etc/pommed.confChange the value of fnmode to “2″, and save. At any time, you can change this value back to “1″ to return to the default behavior.

Touchpad Fixes.

Edit /etc/X11/xorg.conf and replace :

Sections “InputDevice

  • Identifiers “Synaptics Touchpad”
  • ..
  • ..

EndSection

With :

Section "InputDevice"
        Identifier      "Synaptics Touchpad"
        Driver          "synaptics"
        Option          "SendCoreEvents"        "true"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "auto-dev"
        Option          "LeftEdge"              "10"
        Option          "RightEdge"             "1200"
        Option          "TopEdge"               "10"
        Option          "BottomEdge"            "370"
        Option          "FingerLow"             "10"
        Option          "FingerHigh"            "20"
        Option          "MaxTapTime"            "180"
        Option          "MaxTapMove"            "220"
        Option          "SingleTapTimeout"      "100"
        Option          "MaxDoubleTapTime"      "180"
        Option          "LockedDrags"           "off"
        Option          "MinSpeed"              "1.10"
        Option          "MaxSpeed"              "1.30"
        Option          "AccelFactor"           "0.08"
        Option          "TapButton1"            "1"
        Option          "TapButton2"            "3"
        Option          "TapButton3"            "2"
        Option          "RTCornerButton"        "0"
        Option          "RBCornerButton"        "0"
        Option          "LTCornerButton"        "0"
        Option          "LBCornerButton"        "0"
        Option          "VertScrollDelta"       "20"
        Option          "HorizScrollDelta"      "50"
        Option          "HorizEdgeScroll"       "0"
        Option          "VertEdgeScroll"        "0"
        Option          "VertTwoFingerScroll"   "1"
        Option          "HorizTwoFingerScroll"  "1"
        Option          "SHMConfig"             "on"
EndSection

Edit the Font to match OSX more.

By default, Ubuntu uses a style of font rendering different than that used on Mac OS X. You may prefer fonts similar to those on Mac OS X, and you can have these on Ubuntu by doing the following:

1. Open the Appearance preference panel (System-Preferences-Appearance)

2. Click Fonts, and click on Details…, on Hinting select the “Slight” option.

Wireless Network Card:

Installed WICD to control network.

Bluetooth Mouse or Keyboard:

If having issues with connecting using the icon in panel.
Open terminal and type:
sudo hidd –search
It should scan for the mouse of keyboard then you can see the mac address of the device.  Next type:
sudo hidd –connect aa:bb:cc:dd:ee:ff
Where aa:bb:cc:dd:ee:ff is the mac address of the mouse or keyboard.
The mouse or keyboard should now be connected.  On the next reboot it will probably ask if you want to pair and connect on future reboots.

Printing to a Airport or Brother wireless printer.

Printing to a Apple Airport device is simple.
You just click add printer and choose AppSocket and put the IP of the Airport which is default 10.0.0.1 and port 9100 is default.  Choose the printer driver and it should work.

For my Brother Wireless MFC-665cw I went into Synaptics package manager and searched for MFC-665cw and it found two packages with drivers.  Installed those and then added the printer via socket like the Apple Airport.  Choose the correct driver and it should work also.

As I find more stuff I add, I will post it here as reference.
If you have any questions or comments, feel free to post them below.

Jing Desktop Recording and Sharing Application


I stumbled upon this application called Jing through Slickdeals.net which is free.  It is a program for the OSX or Windows which records a video or takes a still shot of your desktop.
The best part of it, is that after it captures, it uploads it to Screencast.com to share.  You can also set it to upload to Flickr which I tested to put the picture above or FTP or to a File. (I captured this post.)
It then automatically puts the URL to your capture on your clipboard to share easily.
Here is a video capture I uploaded to test – http://www.screencast.com/users/LESLIEx317537/folders/Jing/media/4cbdf76d-a860-409b-9780-67e2a876e725

I Eat Tweets – The Twitter Application I Wrote

I wanted to try to write a Twitter App for my Windows machine.
I was inspired after seeing a application for the mac called Twitterrific.
I worked on it in WPF first and couldn’t get the task bar icon to control the WPF Tweet window so I decided not to use any WPF in my app. I originally wanted to use WPF because it has nicer windows and smoother fonts, but I guess regular windows forms will have to do for now.

A few of the things I wanted to include like hyper linking links in tweets I didn’t have time to implement. Maybe in a future update.

To download and find out more about my Program and programs – click here to visit my web page www.LESLIEx317537.com and click on I Eat Tweets under the link category Programs.

I hope you enjoy and find some use for the program. If you have any questions or comments, feel free to drop me a email.

Enjoy!

.LES

Windows Live Writer – New Microsoft Live Suite

Microsoft recently released a whole new suite of Live services and programs for Windows XP and Windows Vista.  A new MSN Messenger Live, Photo Gallery Live, Windows Mail Live, and Windows Live Writer Suite.  If you use Vista, the new Photo Gallery Live won’t look much different from the existing Windows Vista Photo Gallery, but it has a upload to Flickr option that makes it easy to upload your pictures right from the gallery.
As I write this post, I’m using the new blogging program from Microsoft called Windows Live Writer.  When I first ran it, it asked me if I want to setup a new Blog using Microsoft’s Live Spaces service or if I all ready had a existing blog somewhere else.  I host WordPress on my own web site and not on WordPress so I thought it would be slightly more complicated to setup.
It asked me some information like my Blog URL and my username and password.  Right away it detected what type of blog and started up this neat interface which I am testing out now.  Now I can easily post to my Blog using my PC.  Thanks Microsoft Live.

Installed Leopard on my MacBook Pro / Crysis for PC Demo

Well I got my Leopard Up-To-Date DVD in the mail today and proceeded to upgrade my existing Tiger install.It took about 1 hour and 15 minutes and when it was done, the only thing that didn’t work right were the Yahoo widgets.I’m going to try to reinstall them later.I’m still playing with Leopard and running a Time Machine initial backup as I write this post.I’ll have more to comment about it probably in a few days.

Cryis Demo for PC was released over the weekend also. I got a chance to play it for 30 minutes or so. The game is amazing, the graphics are top notch. I’ll have to buy the full version when it is released on November 16th. The game utilizes the newest graphic technologies using DX10.You can find more about the game here and download the demo here.

Google Rolls out IMAP for Gmail


Google started to roll out IMAP access on some accounts in Gmail.
So far, one of my three Gmail accounts has had it enabled.  I set it up with my computer and iPhone.  Now when I get email and read it, move it, or delete it, in one place, it does the same for the other device since the mail is stored on the server and is synchronized using IMAP.
You can find out more about Gmail IMAP here.

Ubuntu 7.10 Gutsy Gibson Released


On October 18th Ubuntu released 7.10 Gutsy Gibson.
Ubuntu is a Operating System like Windows or Mac OSX, but is free and maintained by the community.  It also run more efficiently on older machines than XP, making a great choice for that old machine your not using.
I upgraded from 7.04 Fiesty Fawn and it seems to be running pretty well.  It has better bluetooth support I can tell so far.
You can download and find more info here.