// Get log level (f.e. "info")
require('dotenv').config();
const { LOG_LEVEL } = process.env;
// Register logger
require('./logger').register(LOG_LEVEL);
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
| /** | |
| * @typedef CacheOptions | |
| * @type {object} | |
| * @property {number | undefined} maxSize | |
| * @property {number | undefined} maxAge Max Age in Minutes | |
| * @property {any[] | undefined} entries | |
| */ | |
| class Cache extends Map { |
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
| FROM node:12-alpine | |
| RUN apk --no-cache add git | |
| RUN git clone https://github.com/jsbin/jsbin.git /jsbin | |
| WORKDIR /jsbin | |
| RUN npm install -g grunt-cli | |
| RUN npm install | |
| RUN grunt build |
I hereby claim:
- I am skayo on github.
- I am skayo (https://keybase.io/skayo) on keybase.
- I have a public key ASBe_mREoF8saWiVhdo4fMW9LDosXmo8FXJELip-zlj1xQo
To claim this, I am signing this object:
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
| <?php | |
| class CurlException extends Exception { | |
| } | |
| class ApiException extends Exception { | |
| } |
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
| { | |
| "Theme": { | |
| "Name": "Material", | |
| "EditorBackground": "#263238", | |
| "EditorForeground": "#EEFFFF", | |
| "Header1Height": 1.2, | |
| "Header2Height": 1.1, | |
| "HighlightHeading": { | |
| "Name": "Heading", | |
| "Background": null, |
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
| -- GAMESHELL KEYMAP -- | |
| -- See here: https://github.com/clockworkpi/Keypad/blob/master/keymaps.png | |
| keys = {} | |
| -- A, B, X, Y | |
| keys.Y = 'i' | |
| keys.X = 'u' | |
| keys.A = 'j' | |
| keys.B = 'k' |
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
| --Configuration File | |
| function love.conf(t) | |
| t.title = "Calculator" | |
| t.window.width = 320 | |
| t.window.height = 240 | |
| --t.console = true | |
| t.modules.physics = false | |
| t.modules.sound = false |
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
| require "lib.class" | |
| BABYLON = {} | |
| --[[ Color4 ]]-- | |
| BABYLON.Color4 = class() | |
| function BABYLON.Color4:init(initialR, initialG, initialB, initialA) | |
| self.r = initialR | |
| self.g = initialG |
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
| <?php | |
| // Update 3.0.6 | |
| // Check / at first position of $vh_folder | |
| // Possibility to suppress VirtualHost | |
| // Possibility for VirtualHost by IP | |
| $server_dir = "../"; | |
| require $server_dir.'scripts/config.inc.php'; | |
| require $server_dir.'scripts/wampserver.lib.php'; |