The dongle itself is sending out data using 802.11a (5 GHz WiFi) with OFDM and 6 Mbit/s data rate:
Radiotap Header v0, Length 38
Header revision: 0
Header pad: 0
Header length: 38
Present flags
If postfix runs in an chrooted environment: | |
# ========================================================================== | |
# service type private unpriv chroot wakeup maxproc command + args | |
# (yes) (yes) (yes) (never) (100) | |
# ========================================================================== | |
cleanup unix n - y - 0 cleanup | |
... opendkim.sock must be placed into /var/spool/postfix. Postfix won't be able to access the socket otherwise. |
#!/usr/bin/env python | |
# Adapted from Mark Mandel's implementation | |
# https://github.com/ansible/ansible/blob/devel/plugins/inventory/vagrant.py | |
import argparse | |
import json | |
import paramiko | |
import subprocess | |
import sys | |
#!/usr/bin/env perl | |
print r(-1882006324) . ' ' . r(-2062980754) . "\n"; | |
sub r { | |
my $s = ''; | |
srand(shift); | |
while (my $r = int(rand(27))) { | |
$s .= chr(ord('`') + $r); | |
} |
#! /bin/env bash | |
cat $1 | ruby -pe 'puts " "*20 if $_.match("^```$")' \ | |
| pandoc -f markdown -t textile \ | |
| ruby -r CGI -n -e 'print CGI.unescapeHTML($_);' \ | |
| ruby -ne 'puts $_ unless $_.match(" "*20)' \ | |
| pbcopy | |
# without spaces, pandoc outputs "bc." for code blocks, which isn't accepted to redmine | |
# it also annoyingly HTML escapes its pre- block contents |
/* | |
* Apple System Management Control (SMC) Tool | |
* Copyright (C) 2006 devnull | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU General Public License | |
* as published by the Free Software Foundation; either version 2 | |
* of the License, or (at your option) any later version. | |
* This program is distributed in the hope that it will be useful, |
diff -Naru znc-0.206.orig/Chan.cpp znc-0.206/Chan.cpp | |
--- znc-0.206.orig/Chan.cpp 2012-04-06 04:25:50.000000000 +0900 | |
+++ znc-0.206/Chan.cpp 2012-08-07 16:31:17.000000000 +0900 | |
@@ -570,7 +570,7 @@ | |
MODULECALL(OnChanBufferStarting(*this, *pUseClient), m_pUser, NULL, bSkipStatusMsg = true); | |
if (!bSkipStatusMsg) { | |
- m_pUser->PutUser(":***[email protected] PRIVMSG " + GetName() + " :Buffer Playback...", pUseClient); | |
+ m_pUser->PutUser(":***[email protected] NOTICE " + GetName() + " :Buffer Playback...", pUseClient); | |
} |
window.Profiler = { | |
stackFrame: [], | |
counters: {}, | |
working: false, | |
listup: function(name, obj, parentName, parentObj, level) { | |
if(level > 10) { | |
return; | |
} | |
var fullName = parentName? parentName + "." + name: name; |
/* | |
* You have to include oauth.js and sha1.js from here http://oauth.googlecode.com/svn/code/javascript/ | |
* / | |
var url = "https://userstream.twitter.com/2/user.json"; | |
var accessor = { | |
token: "", | |
tokenSecret: "", | |
consumerKey : "", | |
consumerSecret: "" |
モチベーション | |
--------------- | |
Androidのエミュレータは中でQEMUを使ってる | |
中で使われているので、Android開発とは直接関係がないけど、 | |
素のQEMUの使い方を知る。 | |
* QEMUの使い方を覚える | |
* Linuxをエミュレータ環境で動かしてみる | |
* ARM のクロス環境に慣れてみる |