I hereby claim:
- I am thenoim on github.
- I am noim (https://keybase.io/noim) on keybase.
- I have a public key ASADFRmb01JaHoYi133EfTe70Il5Mqxdblh0cxac0ZuWvgo
To claim this, I am signing this object:
| import type { GameState, Weapons, Weapon, WeaponSlotType } from "npm:csgo-gsi-types"; | |
| import Fastify from "npm:fastify"; | |
| import { | |
| useAsyncState, | |
| useNewLight, | |
| colors | |
| } from "reactive-home"; | |
| declare module 'csgo-gsi-types' { | |
| export interface Player { |
| // Name: jira | |
| import "@johnlindquist/kit" | |
| let id = await arg('Which id?') | |
| if (!/SP-\d+/gmi.test(id)) { | |
| id = `SP-${id}`; | |
| } |
| import Foundation | |
| import Combine | |
| enum LoadDirection { | |
| case BACK | |
| case FORTH | |
| } | |
| protocol SwipeableList: ObservableObject, RandomAccessCollection where Index == Int, Element: IdentifiableElement { | |
| func updateCurrentIndex(to index: Index); |
| /////////////////////////////////////////////////////////////////////////////////// | |
| // Plain SASS Trigonometry Algorithm in Taylor Expansion // | |
| // // | |
| // Based on // | |
| // http://japborst.net/posts/sass-sines-and-cosines // | |
| // + http://thesassway.com/advanced/inverse-trigonometric-functions-with-sass // | |
| /////////////////////////////////////////////////////////////////////////////////// | |
| $pi: 3.14159265359; | |
| $_precision: 10; |
| #!/bin/bash | |
| set -e | |
| ROOT=${PWD} | |
| SCRIPT_DIR="$(dirname "$BASH_SOURCE")" | |
| cd "$SCRIPT_DIR" | |
| SCRIPT_DIR=${PWD} |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>AppVersion</key> | |
| <string>3.0.0~b32</string> | |
| <key>LogFile</key> | |
| <string>2019-02-23 09:29:06.781 Undecimus[9292:10459014] [*] unc0ver Version: 3.0.0~b30 | |
| 2019-02-23 09:29:06.781 Undecimus[9292:10459014] [*] Darwin Kernel Version 18.2.0: Tue Oct 16 21:02:31 PDT 2018; root:xnu-4903.222.5~1/RELEASE_ARM64_T8011 | |
| 2019-02-23 09:29:06.781 Undecimus[9292:10459014] [*] Bundled Resources Version: 1.0~b4 |
I hereby claim:
To claim this, I am signing this object:
| const Dog = { | |
| name: 'Dog', | |
| properties: { | |
| name: 'string', | |
| owners: {type: 'linkingObjects', objectType: 'Person', property: 'dog'}, | |
| } | |
| }; | |
| const Person = { | |
| name: 'Person', |
| #!/bin/bash | |
| set -e | |
| ROOT=${PWD} | |
| SCRIPT_DIR="$(dirname "$BASH_SOURCE")" | |
| cd "$SCRIPT_DIR" | |
| SCRIPT_DIR=${PWD} |
| const express = require('express') | |
| const app = express() | |
| app.get('/', (req, res) => res.send('Hello World!')) | |
| app.listen(3000, () => console.log('Example app listening on port 3000!')) |