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
/* tslint:disable:no-console */ | |
import 'dotenv-safe/config' | |
import { Db, MongoClient, ObjectId } from 'mongodb' | |
import * as path from 'path' | |
import * as fs from 'fs' | |
import { MONGODB_URI } from '@/configs/mongodb' | |
const MIGRATIONS_DIR = path.resolve(__dirname, '../migrations') |
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
rspn_motd "Aimbot activated (joke)" | |
//===================================================== | |
//================== 4:3; 5:4 FIX ===================== | |
//===================================================== | |
//mat_letterbox_aspect_goal 0.0 // Растягивает картинку на старых мониторах с соотношением сторон 4:3; 5:4 или нестандартных(кастомных) разрешениях, убирает черные полосы по бокам. (ВЫКЛ, для ВКЛ.убрать "//") | |
//mat_letterbox_aspect_threshold 0.0 // Растягивает картинку на старых мониторах с соотношением сторон 4:3; 5: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
const R = require('ramda') | |
const { isPromise } = require('./utils/promise') | |
class Task { | |
constructor(computation, cleanup) { | |
this.fork = computation | |
this.cleanup = cleanup | |
} |
NewerOlder