Skip to content

Instantly share code, notes, and snippets.

@mustafaturksavas
mustafaturksavas / susam-admin-theme.css
Last active August 2, 2025 01:04
Susam Admin Theme
:root {
--primary-bg: hsl(210, 5%, 16%);
--submenu-bg: hsl(210, 5%, 9%);
--text-light: hsl(0, 0%, 98%);
--text-dark: hsl(210, 5%, 16%);
--accent-color: hsl(214, 100%, 63%);
--hover-color: hsl(214, 98%, 69%);
--transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@mustafaturksavas
mustafaturksavas / Convert Tables to UTF-8
Last active March 4, 2017 09:52
Command to convert collation of all tables inside a db to utf8 and bypass errors for empty date
mysql --user=db_user --password='db_pass' --database=db_name -B -N -e "SHOW TABLES" | awk '{print "SET SESSION sql_mode='NO_ENGINE_SUBSTITUTION';", "ALTER TABLE", $1, "CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;"}' | mysql --user=db_user --password='db_pass' --database=db_name &