This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am cboden on github. | |
* I am cboden (https://keybase.io/cboden) on keybase. | |
* I have a public key ASCQUiRAweed0gO2oNk3LMp2o_oxwz9_ttmw_Fprr_tbRgo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rules": [ | |
{"hello": "world", "foo": "bar"}, | |
{"hello": "table?", "foo": "baz"}, | |
{"hello": "Chris", "foo": "oof"} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | ring | quadrant | isNew | description | |
---|---|---|---|---|---|
TypeScript | Adopt | languages-and-frameworks | FALSE | ||
NestJS | Adopt | languages-and-frameworks | TRUE | ||
LogDNA | Trial | Platforms | TRUE | ||
Airflow | Trial | Tools | TRUE | ||
Redash | Trial | Tools | TRUE | ||
Hookdeck | Assess | Tools | TRUE | ||
Heroku | Adopt | Platforms | TRUE | ||
Domain Driven Design | Assess | Techniques | TRUE | ||
Docker | Adopt | Tools | TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Ratchet\ConnectionInterface; | |
require __DIR__ . '/vendor/autoload.php'; | |
class Proxy implements \Ratchet\MessageComponentInterface { | |
private $clients; | |
public function __construct() { | |
$this->clients = new \SplObjectStorage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @license MIT License (c) 2011,2012 Copyright Tavendo GmbH. */ | |
/** | |
* AutobahnJS - http://autobahn.ws | |
* | |
* A lightweight implementation of | |
* | |
* WAMP (The WebSocket Application Messaging Protocol) - http://wamp.ws | |
* | |
* Provides asynchronous RPC/PubSub over WebSocket. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl http://localhost:5984/mydb/aSpecificDocId | |
// Take properties from aSpecificDocId which are keys for the following query | |
curl http://localhost:5984/mydb/_all_docs?keys=["docIdA","docIdB","docIdC","docIdD","docIdE"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
couch() { | |
curl -s "${@:2}" http://127.0.0.1:5984/$1 | json_pp | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
interface Disposable { | |
public function dispose(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rx.Observable.prototype.changes = function(deleteObs, keySelector) { | |
var source = this; | |
return new Rx.AnonymousObservable(function(observer) { | |
var store = new Map; | |
return new Rx.CompositeDisposable( | |
deleteObs.subscribe(function(key) { | |
var last = store.get(key); | |
store.delete(key); |
NewerOlder