- Documentation @ http://git.kernel.org/cgit/network/connman/connman.git/tree/doc
-
Scan for access points (run multiple times for more complete scan):
# connmanctl scan wifi
Scan completed for wifi
| # This is also a useful list: | |
| # https://gist.github.com/ScottPhillips/1721489 | |
| # ====================================================================== | |
| # Wordpress ReWrites | |
| # ====================================================================== | |
| #wp/index.php/category/the-topic > blog/category/the-topic | |
| #category rewrite |
| # Mini-project #8 - "RiceRocks" (Asteroids) | |
| # | |
| # 'Introduction to Interactive Programming in Python' Course | |
| # RICE University - coursera.org | |
| # by Joe Warren, John Greiner, Stephen Wong, Scott Rixner | |
| import simplegui | |
| import math | |
| import random |
| SELECT * | |
| FROM bl0g_options | |
| WHERE option_name = 'stylesheet' | |
| OR option_name = 'current_theme' | |
| LIMIT 0 , 30 |
| Linux - create "Default (Linux).sublime-mousemap" in ~/.config/sublime-text-3/Packages/User | |
| Mac - create "Default (OSX).sublime-mousemap" in ~/Library/Application Support/Sublime Text 3/Packages/User | |
| Win - create "Default (Windows).sublime-mousemap" in %appdata%\Sublime Text 3\Packages\User | |
| [ | |
| { | |
| "button": "button1", | |
| "count": 1, | |
| "modifiers": ["ctrl"], | |
| "press_command": "drag_select", |
| Changing email providers does not solve the problem. Email is ***NOT usually*** encrypted at the protocol level. It is very likely better to just stick with Gmail sadly enough. | |
| The only real resolution is to: | |
| 1. Never send sensitive information over traditional email without TNO PIE ([GnuPG](https://en.wikipedia.org/wiki/GNU_Privacy_Guard) or GPG). | |
| This is extremely dangerous because: | |
| 1. Most services do not offer secure SMTP | |
| 1. Secure SMTP is vulnerable to downgrade attacks. | |
| 1. Use a secure, anonymous and decentralized alternative such as I2P-Bote or Bitmessage. |
| Complete installation process: | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install -y python-software-properties python make build-essential g++ curl libssl-dev apache2-utils git libxml2-dev | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| cd ~ | |
| mkdir git | |
| cd ~/git |
Scan for access points (run multiple times for more complete scan):
# connmanctl scan wifi
Scan completed for wifi
| .sass-cache/* | |
| codekit-config.json | |
| codekit-config.json | |
| *.sublime-project | |
| *.sublime-workspace | |
| sftp-config.json | |
| *.esproj | |
| .DS_store |
| # Change YOUR_TOKEN to your prerender token | |
| # Change http://example.com (at the end of the last RewriteRule) to your website url | |
| <IfModule mod_headers.c> | |
| RequestHeader set X-Prerender-Token "YOUR_TOKEN" | |
| </IfModule> | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On |
| # Change YOUR_TOKEN to your prerender token | |
| # Change example.com (server_name) to your website url | |
| # Change /path/to/your/root to the correct value | |
| server { | |
| listen 80; | |
| server_name example.com; | |
| root /path/to/your/root; | |
| index index.html; |