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
{ | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/base16-eighties.dark (SL).tmTheme", | |
"detect_indentation": false, | |
"draw_white_space": "selection", | |
"folder_exclude_patterns": | |
[ | |
".svn", |
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
.atwho-view { | |
top: 0; | |
left: 0; | |
position: absolute; | |
display: none; | |
overflow: auto; | |
ul { | |
&:extend(.dropdown-menu); | |
position: relative; |
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
[{"pid":53245,"tid":1295,"ts":345821666954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/base/task_queue_impl.cc","src_func":"PushOntoImmediateIncomingQueueLocked"},"dur":27857,"tdur":635,"tts":5745664}, | |
{"pid":53245,"tid":1295,"ts":345821687212,"ph":"X","cat":"toplevel","name":"TaskQueueManager::ProcessTaskFromWorkQueue","args":{"src_file":"../../base/trace_event/trace_log.cc","src_func":"SetEnabled"},"dur":7550,"tdur":316,"tts":5745925}, | |
{"pid":53245,"tid":1295,"ts":345821694770,"ph":"X","cat":"toplevel","name":"TaskQueueManager::ProcessTaskFromWorkQueue","args":{"src_file":"../../base/trace_event/trace_log.cc","src_func":"SetEnabled"},"dur":21,"tdur":18,"tts":5746260}, | |
{"pid":53245,"tid":1295,"ts":345821694792,"ph":"X","cat":"toplevel","name":"TaskQueueManager::ProcessTaskFromWorkQueue","args":{"src_file":"../../base/trace_event/trace_log.cc","src_func":"SetEnabled"},"dur":7,"tdur":5,"tts":5746282}, | |
{"pid":53245,"tid":1295,"ts":345821694800,"ph":"X", |
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
{ | |
"vars": { | |
"@gray-base": "#000", | |
"@gray-darker": "lighten(@gray-base, 13.5%)", | |
"@gray-dark": "lighten(@gray-base, 20%)", | |
"@gray": "lighten(@gray-base, 33.5%)", | |
"@gray-light": "lighten(@gray-base, 46.7%)", | |
"@gray-lighter": "lighten(@gray-base, 93.5%)", | |
"@brand-primary": "darken(#428bca, 6.5%)", | |
"@brand-success": "#5cb85c", |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
export const CancellablePromise = (promise) => { | |
let isCancelled = false; | |
const wrappedPromise = new Promise((resolve, reject) => { | |
promise.then( | |
(...args) => (isCancelled ? reject('cancelled') : resolve(...args)), | |
error => (isCancelled ? reject('cancelled') : reject(error)), | |
); | |
}); |
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
import Promise from 'Bluebird'; | |
function updateUser() { | |
return new Promise((resolve, reject, onCancel) => { | |
let cancelled = false; | |
// you need to config Bluebird to have cancellation | |
// http://bluebirdjs.com/docs/api/promise.config.html | |
onCancel(() => { | |
cancelled = 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
Array.prototype.multiply = function(){ | |
const le = this.length; | |
for(let i=0; i < le; i++){ | |
this[i+le] = this[i]*this[i]; | |
console.log(this) | |
} | |
}; | |
const a = [1, 2, 3, 4, 5]; | |
a.multiply(); |
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
function Store(initialData, options = {}) { | |
const handlers = []; | |
let nextHandlerId = 0; | |
return { | |
get data() { | |
return initialData; | |
}, | |
set data(t) { | |
console.log("Set was called"); |
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
import React, { useState } from 'react'; | |
import ClassNames from 'classnames'; | |
import { Table as FixedTable, Column } from 'fixed-data-table-2'; | |
import '!!style-loader!css-loader!fixed-data-table-2/dist/fixed-data-table-base.css'; | |
import { get } from 'lodash'; | |
import { ellipseString } from '../../helpers/BaseUtils'; | |
import { HTML_ICON, Icon, ICON_SIZES } from '../Icons/Icons'; | |
import { Text, TEXT_SIZE } from '../Text/Text'; | |
import { Tooltip } from '../Tooltip/Tooltip'; |