Skip to content

Instantly share code, notes, and snippets.

@aalipar13
aalipar13 / mysql-constraint.sql
Created August 28, 2018 06:05
Cannot truncate a table referenced in a foreign key constraint
# Cannot truncate a table referenced in a foreign key constraint
SET FOREIGN_KEY_CHECKS=0;
TRUNCATE <table>;
SET FOREIGN_KEY_CHECKS=1;
@aalipar13
aalipar13 / pngquant-fix.txt
Created August 23, 2018 10:42
pngquant binary doesn't seem to work correctly
# node_modules/pngquant-bin/vendor/pngquant` binary doesn't seem to work correctly
$ sudo apt-get install libpng-dev
$ npm install -g pngquant-bin