- Baud rate: 9600
- Parity: 8N1
1----2----3----[]----5
TX GND Vcc GND RX
I hereby claim:
To claim this, I am signing this object:
For more info see http://code.google.com/p/easycap-somagic-linux/wiki/GettingStarted
#!/bin/sh /etc/rc.common | |
START=95 | |
start() { | |
screen -S dump1090 -h 20 -d -m -L dump1090 --net >> /dev/null | |
} | |
stop() { | |
screen -r dump1090 -X quit |
import httplib2 | |
from apiclient.discovery import build | |
from oauth2client.client import SignedJwtAssertionCredentials | |
def build_google_analytics_service(): | |
http = httplib2.Http() | |
credentials = SignedJwtAssertionCredentials( | |
GOOGLE_CLIENT_EMAIL, |
# https://stackoverflow.com/questions/25136282/what-is-the-right-way-to-extend-the-username-field-length-in-django-1-5 | |
from django.contrib.auth.forms import UserCreationForm | |
from django.contrib.auth.models import AbstractUser | |
class MyUser(AbstractUser): | |
pass | |
USERNAME_LENGTH = 50 |
#!/usr/bin/perl -w | |
use strict; | |
no strict 'refs'; | |
use English; | |
use XML::Simple; | |
use Data::Dumper; | |
use MIME::Base64; | |
# use Crypt::OpenSSL::X509; |
# Arch Linux installation procedure on a Lenovo ThinkPad X200s | |
# BIOS boot (no UEFI), SSD + LVM + LUKS + TRIM + discards | |
# Randomize (or zero) drive contents | |
dd if=/dev/urandom of=/dev/sda | |
# Create GPT and partitions | |
# Use gdisk to ensure proper partition alignment | |
gdisk /dev/sda | |
# 100MB boot partition on /dev/sda1 type 8300 |
I hereby claim:
To claim this, I am signing this object:
Description='31C3 secure WPA2 802.1X config' | |
Interface=wls1 | |
Connection=wireless | |
Security=wpa-configsection | |
IP=dhcp | |
ESSID=31C3 | |
WPAConfigSection=( | |
'ssid="31C3"' | |
'proto=RSN WPA' | |
'key_mgmt=WPA-EAP' |