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
| module.exports = function (func, times, ...args) { | |
| return new Promise((resolve, reject) => { | |
| if (times <= 0) { | |
| return reject(new Error('Invalid input times')); | |
| } | |
| func.apply(this, args).then((result) => { | |
| if (!result) { | |
| throw new Error('Func returned no results'); | |
| } | |
| return resolve(result); |
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 strict'; | |
| function getMothersDay(year) { | |
| // Earliest possible Mothers day | |
| var date = new Date(year, 4, 7); | |
| date.setDate(7 + (7 - date.getDay())); | |
| return date; | |
| } | |
| function getFathersDay(year) { | |
| // Earliest possible Fathers day |
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
| String.prototype.toWesternNumerals = function () { | |
| return this.replace(/[\u0660-\u0669]/g, (c) => { | |
| return c.charCodeAt(0) - 0x0660; | |
| }).replace(/[\u06f0-\u06f9]/g, (c) => { | |
| return c.charCodeAt(0) - 0x06f0; | |
| }); | |
| } |
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 strict'; | |
| const qr = require('qr-image'); | |
| const mongoose = require('mongoose'); | |
| const Grid = require('gridfs'); | |
| const json = { | |
| email: '[email protected]', | |
| name: 'John Doe' | |
| }; |
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 strict'; | |
| const ALPHABET = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-+'; | |
| const ALPHABET_LENGTH = ALPHABET.length; | |
| const ID_LENGTH = 8; | |
| const UNIQUE_RETRIES = 9999; | |
| let HashID = {}; | |
| HashID.generate = function () { |
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 randomLatLon() { | |
| let lat = (Math.random() * 180 - 90).toFixed(8) | |
| let lon = (Math.random() * 360 - 180).toFixed(8) | |
| return { | |
| lat, | |
| lon | |
| } | |
| } |
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 nonce(length) { | |
| var text = ''; | |
| var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; | |
| for (var i = 0; i < length; i++) { | |
| text += possible.charAt(Math.floor(Math.random() * possible.length)); | |
| } | |
| return text; | |
| } | |
| module.exports = nonce; |
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
| const crypto = require('crypto'); | |
| module.exports = class Encryptor { | |
| constructor(encryptionKey) { | |
| this.ENCRYPTION_KEY = encryptionKey.toString(); // Must be 256 bits (32 characters) | |
| this.IV_LENGTH = 16; // For AES, this is always 16 | |
| } | |
| encrypt(text) { | |
| let iv = crypto.randomBytes(this.IV_LENGTH); |
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
| :loop | |
| start "My Great App Name" "C:\Users\Garen\Desktop\greatapp.exe" "param1" | |
| timeout /t 600 | |
| goto loop |
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
| const fs = require('fs').promises | |
| (async () => { | |
| try { | |
| const data = JSON.parse(await fs.readFile('/path/to/file.json', 'utf8')) | |
| } catch(err) { | |
| console.error(err) | |
| } | |
| })() |