Skip to content
View dbreunig's full-sized avatar

Highlights

  • Pro

Block or report dbreunig

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 250 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. BeaconNotes BeaconNotes Public

    A quick proof-of-concept using a beacon to lock and unlock and application. A key-fob-like beacon could be used to ensure notes only authorized users are able to access application data.

    Objective-C

  2. git-scraper-extractor git-scraper-extractor Public

    Pull out versions of specific files from a gitscraping repo into individual files.

    Ruby 15

  3. Download podcasts from an XML feed, ... Download podcasts from an XML feed, transcribe them with whisper, and insert the data into a sqlite db.
    1
    import feedparser
    2
    import whisper
    3
    import sqlite3
    4
    import requests
    5
    
                  
  4. faucet_finder faucet_finder Public

    Using Datasette and CLIP embeddings to find similar faucets.

    HTML 22 3

  5. foggy-bot foggy-bot Public

    A simple weather website for Downtown San Francisco.

    Python 17 2

  6. A script to generate a glossary of k... A script to generate a glossary of key terms from your Jekyll posts. We're using DSPy to handle LLM interactions; it helps with boilerplate prompt context and parsing responses into Pydantic objects. To run this, put this script in a folder named 'scripts' (or whatever) in your Jekyll site directory. Then plug in your Anthropic API key (or point DSPy to the LLM endpoint of your choice). It will output a YAML file named 'glossary.yaml' to your '_data' directory.
    1
    from pathlib import Path
    2
    import re
    3
    import dspy
    4
    from typing import TypedDict, List
    5
    import yaml