I hereby claim:
- I am seppestas on github.
- I am seppestas (https://keybase.io/seppestas) on keybase.
- I have a public key whose fingerprint is 1EEA B396 EECA 267E 0F5B 6C2E FECE AA3E ECF4 C38F
To claim this, I am signing this object:
| # Turn mouse-mode on | |
| set -g mouse-resize-pane on | |
| set -g mouse-select-pane on | |
| set -g mouse-select-window on | |
| set -g terminal-overrides 'xterm*:smcup@:rmcup@' |
| navigator.getNetworkServices(['upnp:urn:schemas-upnp-org:service:ContentDirectory:1',], function(serviceList) {console.log('got services: '); console.log(serviceList); }, function(e) {console.log('error:' + e.message);} ) |
| # Copyright (c) Productize | |
| # This is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License version 3 | |
| # as published by the Free Software Foundation. | |
| # You can get the license at <http://www.gnu.org/licenses/gpl.html> | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| # GNU General Public License for more details. |
| Homebrew build logs for gst-plugins-bad on Mac OS X 10.11.4 | |
| Build date: 2016-05-09 10:35:17 |
I hereby claim:
To claim this, I am signing this object:
| package stuff | |
| import ( | |
| "github.com/stretchr/testify/mock" | |
| "testing" | |
| ) | |
| // Interface to mock | |
| type Stuff interface { | |
| DoThings(fu, bar string) (string, error) |
| // Module to talk to the SHT21 temperature and humidity sensor over I2C | |
| var i2c = require('i2c'); | |
| // Register addresses | |
| const TRIGGER_T_MEASUREMENT_NO_HOLD = 0xF3; | |
| const TRIGGER_RH_MEASUREMENT_NO_HOLD = 0xF5; | |
| const WRITE_USER_REGISTER = 0xE6; | |
| const READ_USER_REGISTER = 0xE7; | |
| const SOFT_RESET = 0xFE; |
| ${foo:$((${#foo}-$n))} |
| cmake -DCMAKE_C_COMPILER=clang \ | |
| -DCMAKE_CXX_COMPILER=clang++ \ | |
| -DCMAKE_OSX_DEPLOYMENT_TARGET=${$(defaults read loginwindow SystemVersionStampAsString)%.*} \ | |
| -DwxWidgets_CONFIG_EXECUTABLE=/usr/local/opt/kicad-wxwidgets/bin/wx-config \ | |
| -DKICAD_SCRIPTING=ON \ | |
| -DKICAD_SCRIPTING_MODULES=ON \ | |
| -DKICAD_SCRIPTING_WXPYTHON=ON \ | |
| -DKICAD_SCRIPTING_ACTION_MENU=ON \ | |
| -DPYTHON_EXECUTABLE=/usr/local/bin/python2 \ | |
| -DPYTHON_SITE_PACKAGE_PATH=/usr/local/opt/kicad-wxpython/lib/python2.7/site-packages \ |
| var xhr = new XMLHttpRequest(); | |
| xhr.open('POST', './mac-address', true); | |
| var formData = new FormData(); | |
| formData.append('mac-address', mac); | |
| xhr.send(formData); |