A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
% MIPS Assembly language definition for the LaTeX `listings' package | |
% | |
% The list of instructions and directives are those understood by the | |
% MARS MIPS Simulator [http://courses.missouristate.edu/KenVollmar/MARS/] | |
% | |
% Author: Eric Walkingshaw <[email protected]> | |
% | |
% This code is in the public domain. | |
% | |
% Here is an example style. I like it for slides, but you might want |
There was a [great article][1] about how react implements it's virtual DOM. There are some really interesting ideas in there but they are deeply buried in the implementation of the React framework.
However, it's possible to implement just the virtual DOM and diff algorithm on it's own as a set of independent modules.
var express = require('express'), | |
passport = require('passport'), | |
bodyParser = require('body-parser'), | |
LdapStrategy = require('passport-ldapauth'); | |
// Credentials from the free LDAP test server by forumsys | |
// More info at: http://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/ | |
var OPTS = { | |
server: { | |
url: 'ldap://ldap.forumsys.com:389', |
'use asm'; | |
'use strict'; | |
function* generator(a, b, s) { | |
a = a | 0; | |
b = b | 0; | |
s = s | 0; | |
while (true) { | |
s = (Math.imul(s, a) + b) | 0; | |
yield s; |
dictionary = { | |
"ability": { | |
"adaptability": "てきおうりょく", | |
"aftermath": "ゆうばく", | |
"aerilate": "スカイスキン", | |
"airlock": "エアロック", | |
"analytic": "アナライズ", | |
"angerpoint": "いかりのつぼ", | |
"anticipation": "きけんよち", | |
"arenatrap": "ありじごく", |
以下転載: