run from the Music/Bandcamp folder after activating venv
(venv) ☁ Bandcamp ../../git/navicore/bandcampsync/bin/bandcampsync -d ./media -c ./cookies.txt --ignore waveform
run from the Music/Bandcamp folder after activating venv
(venv) ☁ Bandcamp ../../git/navicore/bandcampsync/bin/bandcampsync -d ./media -c ./cookies.txt --ignore waveform
OSError: [Errno 63] File name too long: '/Users/navicore/Music/Bandcamp/media/Waveform Magazine/WAVEFORM MAGAZINE ISSUE 3 COMPILATION---Yes, Bandcamp says you can pay for this album, and even name your own price! Please dont. Instead, when a track hits you a certain way, please go to that artists websiteBandcamp page and show them your love and support. Thanks!' | |
(venv) ☁ Bandcamp |
import csv | |
import random | |
from faker import Faker | |
fake = Faker() | |
# Define a list of more inclusive gender options | |
gender_options = ['Male', 'Female', 'Non-Binary', 'Trans Male', 'Trans Female', 'Genderqueer', 'Genderfluid', 'Agender', 'Other', 'Prefer Not to Say', 'Decline to State'] | |
# Create a list to store the data |
(define reciprocal | |
(lambda (n) | |
(if (= n 0) | |
"oops!" | |
(/ 1 n)))) |
I spent yesterday with langchain tutorials. It works. I hated the workflow because I hate python project and build issues and using jupyter w/o tab completion. I suspect I can find a jupyter IDE with vim bidings. Or I'll use Rust and llm-chain.
But it is a waste of time - the messyness and fragility of gaming prompts to get something needed in an intermediate step shows me what debugging will be all about and how fragile the thing is and the moronic assumptions everyone are making - these working prompts found / gamed during dev are not deterministic and will break and fuck us all if the app is doing something that matters.
#!/bin/bash | |
# Check if yq is installed | |
if ! command -v yq &> /dev/null; then | |
echo "yq is not installed. Please install it first." | |
exit 1 | |
fi | |
# Initialize the CSV header | |
echo "alert,team,severity,filename" |
#!/bin/bash | |
# Set the file pattern | |
file_pattern="telemetry*.yaml" | |
# Set the Git repository path | |
repo_path="." | |
# Initialize the report with header | |
report="alert_name,first_added,first_added_user,last_changed,last_changed_user,file_path\n" |
Hi Tris, | |
Regarding your invitation to imagine a character, as a teen in the late 1970s I | |
was a gas station attendant at a garage that had been a Chrysler dealership many | |
years earlier - the garage itself had been in business since the 1930s and Ernie, | |
the owner, my boss, had started there in the 30s as a teen, working his way up | |
to eventually buying the place. | |
They had broken tech from even earlier times! There was a pair of broken | |
teletypes/teleprinters they had in the past used to locate parts with from |
import requests | |
import json | |
import os | |
# Replace with your GitHub username and personal access token | |
username = 'navicore' | |
token = 'CHANGEME' | |
# API endpoint to fetch repositories sorted by updated_at in descending order | |
api_url = f'https://api.github.com/users/{username}/repos?sort=updated&direction=desc&per_page=25' |