I hereby claim:
- I am digitalresistor on github.
- I am deltaregeer (https://keybase.io/deltaregeer) on keybase.
- I have a public key ASB8-jhf-jqsvrUG4FPTWQ3zj2qD9eyAZJDe7huBstzA-Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
APPLE INC. | |
LICENSE AGREEMENT FOR THE APPLE SF MONO FONT | |
For iOS, iPadOS, macOS, tvOS and watchOS application uses only | |
PLEASE READ THIS SOFTWARE LICENSE AGREEMENT (“LICENSE”) CAREFULLY BEFORE USING THE APPLE SF MONO FONT (DEFINED BELOW). BY USING THE APPLE FONT, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU ARE ACCESSING THE APPLE FONT ELECTRONICALLY, SIGNIFY YOUR AGREEMENT TO BE BOUND BY THE TERMS OF THIS LICENSE BY CLICKING THE “AGREE” BUTTON. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT USE THE APPLE FONT AND CLICK “DISAGREE”. | |
IMPORTANT NOTE: THE APPLE SF MONO FONT IS TO BE USED SOLELY FOR CREATING MOCK-UPS OF USER INTERFACES TO BE USED IN SOFTWARE PRODUCTS RUNNING ON APPLE’S iOS, iPadOS, macOS, tvOS OR watchOS OPERATING SYSTEMS, AS APPLICABLE. | |
1. General. | |
A. The Apple font, interfaces, content, data, and other materials accompanying this License, whether on disk, print or electronic documentation, in read only memory, or any other media or in any other form, (collective |
Host * | |
IdentityFile ~/.ssh/id_ed25519 | |
IdentityFile ~/.ssh/id_rsa | |
AddKeysToAgent yes | |
UseKeychain yes | |
GSSAPIAuthentication no | |
ServerAliveInterval 30 | |
ServerAliveCountMax 2 |
@pytest.fixture(scope="session") | |
def find_free_port(): | |
""" | |
Returns a factory that finds the next free port that is available on the OS | |
This is a bit of a hack, it does this by creating a new socket, and calling | |
bind with the 0 port. The operating system will assign a brand new port, | |
which we can find out using getsockname(). Once we have the new port | |
information we close the socket thereby returning it to the free pool. | |
This means it is technically possible for this function to return the same | |
port twice (for example if run in very quick succession), however operating |
#!/bin/bash | |
# Install by running: | |
# wget -Nnv https://gist.githubusercontent.com/Landrash/8afefca92bfb96c294b5501fc52f4cbc/raw/89ff001897859d70776d9b13e364a9dacc3861a9/openzwave-hassbian.sh && sudo bash openzwave-hassbian.sh | |
echo "Open Z-Wave Installer for Hassbian" | |
echo "Copyright(c) 2016 Dale Higgs <https://gitter.im/dale3h>" | |
echo | |
echo "Running apt-get preparation" |
def myfunc(): | |
""" | |
>>> print(myfunc()) | |
some text | |
<BLANKLINE> | |
not blank | |
""" | |
l = ['some text', '', 'not blank'] | |
return '\r\n'.join(l) |
interface sk1 { | |
send ia-pd 0; | |
send ia-pd 1; | |
send ia-na 1; | |
}; | |
id-assoc pd 0 { | |
prefix ::/64 infinity; | |
prefix-interface sk0 { |
Python 3.5.0 (default, Oct 3 2015, 21:47:52) | |
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.72)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import ipaddress | |
>>> ipaddress.ip_address('fe80::aa20:66ff:fe3a:fa79%en0') | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
File "/Users/xistence/.pyenv/versions/3.5.0/lib/python3.5/ipaddress.py", line 54, in ip_address | |
address) | |
ValueError: 'fe80::aa20:66ff:fe3a:fa79%en0' does not appear to be an IPv4 or IPv6 address |
Return-Path: <[email protected]> | |
Delivered-To: [email protected] | |
Received: from butler.0x58.com | |
by butler.0x58.com (Dovecot) with LMTP id vlTLIwsSp1bcQwEAeravvw | |
for <[email protected]>; Mon, 25 Jan 2016 23:28:27 -0700 | |
X-Spam-Flag: NO | |
X-Spam-Score: -7.298 | |
X-Spam-Level: | |
X-Spam-Status: No, score=-7.298 tagged_above=-99 required=5 | |
tests=[HTML_FONT_LOW_CONTRAST=0.001, HTML_MESSAGE=0.001, |
import React from 'react'; | |
import { render } from 'react-dom'; | |
import { Provider } from 'react-redux'; | |
import { applyMiddleware, compose, createStore } from 'redux'; | |
import thunk from 'redux-thunk'; | |
import createLogger from 'redux-logger'; | |
import { createHistory } from 'history'; | |
import { IndexRoute, Route } from 'react-router'; |