I hereby claim:
- I am fritzy on github.
- I am fritzy (https://keybase.io/fritzy) on keybase.
- I have a public key ASCnN0TAG8SqzlRfVWz9_usucplgGZjT_Nxuf0lzAMzcWAo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Usage: issues [label/p0-2] [limit] [pool_size] | |
| # requires gh (github cli) | |
| POOL_SIZE=${3:-50} | |
| LIMIT=${2:-5} | |
| LABEL=${1:-"Needs Triage"} | |
| REPO="https://github.com/npm/cli" | |
| if [[ $LABEL = "triage" ]]; | |
| then |
| const ApeECS = require('ApeECS'); | |
| const Pixi = require('pixi.js'); | |
| const world = new ApeECS.World(); | |
| class Sprite extends ApeECS.Component { | |
| static properties = { | |
| x: 0, | |
| y: 0, | |
| layer: '', | |
| texturePath: '', |
| let tick = 0; | |
| class BasicObject { | |
| constructor() { | |
| this.x = 0; | |
| this.y = 0; | |
| this.updated = 0; | |
| } | |
| } |
| // This file was initially generated by Windows Terminal Dev 0.0.1.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
| class BaseComponent { | |
| constructor(ecs, initialValues) { | |
| Object.defineProperty(this, 'ecs', { enumerable: false, value: ecs }); | |
| Object.defineProperty(this, 'type', { enumerable: false, value: this.constructor.name }); | |
| Object.defineProperty(this, '_values', { enumerable: false, value: {} }); | |
| Object.defineProperty(this, 'id', { enumerable: true, value: componentId }); | |
| this.lastTick = this.ecs.ticks; | |
| componentId++; |
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Security.Principal; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.Collections.Generic; | |
| namespace LoginImpersonate | |
| { | |
| internal class Impersonation : IDisposable | |
| { |
| const RSA = { name: 'RSASSA-PKCS1-v1_5' }; | |
| const testValue = 'I am the very model of a modern major general.'; | |
| const testValue2 = 'I am the very model of a modern majr general.'; | |
| //if browser, uses window.crypto, if node wraps openssl | |
| const WebCrypto = require('node-webcrypto-ossl'); | |
| const crypto = new WebCrypto(); | |
| (async () => { | |
| console.log('generating key'); |
I hereby claim:
To claim this, I am signing this object:
Upgrade to Linux 4.8
apt-cache search linux | grep 4.8
apt-get install linux-image-4.8xxxxx linux-extras-4.8xxxx linux-headers-4.8.x-xxxx
I used 4.8.0-30-generic flavors of all of those.
linux-image-4.8.0-30-generic - Linux kernel image for version 4.8.0 on 64 bit x86 SMP
| [claptrap] ~/projects/node/seaquell 10:18 AM 89% [master ●] | |
| $ npm test | |
| > [email protected] test /Users/fritzy/projects/node/seaquell | |
| > lab -a code -c -v | |
| testing functions | |
| ✔ 1) create temp table proc (737 ms) | |
| ✔ 2) create user defined table proc (477 ms) | |
| ✔ 3) create get table proc (215 ms) |