An introduction to curl
using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
function Markdown(value) { | |
this.value = value || ''; | |
this.length = this.value.length; | |
}; | |
Markdown.prototype = new String; | |
// Instance methods | |
Markdown.prototype.toString = Markdown.prototype.valueOf = function(){return this.value}; | |
Markdown.prototype.toHTML = function(){return Markdown.decode(this)}; |
/* | |
demo :- http://jsfiddle.net/bjkkD/20/ | |
Implements RadioNodeList :- http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#radionodelist | |
Implementation just adds `.value` as a property to `NodeList`. | |
Requires ES5 shim and ES5 shimmable browser. (Modern and IE8) | |
*/ | |
;(function () { |
An introduction to curl
using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
# Enable syntax-highlighting in less. | |
# Last tested on CentOS 6.3. | |
# | |
# First, add these two lines to ~/.bashrc | |
# export LESSOPEN="| /usr/bin/src-hilite-lesspipe.sh %s" | |
# export LESS=" -R " | |
sudo yum -y install boost boost-devel ctags | |
wget http://springdale.math.ias.edu/data/puias/unsupported/6/x86_64/source-highlight-3.1.6-3.puias6.x86_64.rpm |
From http://www.darkcoding.net/software/cleaning-up-old-git-branches/
Switch to the main branch, usually 'develop':
git checkout develop
Get a list of fully merged branches:
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
A file below this one contains the steps for doing this with Travis CI. However, these days I recommend GitHub Actions, for the following reasons:
A short list of hurdles to get Electron working more like Node, and how I'm tackling them.
process.stdin
with Buffer seems difficult/impossible
process.argv
needs to be require('remote').process.argv
<script src="index.js">
do not print to terminal
window.onerror
in a preload script can be used to detect these problemsResult of running these benchmarks on Chrome 45.0.2454.101
These numbers seem to be pretty consistent on Blink-based browsers (Chrome and Opera) but are more like 20% to 50% improvements on FireFox, Safari, and IE. I am not sure how to explain that, so take these numbers more as an indicator of βElm is generating faster code across the boardβ as opposed to βElm is 10x faster!β
This is a proposal for a lightning talk at the Reactive 2015 conference.
NOTE: If you like this, star β the Gist - the amount of stars decides whether it makes the cut!
React just got stateless components, meaning that they are in essence pure functions for rendering. Pure functions make it dead simple - even fun - to refactor your views