So it seems google has come up with a really new exciting and interesting bit of technology.
Just check it out:
http://wave.google.com/
[youtube=http://www.youtube .com/watch?v=v_UyVmITiYQ]
It’s a big jump foward, I think.
An Eye to the World, an Eye to the Net
So it seems google has come up with a really new exciting and interesting bit of technology.
Just check it out:
http://wave.google.com/
[youtube=http://www.youtube .com/watch?v=v_UyVmITiYQ]
It’s a big jump foward, I think.
So just two words about the ustream website and my experience for the mortal immortal symposium.
First of all I want to say it worked like a charm. I used a mac and a firewire cable to connect the camera with the computer. For the technical point of view, we took the video from the camera and the audio from the auditorium system and plugged that into the mac.
The quality of the sound it’s really good. The quality of the video is good enough I think.
More over you can watch or download the video from the channel url
We had 60 unique visitors, 88 total viewers with the mean of 19.3. Below the statics.
If you are around Cambridge this friday and you are interested in science and society I would like to let you know that there is going to be a conference called:
The Mortal Immortal – Scientific and Social Aspects of Ageing
The good news is if you can’t make it you can see the event in live stream on ustream.tv on this link:
http://www.ustream.tv/channel/The-Mortal-Immortal—Scientific-and-Social-Aspect
At the final panel we are going to take questions also from the net, so don’t forget to join the chat and throw your question π
Yesterday one of my housemate asked me if I was able to make a partition of his hard-disk.
He has a 40 Gb drive and wanted to make two partitions, one only for windows and one only for the data.
To accomplished that I just had to fire up an ubuntu live cd (It was the 7.10 version, the one that I had handy at that time) and I used gparted to do the job.
It worked like a charm.
Open a terminal and then write
sudo gparted
to start it.
We were able to resize the old partion from 38 Gb to 12 Gb, create a new one of 28 Gb and format it with the ntfs filesystem.
Oh yeah, because this friend is still using windows.
Then we boot up in windows and the system recognized the two new partitions (C: and E:) and it was happy to use them.
All this thanks to an Ubuntu Live system. And in 5 mins. π
If you have to set up a public repository with git you can follow the instruction found on the git-core tutorial
(Hint: Search for “Publishing your work”)
Things to keep in mind:
project.git and it’s a directory even if you can be mislead to think it’s a file for the extension (.git). Well, it’s not a file.The steps to do that:
mkdir project.gitGIT_DIR=my-git.git git init
git push <public-host>:/path/to/project.git master
On this page on the GNOME website I found how to use git properly if you are using it as a gateway to a svn:
git svn clone _svn_server_location #Clone the repositorygit svn fetch #Download the stuffgit svn rebase #Merge the updates with the currentgit checkout -b myfeature #Create a local branchgit commit -am "changed stuff" # Commitgit commit -am "changed other stuff" # Commitgit checkout master # Change to master branchgit merge --squash myfeauture #Merge myfeature to mastergit commit -am "merge the feature to the master"git svn dcommit # Commit everything on the svn serverMore info about git in the previous posts
Git rocks, and after two days of using I can confirm it.
I was a user of bazar, but with the switching of GNOME to git and the big trouble that bazar was giving me to commit on the svn of the EBI I decided to give to git a go.
Also on bioinfoblog the match between git and bazar it’s a though one, but I right now the svn support from git just works out of the box, so I started to use it.
I want also to point out that with the last git (ATMOW) is possible to create a remote branch on the svn server with:
git svn branch mybranch
and this was one of the killer feature that made me switch.
This is not a tutorial on git but I will provide you some quick and dirty pointers to other posts that I found interesting for a quick introduction to git.
Stuff to keep in mind about git:
Some pointers here:
I’ve customized my bash prompt to show my current branch on a git repository. This is the code (based on some code found on the net that I can’t track anymore.. I’m sorry….) looks like this:
#git branch
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* (.*)/(1)/'
}
#grey
PS1='[33[0;32m]u[33[1;32m]@[33[0;32m]h[33[00m]:[33[01;34m]W[33[1;30m]$(parse_git_branch)[33[00m]$ '
It was a long time that I was wondering when the offline service will be available….
Gears is out for a while, so the technology was there….

Today I discovered gmail offline becomes available from the lab.
Well, it’s the same idea of the readers offline… It’s really good stuff. Give it a go. You need gears and lab installed π

SCAMPS is coming into town this year and we extended the deadline to submit up to 24th of March. If you want to register or you want to submit an article now it’s the time.
There is also a facebook event if you want to join it
I hope to see you there. π
Today I’ve got a black (sad) screen after restarting the computer. The boot process was fine but everything seems to hang when the nvidia drivers was supposed to kick in and Xorg start.
It was impossible to fall back to any console text login type.
I’ve searched the internet here and there, but I was not able to find any solution or bug report, so I come up with an workaround.
I think the problem is due to the new kernel that I’ve installed following one of the suggested update and the incompatibility with the nvidia drivers. I don’t know if it is the true problem, but I have an hint that this can be true.
As the matter of fact I’ve changed the kernel at the boot timeΒ (Push Esc when GRUB is showing the timeout for the default choice) and I choose the previous version (i.e. Ubuntu 8.10, kernel 2.6.27-12-generic).
With this one I was able to login and my system seems to be completely functional, up and running again.
For the time being I decided to stick with this kernel.Β I edited the grub menu list (/boot/grub/menu.lst) changing the default 0 (Ubuntu 8.10, kernel 2.6.27-13-generic) with the second option (Ubuntu 8.10, kernel 2.6.27-12-generic).
Here my current menu.lst
# menu.lst - See: grub(8), info grub, update-grub(8)
# grub-install(8), grub-floppy(8),
# grub-md5-crypt, /usr/share/doc/grub
# and /usr/share/doc/grub-doc/.
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
# WARNING: If you are using dmraid do not use 'savedefault' or your
# array will desync and will not let you boot your system.
default 2
## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout 3
## hiddenmenu
# Hides the menu by default (press ESC to see the menu)
hiddenmenu
# Pretty colours
#color cyan/blue white/blue
...
TRIM
...
## ## End Default Options ##
title Ubuntu 8.10, kernel 2.6.27-13-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.27-13-generic root=UUID=6e98c429-d480-44bd-a689-83114a227939 ro quiet splash
initrd /boot/initrd.img-2.6.27-13-generic
quiet
title Ubuntu 8.10, kernel 2.6.27-13-generic (recovery mode)
root (hd0,0)
kernel /boot/vmlinuz-2.6.27-13-generic root=UUID=6e98c429-d480-44bd-a689-83114a227939 ro single
initrd /boot/initrd.img-2.6.27-13-generic
title Ubuntu 8.10, kernel 2.6.27-12-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.27-12-generic root=UUID=6e98c429-d480-44bd-a689-83114a227939 ro quiet splash
initrd /boot/initrd.img-2.6.27-12-generic
quiet
title Ubuntu 8.10, kernel 2.6.27-12-generic (recovery mode)
root (hd0,0)
kernel /boot/vmlinuz-2.6.27-12-generic root=UUID=6e98c429-d480-44bd-a689-83114a227939 ro single
initrd /boot/initrd.img-2.6.27-12-generic
### END DEBIAN AUTOMAGIC KERNELS LIST
Note that default 0 takes always the latest.
HIH.
Update: Found the BUG https://bugs.launchpad.net/ubuntu/+source/linux/+bug/337019/