Monthly Archives: January 2015

Best Space Conquest Strategy Game

VGA PLanets has been re-done for the web. best ever.

Posted in Uncategorized | Comments Off on Best Space Conquest Strategy Game

Password reset template not working in django — admin password reset comes up instead

This was a real head scratcher. Not sure exactly why but, of all the templates used by django-registration, this one template has an issue. But it does. registration/password_reset_form.html For some reason, the admin password reset form comes up instead of … Continue reading

Posted in django | Comments Off on Password reset template not working in django — admin password reset comes up instead

How to fix all sequences in postgres 9.x

— select table_name || ‘_’ || column_name || ‘_seq’, reset_sequence(table_name, column_name, table_name || ‘_’ || column_name || ‘_seq’) from information_schema.columns where column_default like ‘nextval%’; — Function: reset_sequence(text, text) — DROP FUNCTION reset_sequence(text, text); CREATE OR REPLACE FUNCTION reset_sequence(tablename text, columnname … Continue reading

Posted in Linux, postgres | Comments Off on How to fix all sequences in postgres 9.x