|
|
| .............................................................................................................................
|
Wednesday, June 8
How i modify the size of NTFS partition?
Now we have a program named: ntfsresize. This program has to be tested, but now it is as experimental. If you want more information, you can consult ntfsresize FAQ.
Other program, but with licence is the Partition Magic.
|
| .............................................................................................................................
|
Saturday, June 4
Today a begin the course of SuSe Linux, the Chapters is divided in 20 hours. The documentation about SuSe Linux can see in the link.
|
| .............................................................................................................................
|
Friday, May 20
I am in Jalapa, in this moment i won the "Concurso Nacional de Soluciones Empresariales", i programmed in PHP, the databases was MySQL. The application to devel was a sales point.
|
| .............................................................................................................................
|
Tuesday, April 26
The memories about the Consol is now online, the address is in this link.
Now i am preparing for my next project in the goverment of Coatzacoalcos, is a application online that gone to be mounted in coatzacoalcos.gob.mx portal.
|
| .............................................................................................................................
|
|
Before a crowd of more than 100,000 in the capital's central square, Mexico City Mayor Andres Manuel Lopez Obrador on Thursday 7 called for his supporters to use non-violent resistance to protest proceedings that could bar him from the 2006 presidential race.
"No violence, (we cannot) be lured by provocation," he said. "This movement is peaceful. If we do not behave peacefully, we will be falling into the trap of our adversaries and we cannot allow this."
Source: El Universal
|
| .............................................................................................................................
|
Tuesday, April 5
Today in the Tecnologico a friend asked me how is the sintaxis in perl. Here a put a example that only show the current directory:
#! /usr/bin/perl
$actual =`pwd`;
@list = `ls`;
print "Listado de $actual\n";
foreach $file (@list){
print "$file";
}
|