- 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 hidden or 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
| // ---- | |
| // Sass (v3.4.21) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $ms-screen-lg-min: 100px; | |
| $ms-screen-xl-min: 500px; | |
| @mixin ms-u-lg2 { | |
| @media (min-width: $ms-screen-lg-min) { |
This file contains hidden or 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
| set-option -g base-index 1 | |
| set-option -g mode-mouse on | |
| set-option -g mouse-resize-pane on | |
| set-option -g mouse-select-pane on | |
| set-option -g mouse-select-window on | |
| set-option -g default-shell $SHELL | |
| set-window-option -g mode-keys vi | |
| set-window-option -g window-status-current-bg yellow |
This file contains hidden or 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 = lijunle@gmail.com | |
| [core] | |
| excludesfile = ~/.gitignore | |
| pager = cat | |
| [gc] | |
| auto = 0 | |
| [push] | |
| autoSetupRemote = true |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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; |