First bug that i have found in a relevant library that is zk. I added it on the sourceforge bug database. This bug affect not the current release (5.0) , but a previous one (3.6). The problem is that the 2 version of the java framework are both mantained due to the different licensing schema…
Leggi tutto
When you connect a USB Stick, SD Card or external HDD and you need to mount it by shell command by command prompt you can view alla media connected to your pc by
1 |
sudo fdisk -l |
and the result :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Disco /dev/sda: 320.0 GB, 320072933376 byte 255 testine, 63 settori/tracce, 38913 cilindri Unità = cilindri di 16065 * 512 = 8225280 byte Identificativo disco: 0xce46c7a1 Dispositivo Boot Start End Blocks Id System /dev/sda1 * 1 37446 300784963+ 83 Linux /dev/sda2 37447 38913 11783677+ 5 Esteso /dev/sda5 37447 38913 11783646 82 Linux swap / Solaris Disco /dev/sdb: 16.1 GB, 16131293184 byte 102 testine, 38 settori/tracce, 8128 cilindri Unità = cilindri di 3876 * 512 = 1984512 byte Identificativo disco: 0x04030201 Dispositivo Boot Start End Blocks Id System /dev/sdb1 * 1 8129 15752192 c W95 FAT32 (LBA) |
now i found my device the “/dev/sdb1” , to format it on fat 32 :
1 2 3 |
sudo umount /dev/sdb1 sudo mkfs -t vfat /dev/sdb1 sudo eject /dev/sdb1 |
I just starting on using Oracle 10g …. how to 1 : how retrive a guid from Oracle
1 |
select sys_guid() from dual; |
how to 2 : how retrive next value from a Sequence
1 |
select [your sequence name].nextval into from dual ; |
how to 3 : Oracle db Link , how to manage sql between multiple schema … With DB Link you can produce sql /…
Leggi tutto
Probabilmente vi sarà capitato di dover creare all’interno di un pagina web un link ad un file non residente fra le cartelle gestite dal Web Server. Tale file, in una situazione del genere, non risulta accessibile tramite un semplice href ma lo diventa tramite l’utilizzo di una semplice servlet: Di seguito il codice della servlet…
Leggi tutto
Lo so che centra poco, ma la foto eseguita dalla patnership NASA-ESA relativa alla collisione di due asteroidi lontanissimi dalla terra, è sicurmante qualcosa che ha dello straordinario. La photo in questione è stata scattata il 29 Gennaio 2010 e l’articolo ufficiale è al seguente link : http://www.nasa.gov/mission_pages/hubble/science/asteroid-20100202.html Eccola :
Il titolo provocatorio del post è subito spiegato, è la frase che mi sono sentito dire da un dirigente all’interno di una multinazionale europea! Ovviamente intendeva che c’è una direttiva di casa madre che vieta alle succursali nazionali di utilizzare prodotti Open Source, perchè le multinazionali vogliono avere un Vendor di riferimento per il loro…
Leggi tutto