The following is a disclaimer (draft) to be given to candidates before an interview, and at the start of an interview. The GOAL is to CONVINCE the applicant to put down the AI-driven sidechat (window on computer, phone on the side), and answer from their own experience and knowledge. We have actually had applicants who seem great on paper, and then shoot themselves in the foot by operating during the interview as if they were using an AI sidechat to literally drive all their answers for them. AI answers are always short, simplistic, don't contain the nuance we want in a technical interview, and most importantly completely hide the applicant's own skills and knowledge (not to mention the extremely annoying ~5 second robotic processing time while the bot processes the question on the side, the requests to repeat the question...). This is just a draft, so it's currently a bit rought, but the idea is there.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PSA: macOS Tahoe 26 changes how SSH agent sockets should be mounted into Docker/OrbStack containers. | |
| After updating MacOS from 15.7.3 to 26.5.1, the update broke my existing setup for mounting SSH agent sockets to docker containers. | |
| After updating to Tahoe, bind-mounting the host’s `SSH_AUTH_SOCK` path directly into a Linux container can stop working if you were pointing to the `launchd` socket path directly: | |
| What used to work: | |
| ```bash | |
| docker run \ |
We are poking around and looking for the following "cannot allocate memory" error message:
Failed to open TCP connection to elasticloadbalancing.us-west-2.amazonaws.com:443 (Cannot allocate memory - connect(2) for \"elasticloadbalancing.us-west-2.amazonaws.com\" port 443)
Target testing Ruby 3.2's TCPSocket.open call here: https://github.com/ruby/net-http/blob/v0.3.2/lib/net/http.rb#L1271-L1273. (Ruby TCPSocket implementation: https://github.com/ruby/ruby/blob/master/ext/socket/tcpsocket.c)
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commonName,scientificName,native,phenology,url | |
| A Moth,Abagrotis apposita,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474133 | |
| A Moth,Abagrotis brunneipennis,Native,Year-round,https://idfg.idaho.gov/species/taxa/25522 | |
| A Moth,Abagrotis discoidalis,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474134 | |
| A Moth,Abagrotis dodi,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474135 | |
| A Moth,Abagrotis duanca,Native,Year-round,https://idfg.idaho.gov/species/taxa/26322 | |
| A Moth,Abagrotis erratica,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474136 | |
| A Moth,Abagrotis forbesi,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474137 | |
| A Moth,Abagrotis glenni,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474138 | |
| A Moth,Abagrotis hermina,Native,Year-round,https://idfg.idaho.gov/species/taxa/1474139 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM node:16.18 | |
| RUN git clone --single-branch https://github.com/skidding/jobs-done.git /jobsdone | |
| WORKDIR /jobsdone | |
| COPY data.js data.js | |
| RUN yarn install \ | |
| && yarn build \ | |
| && yarn global add http-server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| /** | |
| * @file Generate a deterministic name from a commit's short hash. | |
| * Inspired by Docker 0.7.x which generates names from notable scientists and hackers. | |
| */ | |
| const adjectives = [ | |
| 'admiring', | |
| 'adoring', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Configure by exporting TODOPROJECT_FILE, the file path to write to. | |
| # Recommended: alias tp="path/to/todoproject.sh" | |
| todoproject_file="${TODOPROJECT_FILE:-$HOME/todoproject.tsv}" | |
| function initFile { | |
| if [[ -f "${todoproject_file}" ]]; then return 0; fi | |
| mkdir -p "$(dirname "${todoproject_file}")" | |
| printf "Timestamp of Thought\tProject\n" > "${todoproject_file}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { spawnSync } from 'child_process' | |
| import { readFileSync } from 'fs' | |
| import { temporaryWriteSync } from 'tempy' | |
| // Get the default editor | |
| const editor = process.env['VISUAL'] || process.env['EDITOR'] || 'vi' | |
| console.log(`Opening in EDITOR: ${editor}. Save and quit the editor process to continue.`) | |
| // If within another interactive program, uncomment this to prevent wacky visuals |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let newelement = document.createElement('h1') | |
| newelement.textContent = 'MODIFIED' | |
| document.getElementsByTagName('h1')[0].append(newelement) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [core] | |
| pager = "if command -v diff-so-fancy > /dev/null; then diff-so-fancy | less --tabs=4 -RFX; else less --tabs=4 -RFX; fi" | |
| [interactive] | |
| diffFilter = "if command -v diff-so-fancy > /dev/null; then diff-so-fancy --patch; else less --tabs=4 -RFX; fi" | |
| [alias] | |
| timeline = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all --since='90 days ago' |
NewerOlder