I hereby claim:
- I am partyschaum on github.
- I am partyschaum (https://keybase.io/partyschaum) on keybase.
- I have a public key whose fingerprint is D0F5 C68B C31B A824 D015 14A2 F9CA C344 ED48 F4F4
To claim this, I am signing this object:
var system = require('system') | |
, page = require('webpage').create() | |
, fs = require('fs') | |
, optUtils = require('./options'); | |
// Read in arguments | |
var site = system.args[1]; | |
var path = system.args.length == 4 ? null : system.args[2]; | |
var streaming = ((system.args.length == 4 ? system.args[2] : system.args[3]) === 'true'); | |
var options = JSON.parse(system.args.length == 4 ? system.args[3] : system.args[4]); |
I hereby claim:
To claim this, I am signing this object:
===> phpbrew will now build 7.0.12 | |
---> Parsing variants from command arguments '+default +dbs +openssl=/usr/local/opt/openssl' | |
===> Loading and resolving variants... | |
Checking distribution checksum... | |
Checksum matched: d7b11b40d84ed1f590e5f086f3711a3c | |
===> Distribution file was successfully extracted, skipping... | |
Source Directory: /Users/hauke/.phpbrew/build/php-7.0.12 | |
Found existing Makefile, running make clean to ensure everything will be rebuilt. | |
You can append --no-clean option after the install command if you don't want to rebuild. | |
===> Running make clean: /usr/bin/make -C '/Users/hauke/.phpbrew/build/php-7.0.12' --quiet 'clean' |
configure: creating cache '/Users/hauke/.phpbrew/cache/config.cache' | |
./configure: line 3160: '/Users/hauke/.phpbrew/cache/config.cache': No such file or directory | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking build system type... x86_64-apple-darwin15.6.0 | |
checking host system type... x86_64-apple-darwin15.6.0 | |
checking target system type... x86_64-apple-darwin15.6.0 | |
checking for cc... cc |
Warning: Some extension won't be able to be built with php7. If the extension | |
supports php7 in another branch or new major version, you will need to specify | |
the branch name or version name explicitly. | |
For example, to install memcached extension for php7, use: | |
phpbrew ext install github:php-memcached-dev/php-memcached php7 -- --disable-memcached-sasl | |
Downloading https://pecl.php.net/rest/r/mongodb/stable.txt via curl extension | |
[==================================================================] 5.00/5.00B 100% |
PHP Warning: PHP Startup: Unable to load dynamic library '/Users/hauke/.phpbrew/php/php-7.0.12/lib/php/extensions/no-debug-non-zts-20151012/mongodb.so' - dlopen(/Users/hauke/.phpbrew/php/php-7.0.12/lib/php/extensions/no-debug-non-zts-20151012/mongodb.so, 9): image not found in Unknown on line 0 | |
Warning: PHP Startup: Unable to load dynamic library '/Users/hauke/.phpbrew/php/php-7.0.12/lib/php/extensions/no-debug-non-zts-20151012/mongodb.so' - dlopen(/Users/hauke/.phpbrew/php/php-7.0.12/lib/php/extensions/no-debug-non-zts-20151012/mongodb.so, 9): image not found in Unknown on line 0 | |
Warning: Some extension won't be able to be built with php7. If the extension | |
supports php7 in another branch or new major version, you will need to specify | |
the branch name or version name explicitly. | |
For example, to install memcached extension for php7, use: | |
phpbrew ext install github:php-memcached-dev/php-memcached php7 -- --disable-memcached-sasl |
import socket | |
whois_server = 'whois.denic.de' | |
whois_server_port = 43 | |
domain_query = b"shinythings.de\0" | |
s = socket.socket() | |
s.connect((whois_server, whois_server_port)) | |
s.sendall(domain_query) |
$ phpbrew install php-7.2.0 +default -- --with-thread-safety --enable-maintainer-zts --with-tsrm-pthreads --with-openssl=/usr/local/opt/openssl`
$ phpbrew ext install github:krakjoe/pthreads master
data class Node( | |
val next: Node?, | |
val payload: String | |
) | |
val evenList = Node( | |
payload = "node 1", | |
next = Node( | |
payload = "node 2", | |
next = Node( |
var listSize = 1 | |
var node = head | |
while (node.next != null) { | |
node = node.next!! | |
listSize++ | |
} |