Skip to content

Instantly share code, notes, and snippets.

View jfhbrook's full-sized avatar
💭
KNEE DEEP IN THE HOOPLA

Josh Holbrook jfhbrook

💭
KNEE DEEP IN THE HOOPLA
View GitHub Profile
@jfhbrook
jfhbrook / letter.md
Created November 19, 2024 23:04
A letter to Dan Sullivan about judicial nominees

Hi Dan,

I'm writing to you because, as I understand it, a whole suite of candidates nominated for judgeships is currently sitting un-confirmed - apparently, for the simple fact that they were nominated by Joe Biden.

I think we both know that these candidates are highly qualified and hold the shared value of remaining impartial on the bench. I know that if these judges were confirmed, they would fill much-needed vacancies in a judicial system straining under its load - and keep a major component of our government running.

I have to suppose that the reason these judges aren't being confirmed is that the republican leadership plans to allow Donald Trump to nominate his own extremist, highly partisan judges. Not only is this alarming to me given how his nominees on the supreme court have issued opinions over the last few years - it also strikes me as playing games over cheap partisan tricks.

I would hate to think that you're playing a part in these games. You wouldn't put the functioning of our courts in jeop

@jfhbrook
jfhbrook / letter.md
Created November 19, 2024 23:03
A letter to Lisa Murkowski about judicial nominees

Hi Lisa,

I'm writing to you because, as I understand it, a whole suite of candidates nominated for judgeships is currently sitting un-confirmed - apparently, for the simple fact that they were nominated by Joe Biden.

I think we both know that these candidates are highly qualified and hold the shared value of remaining impartial on the bench. I know that if these judges were confirmed, they would fill much-needed vacancies in a judicial system straining under its load - and keep a major component of our government running.

I have to suppose that the reason these judges aren't being confirmed is that the republican leadership plans to allow Donald Trump to nominate his own extremist, highly partisan judges. Not only is this alarming to me given how his nominees on the supreme court have issued opinions over the last few years - it also strikes me as playing games over cheap partisan tricks. This shouldn't be acceptable - I hope you agree.

I urge you to push for confirming these nominees as soon as possible

@jfhbrook
jfhbrook / letter.md
Created November 19, 2024 22:59
A letter to Mary Peltola about HR 9454

Hi Mary,

I'm writing to urge you to vote NO on HR 9495. As I understand it, this resolution would allow the treasury department to label arbitrary non-profits as "terrorist supporting organizations" and strip them of their status.

As a local organizer with the local Democrats and local progressive organizations, this is alarming. I know I'm not a terrorist. But how can I trust any treasury department under the Trump administration to use this sort of power responsibly? I can't. My activism isn't dangerous in the slightest, and yet I could stand to be labeled an enemy of the state by our government without any due process or justification.

I see you voted NO during the recent first vote on this resolution - I really appreciate that. Voting NO on HR 9545 is the least you can do - I consider this a litmus test for all Democrats, no matter where they stand with the party or what caucuses they're in. I know you have sided with Republicans in the past, in the name of satisfying conservative constituents and reac

module {
version = "1.0.0"
description = "Push to a git repository"
scripts {
format = [
"terraform fmt -recursive"
]
lint = [
@jfhbrook
jfhbrook / dokku.tf
Last active November 13, 2024 04:04
locals {
hostname = "thisistheremix.dev"
ssh_host = "lil-nas-x.local"
op_account = "lmao"
op_vault = "roffle"
op_ssh_key = "Dokku SSH Key"
letsencrypt_email = "[email protected]"
}
terraform {
import { Transform } from 'stream';
import { spawn } from 'child_process';
import build from 'pino-abstract-transport';
export interface Options {
logLevel: string;
}
export default function transport({ logLevel }: Options) {
@jfhbrook
jfhbrook / Oh-My-Posh.psm1
Last active April 19, 2024 19:58
Select an oh-my-posh theme (MacOS + Homebrew)
function Initialize-Omp {
param(
[string] $Config,
[string] $Theme
)
$OmpPath = "$(brew --prefix oh-my-posh)"
if ($Theme) {
$Config = "$OmpPath/themes/$Theme.omp.json"
@jfhbrook
jfhbrook / points.md
Last active September 10, 2022 21:27

POINTS

DRIVER’S LICENSE POINT ASSIGNMENT

If you are convicted of, or forfeit bail for, a moving traffic violation occurring in this, or any other State, points will be entered on your Alaska driving record. Assigned points are based on the following schedule:

Type of Violation // Point Value

  • Operating a motor vehicle while privilege to do so is suspended or revoked or in violation of limited license......................................................................................... 10
  • Driving while intoxicated / under the influence ............................................................. 10
  • Reckless driving ........................................................................................................... 10
use std::os::unix::net::UnixStream;
use std::net::Shutdown;
use std::io::{BufRead, BufReader,BufWriter, Write};
use std::thread;
use anyhow::{Result, Error};
use clap::{Parser, Subcommand};
// use miette::{Diagnostic, SourceSpan};
// use thiserror::Error;
use rustyline::error::ReadlineError;
@jfhbrook
jfhbrook / test.ts
Created March 27, 2022 05:08
aghast test handler using shot^H^H^H^Hpickleback
import { IncomingMessage, ServerResponse } from 'http';
import { inject, RequestOptions } from 'pickleback';
import { Opts, defaults } from '../opts';
export interface TestHarness<R> {
(reqOpts: RequestOptions, opts?: Opts): Promise<R>
}
export interface TestHandler<R> {