Some notes on Audio pitch correction (eg. autotune, melodyne, etc).
| const resourceIds = [ | |
| { oldWord: 'customer_id', newWord: 'customerId' }, | |
| { oldWord: 'ticket_id', newWord: 'ticketId' }, | |
| { oldWord: 'switch_id', newWord: 'switchId' }, | |
| { oldWord: 'access_id', newWord: 'accessId' }, |
| // ==UserScript== | |
| // @name TweetXer | |
| // @namespace https://github.com/lucahammer/tweetXer/ | |
| // @version 0.9.3 | |
| // @description Delete all your Tweets for free. | |
| // @author Luca,dbort,pReya,Micolithe,STrRedWolf | |
| // @license NoHarm-draft | |
| // @match https://x.com/* | |
| // @match https://mobile.x.com/* | |
| // @match https://twitter.com/* |
| /* | |
| This may get your account banned. It runs in your regular browser with your regular login without needing the API. | |
| The script does the same things that you would do yourself: | |
| Click the three dots, select delete Tweet, confirm, scroll to next Tweet, repeat. | |
| ========================== | |
| Usage | |
| 1. Open your Twitter profile in a browser | |
| 2. Open the console in the developer tools (F12) | |
| 3. Paste the script and press enter | |
| 4. ??? |
If you run into any trouble while following these instructions, drop by #help-line in the Clone Hero Discord server with your issue/question.
The first time I played DDR was on a 6th Mix DDR MAX cabinet, but I spent most of my time with this massive custom LED wall screen that housed DDR Extreme. So when I got a foam pad for home, I wanted to replicate what felt most comfortable.
I'm sure it's not pixel perfect, and there are probably some arcade features/behaviours I'm missing, but this setup is close enough for me!
- Download Beware's Stepmania Extreme build (direct)
If you don't mind using an older version of Stepmania, you're probably good to go and can ignore the rest!
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
| { | |
| "extends": ["stylelint-config-recommended"], | |
| "processors": ["stylelint-processor-ignore-front-matter"], | |
| "rules": { | |
| "at-rule-no-unknown": [true, { | |
| "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"] | |
| } ], | |
| "declaration-block-trailing-semicolon": "always", | |
| "no-descending-specificity": [true, { "ignore": ["selectors-within-list"] } ], | |
| "no-invalid-double-slash-comments": true |