I hereby claim:
- I am lihan on github.
- I am lihan (https://keybase.io/lihan) on keybase.
- I have a public key whose fingerprint is 34DC D710 2875 2E2B 9461 0D11 6538 D09A D34A F82C
To claim this, I am signing this object:
| # th30z@u1310:[Desktop]$ psql -h localhost -p 55432 | |
| # Password: | |
| # psql (9.1.10, server 0.0.0) | |
| # WARNING: psql version 9.1, server version 0.0. | |
| # Some psql features might not work. | |
| # Type "help" for help. | |
| # | |
| # th30z=> select foo; | |
| # a | b | |
| # ---+--- |
| /** | |
| * How to use | |
| * | |
| * 1. Place below script in "Pre-request Script" tab in Postman, change "apiKey" and "apiSecret" variable. | |
| * 2. In the "Headers" tab, reference the value as "{{authorisation}}" as per your predefined header name, | |
| * typically "authorization" | |
| * 3. Depending on your server side setup, add header "x-api-key" to your KEY. | |
| * | |
| * Tested with Postman Version 6.0.9 | |
| * |
I hereby claim:
To claim this, I am signing this object:
| {% extends 'html5.html' %} | |
| {% block title %}{% endblock title %} | |
| {% block description %}{% endblock %} | |
| {% block head_css %}{% endblock %} | |
| {% block body_contents %} | |
| {% endblock %} |
| <!DOCTYPE html> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title>{% block title %}{% endblock title %}</title> | |
| <meta name="description" content="{% block description %}{% endblock %}"> |
| django | |
| django-secure | |
| django-model-utils | |
| psycopg2 | |
| django-debug-toolbar | |
| South | |
| django-redis-cache | |
| django-waffle | |
| requests |
| #!/bin/bash | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin | |
| export PATH | |
| clear | |
| CUR_DIR=$(pwd) | |
| if [ $(id -u) != "0" ]; then | |
| printf "Error: You must be root to run this script!" | |
| exit 1 |