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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Google Music Player</title> | |
| <meta name="author" content="https://github.com/Fyzu" /> | |
| <link | |
| href="https://fonts.googleapis.com/css?family=Open+Sans" | |
| rel="stylesheet" | |
| /> |
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