{{TOC}}
Here there is some text in italic and some in bold and link to my personal page Personal Page.
{{TOC}}
Here there is some text in italic and some in bold and link to my personal page Personal Page.
| login | |
| curl -H "Host: cloud.culturedcode.com" -H "Content-Type: application/json; charset=UTF-8" -H "Proxy-Connection: keep-alive" -H "Accept: */*" -H "User-Agent: ThingsMac/20803501mas (x86_64; OS X 10.11.3; en_US)" -H "Authorization: Password pppppwwwwdddd" -H "Accept-Language: en-us" --compressed https://cloud.culturedcode.com/version/1/account/user%40exmaple.com | |
| get key | |
| curl -H "Host: cloud.culturedcode.com" -H "Content-Type: application/json; charset=UTF-8" -H "Proxy-Connection: keep-alive" -H "Accept: */*" -H "User-Agent: ThingsMac/20803501mas (x86_64; OS X 10.11.3; en_US)" -H "Authorization: Password pppppwwwwdddd" -H "Accept-Language: en-us" --compressed https://cloud.culturedcode.com/version/1/account/user%40exmaple.com/own-history-keys | |
| get index | |
| curl -H "Host: cloud.culturedcode.com" -H "Content-Type: application/json; charset=UTF-8" -H "Proxy-Connection: keep-alive" -H "Accept: */*" -H "User-Agent: ThingsMac/20803501mas (x86_64; OS X 10.11.3; en_US)" -H "Accept-Language: en-us" --compressed https: |
| #!/bin/bash | |
| function checkport { | |
| if nc -zv -w30 $1 $2 <<< '' &> /dev/null | |
| then | |
| echo "[+] Port $1/$2 is open" | |
| else | |
| echo "[-] Port $1/$2 is closed" | |
| fi | |
| } |
| # basic pfctl control | |
| # == | |
| # Related: http://www.OpenBSD.org | |
| # Last update: Tue Dec 28, 2004 | |
| # == | |
| # Note: | |
| # this document is only provided as a basic overview | |
| # for some common pfctl commands and is by no means | |
| # a replacement for the pfctl and pf manual pages. |
| #!/usr/bin/env python | |
| """ | |
| Saves URL(s) to a user's Pocket queue. | |
| It accepts either command line arguments or a URL from the OS X clipboard. | |
| For information about Pocket see http://getpocket.com/ | |
| """ | |
| import optparse | |
| import subprocess |