jueves 22 de octubre de 2009
DELETE de múltiples tablas con ORDER BY o LIMIT
Ref: http://dev.mysql.com/doc/refman/5.0/es/delete.html
sábado 17 de octubre de 2009
png to ico online converter
Ref: http://www.convertico.com/
martes 8 de septiembre de 2009
Subversion vs. Git
When deciding on the best repository type for your team, there are a number of important factors. Subversion has become the de facto standard in our industry for the past several years, however, there is a new and very powerful version control system: Git.
Git is a distributed version control system, originally developed by Linus Torvalds for Linux kernel development. It has grown over the years to serve as the development platform for many other very large and active open source projects. While Git can be an excellent solution for many teams, it does have a slightly higher learning curve than its Subversion counterpart.
For a detailed explanation of the advantages of Git over Subversion, and vice versa, please see the following from the official Git Wiki: GitSvnComparison.
jueves 3 de septiembre de 2009
find para mover archivos antiguos
find . -maxdepth 1 -type f -amin +10 -exec mv '{}' carpeta/ \;
miércoles 2 de septiembre de 2009
How to test an SMTP server using telnet
telnet: > telnet mx1.example.com smtp
telnet: Trying 192.0.2.2...
telnet: Connected to mx1.example.com.
telnet: Escape character is '^]'.
server: 220 mx1.example.com ESMTP server ready Tue, 20 Jan 2004 22:33:36 +0200
client: HELO client.example.com
server: 250 mx1.example.com
client: MAIL from:
server: 250 SenderOk
client: RCPT to:
server: 250 RecipientOk
client: DATA
server: 354 Ok Send data ending with.
client: From: sender@example.com
client: To: recipient@example.com
client: Subject: Test message
client:
client: This is a test message.
client: .
server: 250 Message received: 20040120203404.CCCC18555.mx1.example.com@client.example.com
client: QUIT
server: 221 mx1.example.com ESMTP server closing connection
domingo 16 de agosto de 2009
Linux - Add a existing user to existing group
# usermod -a -G ftp tony
Change existing user tony primary group to www:# usermod -g www tony




