Skip to content

Instantly share code, notes, and snippets.

@eloipoch
eloipoch / github.json
Created February 8, 2014 14:06
Kibana Github River
{
"title": "GH",
"services": {
"query": {
"list": {
"0": {
"query": "*",
"alias": "",
"color": "#7EB26D",
"id": 0,
@eloipoch
eloipoch / Table & Index Size
Created June 17, 2013 02:55
Scripts about MySql administration
SELECT table_name AS 'Tables',
ROUND((data_length / 1024 / 1024), 2) "Data in Mb",
ROUND((index_length / 1024 / 1024), 2) "Index in Mb",
ROUND(((data_length + index_length) / 1024 / 1024), 2) "Size in MB"
FROM information_schema.TABLES
WHERE table_schema = :database
ORDER BY ROUND(data_length + index_length) DESC;
@eloipoch
eloipoch / .gitconfig
Created June 12, 2011 02:22
GIT config
[user]
name = Eloi Poch
email = eloi.poch@gmail.com
[core]
autocrlf = input
[color]
ui = true