Portions taken from http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html (in case that link ever dies.)
Assume you've got homebrew installed.
Download the following files from Oracle
/* | |
* Copyright (C) 2010 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
#compdef screen | |
_arguments -s -S ":tty:_files -g /dev/tty*" \ | |
":baud:(9600 115200)" && return 0 | |
return 1 |
''' | |
Simple urllib example to demonstrate how to use the `tls12_http` module. | |
''' | |
import urllib2 | |
import json | |
from tls12_http import TLS1_2AuthHandler | |
client_key = None #'client_key.pem' |
import logging | |
import socket, ssl | |
host = 'www.google.com' | |
use_ssl = False | |
port = 443 if use_ssl else 80 | |
ca_certs = None # or path/to/ca_file.pem | |
sock = socket.socket(Socket.AF_INET, Socket.SOCK_STREAM) | |
# self.socket.settimeout(1) |
# Add this w/ your other imports: | |
begin | |
require 'aws/s3' | |
require 'yaml' | |
rescue | |
puts "No S3 upload support!" | |
end | |
# and in your config section... | |
s3_config_file = "amazon_s3.yml" # location of file with S3 access key, private key, bucket name |
Portions taken from http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html (in case that link ever dies.)
Assume you've got homebrew installed.
Download the following files from Oracle
require 'sqlite3' | |
require 'csv' | |
module ENOC | |
## | |
# Functions to load EnerNOC Open Data (http://open.enernoc.com/data) | |
# into a sqlite database for relational access. This sould be easy | |
# to migrate to Postgres or MariaDB if you want a 'real' database. | |
# | |
module Sql |
import logging, urllib2 | |
import https | |
client_cert_key = None # file path | |
client_cert_pem = None #file path | |
ca_certs = None # file path | |
handlers = [] | |
handlers.append( HTTPSClientAuthHandler( |
6.611593] 0x30 0x14 0x01 0x00 0x00 0x0f 0xac 0x04 | |
[ 476.622731] 0x01 0x00 0x00 0x0f 0xac 0x04 0x01 0x00 | |
[ 476.634192] 0x00 0x0f 0xac 0x02 0x00 0x00 0xd4 0xcc | |
[ 476.645687] =>rtw_wx_set_essid | |
[ 476.654897] ssid=EW, len=2 | |
[ 476.663757] Set SSID under fw_state=0x00000008 | |
[ 476.674480] <=rtw_wx_set_essid, ret 0 | |
[ 482.689276] wpa_set_auth_algs, AUTH_ALG_OPEN_SYSTEM | |
[ 482.700379] set_mode = IW_MODE_INFRA | |
[ 482.710917] |
root@raspbian:~# wpa_supplicant -i wlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf -dd | |
wpa_supplicant v1.0 | |
random: Trying to read entropy from /dev/random | |
Initializing interface 'wlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A' | |
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf' | |
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' | |
ctrl_interface='/var/run/wpa_supplicant' | |
ctrl_interface_group='0' | |
ap_scan=2 | |
Line: 16 - start of a new network block |