- http://eloquentjavascript.net/index.html (Eloquent JavaScript)
- https://developer.mozilla.org/ru/docs/Web/JavaScript/Guide
- http://www.freecodecamp.com/
- http://stackoverflow.com/questions/3127429/how-does-the-this-keyword-work (How does the “this” keyword work?)
- https://github.com/petkaantonov/bluebird/wiki/Optimization-killers (Optimization killers)
- http://jlongster.com/A-Study-on-Solving-Callbacks-with-JavaScript-Generators (A Study on Solving Callbacks with JavaScript Generators)
- https://www.ibm.com/developerworks/library/wa-memleak/ (Memory leak patterns in JavaScript)
- http://calendar.perfplanet.com/2013/the-runtime-performance-checklist/ (The Runtime Performance Checklist)
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
[user] | |
name = Junle Li | |
email = [email protected] | |
[core] | |
excludesfile = ~/.gitignore | |
pager = cat | |
[gc] | |
auto = 0 | |
[alias] | |
br = branch -v |
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
// This sample will guide you through elements of the F# language. | |
// | |
// ******************************************************************************************************* | |
// To execute the code in F# Interactive, highlight a section of code and press Alt-Enter or right-click | |
// and select "Execute in Interactive". You can open the F# Interactive Window from the "View" menu. | |
// ******************************************************************************************************* | |
// | |
// For more about F#, see: | |
// http://fsharp.org | |
// |
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
{"Vsxmd":"Vsxmd.yml","Vsxmd.Converter":"Vsxmd.Converter.yml","Vsxmd.Converter.#ctor(XDocument)":"Vsxmd.Converter.yml","Vsxmd.Converter.ToMarkdown(XDocument)":"Vsxmd.Converter.yml","Vsxmd.Converter.ToMarkdown":"Vsxmd.Converter.yml","Vsxmd.IConverter":"Vsxmd.IConverter.yml","Vsxmd.IConverter.ToMarkdown":"Vsxmd.IConverter.yml"} |
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
"atom-beautify": | |
prettyName: "Atom Beautify" | |
homepage: "https://github.com/Glavin001/atom-beautify#readme" | |
"atom-typescript": | |
prettyName: "Atom Typescript" | |
homepage: "http://atom.io/packages/atom-typescript" | |
"language-ts": | |
prettyName: "Language Ts" | |
homepage: "https://github.com/wingyplus/language-ts#readme" | |
"line-ending-converter": |
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
// jsfiddle: https://jsfiddle.net/lijunle/50jx1k2z/2/ | |
let {Cursor} = ReactCursor; | |
const state1 = { | |
counters: [ | |
{ id: 1, number: 1 }, | |
{ id: 2, number: 2 }, | |
{ id: 3, number: 3 }, | |
{ id: 4, number: 4 }, |
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 fs = require('fs'); | |
fs.readFile('./eslint-result.json', {encoding: 'utf-8'}, function (error, data) { | |
var fileList = JSON.parse(data); | |
var violations = {}; | |
var total = 0; | |
fileList.forEach(function (file) { | |
var filePath = file.filePath; |
- Copy
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\{Web,WebApplications}
folders to build server - Update NuGet to newest version by running
C:\Program Files\Microsoft Team Foundation Server 12.0\Tools\nuget.exe update -self
- Install .Net Framework 3.5 Runtime from server manager
- Note: This should be optional, but my using StyleCop.MSBuild needs it.
- Install .Net Framework 4.5 Targeting Pack via install from Windows 8 SDK
- Note 1: DONOT install Windows 8.1 version, which includes .Net Framework 4.5.1 SDK
- Note 2: You can only download and install .Net Framework 4.5 SDK
- Note 3: After install .Net Framework SDK, you can uninstall Windows SDK from control panel
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
#/bin/bash | |
translate() { | |
WORD=`echo $1 | sed -e 's/[[:space:]]/%20/g'` | |
URL="http://translate.google.cn/translate_a/t?client=t&text={$WORD}\ | |
&hl=en&sl=en&tl=zh-CN&ie=UTF-8&oe=UTF-8&multires=1&otf=2\ | |
&ssel=0&tsel=0&sc=1" | |
AGENT="Mozilla/5.0" | |
RESULT=`curl -s -A $AGENT $URL` |