Archive

Archive for the ‘hardware’ Category

Google Native Client

December 11th, 2008

Google Native Client

Native Client is an open-source research technology for running x86 native code in web applications

WebSite: http://code.google.com/p/nativeclient/

More information on Google Code Blog

Download native client

develop, hardware, web ,

Instant Boot (ASRock Inc)

November 12th, 2008

Instant Boot (ASRock Inc)

Instant Boot is a pretty cool product of ASRock Inc, you can boot on Windows Vista only in 4 seconds.

See the video:

Download (see the model of the motherboard).

hardware, windows ,

Google App Engine

November 5th, 2008

Google App Engine

Downloads (http://code.google.com/appengine/downloads.html)

Google App Engine use Django, webob, yaml.

You need Python (http://www.python.org) (Python 2.5)

The configuration file app.yaml

There are two main Python scripts:

Video from the The Google Code Channel:

See the applications gallery

Google App Engine

database, develop, hardware, network, projects, web , ,

Toshiba Fan On Ubuntu

September 28th, 2008

Toshiba Fan On Ubuntu

You need to install toshset include on toshutils (do you have lm-sensors ?)

sudo apt-get install toshutils

This script make the fan run high, low or normal

#!/bin/bash
case $1 in
	h) sudo toshset -fan 4 # high
	;;
	n) sudo toshset -fan 5 # normal
	;;
	l) sudo toshset -fan 6 # low
	;;
esac

If you live in warn places, “~$ script.sh h” could be help you a little don’t use all time this option, to normalize your fan run “~$script.sh n”.

There are other tools on toshset “man toshset”.

hardware, unix/linux , , , ,