I hereby claim:
- I am niklaskorz on github.
- I am nyk (https://keybase.io/nyk) on keybase.
- I have a public key ASCreUwP-As8m_gjkuDYvmarjGCmTCaMkSywnoA4oK6aqgo
To claim this, I am signing this object:
| FROM ubuntu:19.10 | |
| RUN apt-get update | |
| RUN apt-get install -y ninja-build clang | |
| RUN apt-get install -y curl unzip tar wget git | |
| RUN apt-get autoremove -y | |
| RUN wget -O cmake.sh https://github.com/Kitware/CMake/releases/download/v3.15.5/cmake-3.15.5-Linux-x86_64.sh && sh ./cmake.sh --prefix=/usr/local --skip-license | |
| ENV CC clang |
| local double_quotes = {"»", "«"} | |
| local single_quotes = {"›", "‹"} | |
| function get_preferences(m) | |
| if m.double_quotes and m.double_quotes[1] and m.double_quotes[2] then | |
| double_quotes = { m.double_quotes[1][1].c, m.double_quotes[2][1].c } | |
| end | |
| if m.single_quotes and m.single_quotes[1] and m.single_quotes[2] then | |
| single_quotes = { m.single_quotes[1][1].c, m.single_quotes[2][1].c } | |
| end |
| { | |
| "homepage": "https://randoom.org/Software/SetlX", | |
| "description": "setlX is an interpreter for the high level programming-language SetlX (set language extended)", | |
| "version": "2.7.0", | |
| "license": "BSD-3-Clause", | |
| "url": "http://download.randoom.org/setlX/pc/setlX_v2-7-0.binary_only.zip", | |
| "hash": "876c8aad46fc8c08e71d55fc0e6b9a46d753f16ea9655d1beae76d170b1f2de3", | |
| "bin": "setlX.cmd", | |
| "suggest": { | |
| "JDK": [ |
| declare namespace shaka { | |
| namespace media { | |
| /** | |
| * Creates an InitSegmentReference, which provides the location to an initialization segment. | |
| */ | |
| class InitSegmentReference { | |
| /** | |
| * Creates an InitSegmentReference, which provides the location to an initialization segment. | |
| * @param uris A function that creates the URIs of the resource containing the segment. | |
| * @param startByte The offset from the start of the resource to the start of the segment. |
| namespace shaka { | |
| namespace media { | |
| class InitSegmentReference { | |
| /** | |
| * Creates an InitSegmentReference, which provides the location to an | |
| initialization segment. | |
| * @param uris A function that creates the URIs of the resource containing the segment. | |
| * @param startByte The offset from the start of the resource to the | |
| start of the segment. | |
| * @param endByte The offset from the start of the resource to the |
| /***/ 121: | |
| /***/ function(module, exports, __webpack_require__) { | |
| "use strict"; | |
| var GameLoop = (function () { | |
| function GameLoop() { | |
| this.simulationStep = 1000 / 60; | |
| this.frameDelta = 0; | |
| this.lastFrameTimeMs = 0; | |
| this.fps = 60; |
I hereby claim:
To claim this, I am signing this object:
| Polymer 'proto-element', | |
| name: 'Me' | |
| age: 20 | |
| color: '#0000ff' | |
| publish: | |
| valueless: | |
| value: false | |
| reflect: true | |
| nameChanged: -> | |
| if @name |
| from time import sleep | |
| w, h = world.getSizeX(), world.getSizeY() | |
| grid = {} | |
| def set_grid(x, y, val): | |
| if x not in grid: | |
| grid[x] = {} | |
| grid[x][y] = val |
| from plex import * | |
| from washr.parser.types import Variable, BlockStart, BlockEnd | |
| from cStringIO import StringIO | |
| left_edge = Str("{") | |
| right_edge = Str("}") | |
| block_token = NoCase(Str("block:")) |