I hereby claim:
- I am eropple on github.
- I am eropple (https://keybase.io/eropple) on keybase.
- I have a public key ASBtSLPebbXhWAc3rEkvdhGdSNEPfQISC64r0618TceZPAo
To claim this, I am signing this object:
| #! /usr/bin/env node | |
| const http = require("http"); | |
| if (process.argv[0] === "node") { | |
| process.argv.shift(); | |
| } | |
| const localPort = process.argv[2] || "13000"; | |
| const url = "http://127.0.0.1:4040/api/tunnels"; |
| --- | |
| openapi: 3.0.1 | |
| info: | |
| title: Full Descriptor | |
| version: 1.0.0 | |
| paths: | |
| "/path-simple/{a}/{b}/{c}": | |
| get: | |
| operationId: getPath | |
| summary: A path parameter test |
| import { | |
| Entity, Index, | |
| PrimaryGeneratedColumn, Column, | |
| OneToMany, ManyToOne, OneToOne, ManyToMany | |
| } from "typeorm"; | |
| @Entity("projects") | |
| export class Project { | |
| @PrimaryGeneratedColumn({ type: "bigint" }) | |
| id: number; |
I hereby claim:
To claim this, I am signing this object:
| export LANG=en_US.UTF-8 | |
| # Preferred editor for local and remote sessions | |
| if [[ -n $SSH_CONNECTION ]]; then | |
| export EDITOR='vim' | |
| else | |
| export EDITOR='mvim' # change this to your windowed editor of choice | |
| fi | |
| export DOTFILE_ROOT=/path/to/dotfile/root/dotfiles # I put them in Dropbox | |
| source ${DOTFILE_ROOT}/zshrc-base.zsh |
| MAIN_COLOR=$fg[green] | |
| SECONDARY_COLOR=$fg[cyan] | |
| CAPPER_COLOR=$fg[yellow] | |
| CAPPER=$ | |
| if [[ `id -u $USER` -eq 0 ]] | |
| then | |
| MAIN_COLOR=$fg[red] | |
| SECONDARY_COLOR=$fg[yellow] |
| MAIN_COLOR=$fg[green] | |
| SECONDARY_COLOR=$fg[cyan] | |
| CAPPER_COLOR=$fg[yellow] | |
| CAPPER=$ | |
| if [[ `id -u $USER` -eq 0 ]] | |
| then | |
| MAIN_COLOR=$fg[red] | |
| SECONDARY_COLOR=$fg[yellow] |
| /** | |
| * The default behavior for a weapon. | |
| * @param instance | |
| * @param stats | |
| */ | |
| var transformStatBlock = function(instance, stats) { | |
| stats.attack += instance.parent.attackModifier; | |
| stats.magic += instance.parent.magicModifier; | |
| }; |
| /* | |
| * All recent hotspots (as of 2009) *really* like to have the natural code | |
| * | |
| * if (guardExpression) { | |
| * throw new BadException(messageExpression); | |
| * } | |
| * | |
| * refactored so that messageExpression is moved to a separate | |
| * String-returning method. | |
| * |