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
Default compiler settings used, unless noted otherwise. Host system is Fedora | |
x86_64. Linked libs produced via `ldd`. | |
Linked libs common to all below: linux-vdso libc ld-linux | |
Size Lang Specific libs Common libs | |
18K c - - | |
20K luastatic liblua libm libdl | |
22K vala libgobject libglib libffi libpcre libpthread |
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
<!doctype html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script> | |
const el = h('div', {className: 'shadow-demos'}, [ | |
h('style', ` | |
.shadow-demos { | |
width: 300px; |
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
// In my opinion the simple vs. easy division is often represented when coding | |
// to "layers of abstraction". Having to context-switch and switch to | |
// a different layer to solve a problem is noise that distracts you from the | |
// problem you were originally trying to solve. | |
// For example, if you're trying to draw a paginating, tabular, grid view of | |
// data to the screen it is distracting when you have to stop and wire up | |
// a for-loop to sum the total for the current page then again for all records. | |
// --- |
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
<!doctype html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<title>rx-drag-to-reorder</title> | |
<style> | |
#container { | |
width: 30em; | |
} |
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
<!doctype html> | |
<html> | |
<div id="content"></div> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-size: 14px; | |
line-height: 20px; | |
} |
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
var https = require('https'); | |
var Rx = require('rx'); | |
/** | |
Wrap Node's https.request() in an RxJS observable | |
**/ | |
function nodeRxXhr(options, postData) { | |
return Rx.Observable.create(function(obs) { | |
var req = https.request(options, function(res) { | |
res.setEncoding('utf8'); |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Foo Branching</title> | |
<style type="text/css"> | |
.gitgraph-tooltip { | |
position: absolute; |
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
const express = require('express'); | |
const http = require('http'); | |
const url = require('url'); | |
const WebSocket = require('ws'); | |
const app = express(); | |
app.use(function (req, res) { | |
res.send({}); | |
}); |
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
# /srv/salt/upgrade_the_app.sls | |
# Example of a complex, multi-host Orchestration state that performs status checks as it goes. | |
# Note, this is untested and is meant to serve as an example. | |
# Run via: salt-run state.orch upgrade_the_app pillar='{nodes: [nodeA, nodeB], version: 123}' | |
{% set nodes = salt.pillar.get('nodes', []) %} | |
{% set all_grains = salt.saltutil.runner('cache.grains', | |
tgt=','.join(nodes), tgt_type='list') %} | |
{# Default version if not given at the CLI. #} |
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
/** | |
Convert an Rx4 Observable into an Rx5 Observable | |
Usage: | |
// When referenced: | |
var o4 = Rx4.Observable.interval(500).take(2).map('from 4'); | |
var o5 = Rx5.Observable.interval(500).take(2).mapTo('from 5'); | |
fromRx4(o4).concat(o5).subscribe( |