Get the IP address of your VirtualBox guest VM
16 May 2013
Make sure you have VirtualBox’s Guest Additions installed on the VM and then simply run the following command from your host:
Just a site to share some of my memories.
16 May 2013
Make sure you have VirtualBox’s Guest Additions installed on the VM and then simply run the following command from your host:
29 April 2012
Ever wanted to know how to get a subversion log by user name? Here’s how to do it…
03 April 2012
23 March 2012
Many thumb drives are formatted with FAT32, making the maximum file size just shy 4GB. If you need to copy a large file like this to a thumb drive, follow the instructions below.
20 March 2012
First, you should check to be sure that you have the same wireless card (BCM4306 rev 02) that I do using the lspci command:
20 March 2012
SELECT
CONCAT(table_schema, '.', table_name) AS tableName,
CONCAT(ROUND(table_rows / 1000, 2), ' Thousand') AS numberOfRows,
CONCAT(ROUND(data_length / ( 1024 * 1024 ), 2), ' MB') AS dataSize,
CONCAT(ROUND(index_length / ( 1024 * 1024 ), 2), ' MB') AS indexSize,
CONCAT(ROUND(( data_length + index_length ) / ( 1024 * 1024 ), 2), ' MB') AS totalSize,
ROUND(index_length / data_length, 2) AS indexFraction
FROM information_schema.TABLES
ORDER BY data_length + index_length DESC
LIMIT 5;