Skip to content

Instantly share code, notes, and snippets.

View Lordmau5's full-sized avatar
๐Ÿ˜”
Too Many Projects, Too Little Time

Lordmau5 Lordmau5

๐Ÿ˜”
Too Many Projects, Too Little Time
View GitHub Profile
@ghostzero
ghostzero / api.md
Created July 24, 2024 14:42
Wave Link API

Elgato Wave Link API

The Wave Link API is based on JSON-RPC 2.0 using WebSocket (ws://127.0.0.1:1824) as transport.

Requests

getAllChannelInfo

getApplicationInfo

getMicrophoneSettings

getMicrophoneState

@emilianavt
emilianavt / BestVTuberSoftware.md
Last active November 29, 2025 10:58
Best VTuber Software

Best VTuber software

This is a list of the most commonly used and relevant vtubing software. The "best" will always be subjective and depend on your specific requirements. Overall, the information in this list is as accurate as I could figure it out, but there might be errors or some details might become out of date. If you find anything that needs to be corrected, please let me know. You can also note it in a comment.

Additional explanations:

  • iPhone means that an iPhone is basically required
  • iFacialMocap support means that tracking data can be received from the iFacialMocap iPhone app
  • VMC protocol means that the application can send and/or receive tracking data from other VMC protocol capable applications, allowing the combination of multiple tracking methods (e.g. VSeeFace receiving VR tracking from Virtual Motion Capture and iPhone/ARKit face tracking from Waidayo)
  • Tobii means that the Tobii eye tracker is supported
@aras-p
aras-p / preprocessor_fun.h
Last active December 5, 2025 05:33
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,
@bgrins
bgrins / export-chrome-bookmarks.js
Last active November 15, 2025 14:38
Reminder of how to export bookmarks from Chrome as text.
/*
Export bookmarks from Chrome as text.
Go to Bookmarks Manager->Organize->Export to HTML file.
Then open that file, open console and run this command:
*/
[].map.call(document.querySelectorAll("dt a"), function(a) {
return a.textContent + " - " + a.href
}).join("\n");