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:
/** | |
* @typedef CacheOptions | |
* @type {object} | |
* @property {number | undefined} maxSize | |
* @property {number | undefined} maxAge Max Age in Minutes | |
* @property {any[] | undefined} entries | |
*/ | |
class Cache extends Map { |
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:
To claim this, I am signing this object:
<?php | |
class CurlException extends Exception { | |
} | |
class ApiException extends Exception { | |
} |
{ | |
"Theme": { | |
"Name": "Material", | |
"EditorBackground": "#263238", | |
"EditorForeground": "#EEFFFF", | |
"Header1Height": 1.2, | |
"Header2Height": 1.1, | |
"HighlightHeading": { | |
"Name": "Heading", | |
"Background": null, |
-- 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' |
--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 |
require "lib.class" | |
BABYLON = {} | |
--[[ Color4 ]]-- | |
BABYLON.Color4 = class() | |
function BABYLON.Color4:init(initialR, initialG, initialB, initialA) | |
self.r = initialR | |
self.g = initialG |
<?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'; |
<html> | |
<head> | |
<style> | |
body { | |
color: #000; | |
font-family: Sans-serif, Helvetica; | |
} | |
</style> | |
</head> | |
<body> |