I hereby claim:
- I am rej156 on github.
- I am ericjuta (https://keybase.io/ericjuta) on keybase.
- I have a public key ASC57yvZave82zTnt6w-PoIN5OiLIJoMJmwv9iuFKiteQQo
To claim this, I am signing this object:
| def authenticate | |
| @user = Token.validate request.headers['AUTH-TOKEN'] | |
| end |
| import React from 'react' | |
| import { render } from 'react-dom' | |
| import { Router, browserHistory, match } from 'react-router' | |
| import createStore from '../shared/lib/create-store.js' | |
| import ContextProvider from '../shared/lib/context-provider.js' | |
| import { fetchDataOnLocationMatch } from '../shared/lib/fetch-data.js' | |
| import Root from './Root.jsx' | |
| import routes from '../shared/routes.jsx' | |
| import { AppContainer } from 'react-hot-loader' | |
| import { observable, computed, autorun } from 'mobx' |
| Collection Created | |
| Add Collection Sections* | |
| Click Add section button -> Editing other section | |
| Click Submit Create Collection Button -> Collection Created | |
| Drag and drop sections IF more than one -> Sections reordered | |
| Editing other section | |
| Untouched other section* | |
| Click Remove section button -> Default editing section 1 | |
| Same as Default editing section 1 | |
| Sections reordered |
| import * as ccxt from 'ccxt'; | |
| import * as functions from 'firebase-functions'; | |
| const exchangeId = 'binance', | |
| exchangeClass = ccxt[exchangeId], | |
| exchange = new exchangeClass({ | |
| apiKey: functions.config().binance.apikey, | |
| secret: functions.config().binance.secret, | |
| timeout: 30000, | |
| enableRateLimit: true |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "name": "Claude Code", | |
| "build": { | |
| "dockerfile": "Dockerfile", | |
| "args": { |
| #!/usr/bin/env bun | |
| import { $ } from "bun"; | |
| console.log("Updating pi..."); | |
| await $`bun update -g @mariozechner/pi-coding-agent`.quiet(); | |
| console.log("✓ pi updated\n"); |
| import { Context, Effect, Layer, Ref, Runtime, type Scope } from "effect"; | |
| import type { RedisMessageHandler } from "@/lib/clients/redis-types"; | |
| import { redisMetrics } from "@/lib/telemetry/metrics"; | |
| import { type RedisError, redisErrorFromUnknown } from "./errors"; | |
| import { RedisCircuitBreaker } from "./circuit-breaker"; |