Skip to content

Instantly share code, notes, and snippets.

View hxii's full-sized avatar
🛠️
Coming up with more things

Paul (hxii) Glushak hxii

🛠️
Coming up with more things
View GitHub Profile
@hxii
hxii / input.txt
Created August 10, 2025 13:50
Job Application Rejection Adjustment via LLM
Template:
Dear {applicant name},
Thank you for your interest in {company name} and {position} position.
We have reviewed your application and regret to inform you that your profile is not a close enough match for the position’s requirements, therefore we will not be moving forward with your application on this occasion.
We would like to keep in touch with you to inform you about future job vacancies, and reach out when a position opens up that may be a good fit.
We appreciate your interest in {company name} and wish you all the best in your future career.
@hxii
hxii / media.sh
Created September 1, 2025 13:06
Cider.sh SketchyBar Now Playing Info
#!/bin/bash
CIDER_TOKEN="" # Get Cider token from the app.
# See: https://cider.sh/docs/client/rpc
STATE="$(curl -s -H "apptoken: $CIDER_TOKEN" http://localhost:10767/api/v1/playback/is-playing | jq '.is_playing')"
if [ "$STATE" = "true" ]; then
MEDIA="$(curl -s -H "apptoken: $CIDER_TOKEN" http://localhost:10767/api/v1/playback/now-playing | jq -r '.info.artistName + " - " + .info.name')"
sketchybar --set $NAME label="$MEDIA" drawing=on
else
@hxii
hxii / types.css
Created November 16, 2025 11:09
Obsidian Note Type Styling
/* Shared on the Obsidian Discord */
/* ############ INTERNAL LINK STYLING ## */
span.data-link-text,
a.internal-link {
--accent-color: var(--color-accent);
--text-color: color-mix(in srgb, var(--text-normal), var(--accent-color) 50%);
--bg-color: color-mix(in srgb, var(--accent-color), transparent 80%);
--inside-border-color: color-mix(in srgb, var(--text-color) 90%, white);
--new-border-color: color-mix(in srgb, var(--text-color), transparent 60%);