I hereby claim:
- I am clarkmcc on github.
- I am shardblade (https://keybase.io/shardblade) on keybase.
- I have a public key whose fingerprint is 2E6B 9202 AFE9 1B1B 1D9A 024C AA8A FADB 0CC6 2973
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import { useSearchParams } from "react-router-dom"; | |
| import { useCallback, useEffect } from "react"; | |
| import { isFunction } from "lodash"; | |
| /** | |
| * Setter represents a type that can be passed to the setter function returned | |
| * from this hook. It can either accept a value to set, or a callback function | |
| * with access to the current value. | |
| * | |
| * @example |
| use rand::random; | |
| /// In this example, we'll attempt to train a single-neuron model to fit | |
| /// a linear line. The slope of this line is 2, and can by expressed by | |
| /// the equation y = 2x. We'll use gradient descent to find the slope of | |
| /// the line, and then we'll use the slope to predict the output for | |
| /// a given input. | |
| /// | |
| /// The model won't be able to perfectly fit the line, but it will be | |
| /// able to get very close. The idea here is we want the model to be |
| sf := new(scalefunc.Schema) | |
| err := sf.Decode(model) | |
| if err != nil { | |
| panic(err) | |
| } | |
| s, err := scale.New(scale.NewConfig(signature.New).WithFunction(sf)) | |
| if err != nil { | |
| panic(err) | |
| } | |
| instance, err := s.Instance() |
| swagger: '2.0' | |
| info: | |
| version: v1 | |
| title: HP JetAdvantage Management Connector | |
| host: 'localhost:12350' | |
| schemes: | |
| - http | |
| paths: | |
| '/api/credentials/{deviceId}': | |
| get: |
| #!/usr/bin/env bash | |
| # ~/.claude/statusline.sh | |
| # Claude Code status line — polished dev-tool aesthetic | |
| input=$(cat) | |
| # ── Parse JSON fields ──────────────────────────────────────────────────────── | |
| cwd=$(echo "$input" | jq -r '.workspace.current_dir // .cwd // ""') | |
| model=$(echo "$input" | jq -r '.model.display_name // ""') | |
| used_pct=$(echo "$input" | jq -r '.context_window.used_percentage // empty') |