Devel::ptkdb
requires Tk...which requires X11.
A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.
Jump to
seq on Mac?
Mac doesn't have seq like Redhat does.
instead of: seq 1 10
seq [first] [increment] [last]
try: jot 10 1 10
jot [reps] [start] [finish] [step]
instead of: seq 1 10
seq [first] [increment] [last]
try: jot 10 1 10
jot [reps] [start] [finish] [step]
How big are my MySQL databases?
SELECT TABLE_SCHEMA AS 'Database', TABLE_NAME AS 'Table', CONCAT(ROUND(((DATA_LENGTH + INDEX_LENGTH - DATA_FREE) / 1024 / 1024),2)," MB") AS Size FROM INFORMATION_SCHEMA.TABLES
Subscribe to:
Posts (Atom)