Social Suicide
2009-12-22 by xpheas
You want your actual life back?
Wanna meet your real neighbours again?
You can do it. It's so easy!
suicide machine
Time Remaining
2009-12-11 by xpheas
Time remaining calculation like Windows :D
List all MySQL Databases and show their sizes
2009-12-09 by xpheasBASH-Code:
| mysql -u root -p -e 'SELECT table_schema "Database", ROUND(SUM(data_length + index_length)/1024/1024, 4) "Size (MiB)" from information_schema.tables GROUP BY table_schema;' |
BASH-Code:
| +--------------------+------------+ | Database | Size (MiB) | +--------------------+------------+ | information_schema | 0.0039 | | mysql | 0.5040 | | xpheascom | 8.3756 | +--------------------+------------+ |