This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Mixxx Scrobbler - SixBeeps 2024 | |
| # I can't be bothered to write a proper license, so do whatever you want with this code. | |
| # Steps: | |
| # | |
| # 1. Grab an API key and secret, for Last.fm go to https://www.last.fm/api/account/create | |
| # 2. Install the pylast library with `pip install pylast` | |
| # 3. Create a .env file in the same directory as this script with the following contents | |
| # API_KEY=your_api_key | |
| # API_SECRET=your_api_secret | |
| # NETWORK=lastfm OR librefm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| namespace NESMixer { | |
| class Program { | |
| public static Random rng = new Random(); | |
| static void Main(string[] args) { | |
| if (args.Length == 2) { | |
| ROM rom = new ROM(args[0]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.IO; | |
| namespace AutoMemeSkin | |
| { | |
| class Program |