Skip to content
View slothsh's full-sized avatar
πŸ¦₯
How's it hanging?
πŸ¦₯
How's it hanging?

Block or report slothsh

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.

Content in all repositories owned by your account will be closed.
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
slothsh/README.md

Hi there. πŸ‘‹

I'm Stefan.

I mostly work on CLI & web-applications to service my employer, but in these chambers you will find a few collections of code that you may find interesting, or, maybe, even outright lame.

Nonetheless, thanks for visiting, and feel free to take a look around!


πŸ“« Contact


πŸ‘― Collaboration

I come from an audio background, so naturally I'd like to work on any projects that have their applications in audio! Plugins, real-time audio, etc. If you've got any ideas, or are already championing the next project that's going revolutionise the space, then I'd love to hear about it.


πŸ”­ WIP Projects

  • cxxtc, a c++23, header-only library that provides a SMPTE timeocode container.
  • adr-gsuite-tools, a toolkit that provides you with a suite of utilities for performing localisation tasks inside of Sheets.
  • adr-cuesearch, a web-app for processing & searching libraries of audio-post production data.

🌱 Learning


Pinned Loading

  1. ptl ptl Public

    Pattern Transformation Language

    Rust

  2. fcl fcl Public

    Flibbing Config Language

    C++

  3. cxxtc cxxtc Public

    A header-only library providing a SMPTE timecode container in C++23

    C++

  4. hyprsquint hyprsquint Public

    A Hyprland plugin for magnifying your screen.

    C++ 1

  5. teakit teakit Public

    A simple task executor library that can be used to procedurally build up a dependency tree of tasks which can be executed in parallel.

    Python

  6. Enum struct macros in C++23 Enum struct macros in C++23
    1
    #define LITERAL(symbol) #symbol
    2
    #define DELETE_CTORS(type)                 \
    3
        type() = delete;                       \
    4
        type operator=(type const&) = delete;  \
    5
        type(type&&) = delete;                 \