Skip to content
View thefeaturecreature's full-sized avatar
🍤
🍤
  • Portland, OR

Block or report thefeaturecreature

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.

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

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

Report abuse

Pinned Loading

  1. Youtube-Mix-Tracks Youtube-Mix-Tracks Public

    Get Track list for mixes on YouTube and optionally make cue files for yt-dlp audio. Search description, comments, MixesDB, and 1001TrackList to find community-sourced list and leverage LLM to outpu…

    Python

  2. clean-yt-dlp-captions clean-yt-dlp-captions Public

    Cleans captions from YouTube into a readable format, vtt files exported from yt-dlp, semantic formatting using LLM

    Python

  3. latex-resume latex-resume Public

    Parameterized LaTeX Resume Builder to export consistent PDFs with data, separated sections, and styles. Also includes Python+Flask web interface for managing bullet content for resumes.

    TeX

  4. linkedin-jobs-curator linkedin-jobs-curator Public

    A Violentmonkey/Greasemonkey script for LinkedIn job search. Rule-based filtering, highlights, dismissals, and an application log that automatically flags companies you've already applied to.

    JavaScript 2

  5. Queryvar passthrough for landing pag... Queryvar passthrough for landing page platforms
    1
    window.onload = function() {
    2
        if(window.location.search!==''){
    3
            const urlQuery = window.location.search.replace('?','').split('&').reduce(function(obj, str, index) {
    4
                let strParts = str.split("=");
    5
                obj[strParts[0].replace(/\s+/g, '')] = strParts[1];