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
BEGIN MESSAGE. | |
eQCKK9si7YiXufa 4aPsTU92zY5e7FI jLJKkTW5rIvslLZ 3yOU9yPVjzj4yHn | |
zwYD47fegZMtkh3 lfiegidXyyiTCKq 6Xr2MZHgg77oB4G as9YMaAkWDwV1d5 | |
fflfrmizBSymh02 zLdFbYsdUZaCV2M FwcgopQPvT6Cntu nnTbKM6OW0qnqhn | |
o9KyTQhN1osxW35 62BDLBzvAPC656Z 3DloY2IP. | |
END MESSAGE. |
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
const httpInterceptor = { | |
setupInterceptors: () => { | |
axios.interceptors.request.use((config) => { | |
return { | |
...config, | |
p0: performance.now(), | |
}; | |
}, (error) => Promise.reject(error)); | |
axios.interceptors.response.use(async (response) => { |
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
lsof -iTCP -sTCP:LISTEN -P |
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
/** | |
* generate hash+timestamp string | |
* validate hash+timestamp string from userland | |
*/ | |
const crypto = require('crypto'); | |
const SECRET = ' '; | |
function _generateHash(isoDateString) { | |
return crypto |
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
/** | |
* A bind polyfill for browsers that don't support the bind method. | |
*/ | |
if (!Function.prototype.bind) { | |
Function.prototype.bind = function (oThis) { | |
if (typeof this !== 'function') { | |
// closest thing possible to the ECMAScript 5 internal IsCallable function | |
throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable'); | |
} | |
var aArgs = Array.prototype.slice.call(arguments, 1), fToBind = this, fNOP = function () { |
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
'editor': | |
'fontSize': 14 | |
'fontFamily': 'Ubuntu Mono' | |
'lineHeight': 1.5 | |
'showIndentGuide': true | |
'tabLength': 4 | |
'hideIgnoredNames': true | |
'core': | |
'themes': [ | |
'atom-dark-ui' |
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
$default_sort_order = '[ | |
"display", | |
"overflow", | |
"-ms-overflow-x", | |
"-ms-overflow-y", | |
"overflow-x", | |
"overflow-y", | |
"visibility", | |
"width", | |
"min-width", |
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
{ | |
"caret_style": "phase", | |
"detect_slow_plugins": false, | |
"font_face": "Ubuntu Mono", | |
"font_options": [ | |
"subpixel_antialias" | |
], | |
"font_size": 12, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, |
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
(function($){ | |
var convertTableToJson = function() | |
{ | |
var rows = []; | |
$('table tr').each(function(i, n){ | |
var $row = $(n); | |
rows.push({ | |
display_name: $row.find('td:eq(0)').text(), | |
first_name: $row.find('td:eq(1)').text(), | |
last_name: $row.find('td:eq(2)').text(), |
NewerOlder