Skip to content

Instantly share code, notes, and snippets.

View jeeeez's full-sized avatar
๐ŸŽฏ
Focusing

JF jeeeez

๐ŸŽฏ
Focusing
View GitHub Profile
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { StandardTokenType } from 'vs/editor/common/modes';
import { CharCode } from 'vs/base/common/charCode';
class ParserContext {
public readonly text: string;
TypeScript 10 hrs 17 mins โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘ 95.7%
JSON 18 mins โ–Œโ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 3.0%
JavaScript 7 mins โ–Žโ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 1.2%
Other 0 secs โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0.1%
SCSS 0 secs โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0.0%
@jeeeez
jeeeez / npm.taobao.sh
Created March 9, 2018 05:02 — forked from 52cik/npm.taobao.sh
npm ๆท˜ๅฎ้•œๅƒ้…็ฝฎ
npm set registry https://registry.npm.taobao.org # ๆณจๅ†Œๆจกๅ—้•œๅƒ
npm set disturl https://npm.taobao.org/dist # node-gyp ็ผ–่ฏ‘ไพ่ต–็š„ node ๆบ็ ้•œๅƒ
## ไปฅไธ‹้€‰ๆ‹ฉๆทปๅŠ 
npm set chromedriver_cdnurl http://cdn.npm.taobao.org/dist/chromedriver # chromedriver ไบŒ่ฟ›ๅˆถๅŒ…้•œๅƒ
npm set operadriver_cdnurl http://cdn.npm.taobao.org/dist/operadriver # operadriver ไบŒ่ฟ›ๅˆถๅŒ…้•œๅƒ
npm set phantomjs_cdnurl http://cdn.npm.taobao.org/dist/phantomjs # phantomjs ไบŒ่ฟ›ๅˆถๅŒ…้•œๅƒ
npm set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass # node-sass ไบŒ่ฟ›ๅˆถๅŒ…้•œๅƒ
npm set electron_mirror http://cdn.npm.taobao.org/dist/electron/ # electron ไบŒ่ฟ›ๅˆถๅŒ…้•œๅƒ
@jeeeez
jeeeez / angularjs_directive_attribute_explanation.md
Created July 7, 2016 14:09 — forked from CMCDragonkai/angularjs_directive_attribute_explanation.md
JS: AngularJS Directive Attribute Binding Explanation

AngularJS Directive Attribute Binding Explanation

When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.

  1. Raw Attribute Strings

    <div my-directive="some string" another-param="another string"></div>