Monthly Archives July 2008

evidence of the global warming …

… of the planet measured on the wearing mode of the delicate part of the earth population.

souvenirs (seulement)

What ? : web based ssh key generator

This is amazing !! euuh total verrückt meine ich.
Es geht doch gar nicht, dass man sich seine (private) Schlüssel generieren lässt.
Naja manche machen es !! [http://sshkeygen.com/]
Man sollte denken, niemand könnte je so unglaublich dämlich sein, sich einen Krypto-Schlüssel von jemand anderem generieren zu lassen, denn das heißt ja nicht ohne Grund “private key”. Aber offensichtlich [...]

CRC_16_CCITT in C#

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public static ushort doCRC16(byte[] data)
{
ushort crc = 0xFFFF;
for (int r = 0; r < data.Length; r++ )
{
byte dat = data[r];
for (int j = 0; j < 8; j++ )
{
if (((dat ^ crc) & 0×01) != 0 )
{
crc >>= 1;
crc ^= 0×8008; // CRC_POLYNOM;
}
else { crc >= 1; }
dat >>= 1;
}
}
[...]

Setting up vpnc under Gusty

(i will take the case of my university)
We have a campus wide WLAN network, allowing all student through a VPN to be “connected”.
Install the cisco vpn client software under Ubuntu
# apt-get install vpnc
configure the client under Ubuntu
edit the file under /etc/vpnc/ or just download my, edit it with your values and store it under /etc/vpnc/uni-vpn.conf
IPSec [...]

Iconification de Thunderbird

Pour ceux qui utilisent Thunderbird, et qui n’ont pas souvent suffisamment de place, alors ils peuvent grace a ce plugin l’iconifier.

Gimp your hands: réalisations

NB: Les réalisations sont classées par ordre d’ arrivée dans la boite electronique (gimp_challenge_AT_wangandmin.com)

Le drapeau du cameroun a été fait par Mademoiselle Azeufack Sobze Raïssa , College Libermann, 6è4.

Le coeur le plus laid (c’est le nom donné par l’auteure) a été réalisée par une élève de 6è qui n’avait pas signé son dessin , [...]