-
Sponsored Links
-
Recent Posts
- How to add ICMP Echo Request to AWS Security Group from the CLI
- How to fix STOP: 0x0000007B blue screen when moving virtualbox machine to another computer
- pip is broken with AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’
- Generate a certificate request but keep your old key with openssl
- OSError: [Errno 1] Operation not permitted: Extras/lib/python/six-1.4.1-py2.7.egg-info’
Categories
- AWS (1)
- cli (1)
- CSS (1)
- django (4)
- DNS (1)
- DRBD (1)
- Exchange (1)
- FAX (1)
- FTP (1)
- git (2)
- Glusterfs (1)
- IIS (1)
- Kemp (1)
- Linux (38)
- lxc (3)
- Mac OS X (11)
- Malware (2)
- Microsoft (7)
- Multipoint Server 2012 (1)
- mysql (3)
- nagios (2)
- nginx (3)
- Office 365 (1)
- PHP (1)
- postgres (9)
- python (9)
- QNAP (1)
- raspberry pi (1)
- Samba (2)
- Security (1)
- SSL (10)
- Tomcat (1)
- Ubuntu (2)
- Uncategorized (4)
- Virtualbox (1)
- vmware (2)
- Web Programming (2)
- windows (12)
Archives
- September 2018 (3)
- August 2018 (1)
- October 2017 (1)
- November 2016 (1)
- October 2016 (2)
- September 2016 (1)
- May 2016 (1)
- December 2015 (1)
- November 2015 (1)
- October 2015 (2)
- September 2015 (1)
- August 2015 (2)
- July 2015 (1)
- June 2015 (1)
- March 2015 (3)
- January 2015 (3)
- November 2014 (1)
- October 2014 (1)
- September 2014 (1)
- August 2014 (2)
- April 2014 (1)
- February 2014 (3)
- January 2014 (1)
- November 2013 (3)
- October 2013 (3)
- September 2013 (1)
- August 2013 (3)
- July 2013 (1)
- June 2013 (1)
- May 2013 (1)
- April 2013 (3)
- March 2013 (5)
- February 2013 (3)
- January 2013 (1)
- December 2012 (5)
- November 2012 (3)
- October 2012 (1)
- September 2012 (1)
- August 2012 (2)
- July 2012 (4)
- April 2012 (1)
- March 2012 (2)
- February 2012 (1)
- January 2012 (4)
- December 2011 (1)
Author Archives: admin
How to reset lost QNAP iscsi CHAP password
I wanted to change the password for one of my QNAP ISCSI luns, but there really is no way to do that with the current software. Fortunately you can recover your password by using ssh to login to your qnap, … Continue reading
Posted in QNAP
Comments Off on How to reset lost QNAP iscsi CHAP password
ImportError: cannot import name sanitizer when trying to run django
I hope this saves you a couple hours of headaches that I experienced recently. If you get the dreaded error: from html5lib import sanitizer, serializer, treebuilders, treewalkers ImportError: cannot import name sanitizer Never fear. The fix is easy once you … Continue reading
Posted in django, python, Web Programming
Comments Off on ImportError: cannot import name sanitizer when trying to run django
KeyError: ‘en-us’ when doing a reverse() lookup in urls.py
If you’re getting an error like this: … in reverse_dict return self._reverse_dict[language_code] KeyError: ‘en-us’ If your urls.py file contains a reverse() call, that is the reason. You’re calling reverse before all the urls are loaded and everything is ready. You … Continue reading
Posted in django, python, Web Programming
Comments Off on KeyError: ‘en-us’ when doing a reverse() lookup in urls.py
How to get rid of winmail.dat attachments when using Office365 and Outlook 2016
Sometimes Outlook 2016 decides to send the body every email as a winmail.dat attachment. This works fine when the person you are sending the email to is using Outlook. But other mail users will get a blank message with a … Continue reading
Posted in Exchange, Office 365
Comments Off on How to get rid of winmail.dat attachments when using Office365 and Outlook 2016
How to fix all postgres sequence numbers in a database
Create this stored procedure: CREATE OR REPLACE FUNCTION “reset_sequence” (tablename text, columnname text, sequence_name text) RETURNS “pg_catalog”.”void” AS $body$ DECLARE BEGIN EXECUTE ‘SELECT setval( ”’ || sequence_name || ”’, ‘ || ‘(SELECT MAX(‘ || columnname || ‘) FROM ‘ || … Continue reading
Posted in Uncategorized
Comments Off on How to fix all postgres sequence numbers in a database