Skip to content

Instantly share code, notes, and snippets.

VIDEOS MIGHT OUTDATED BUT TEXT IS NOT

this guide is not meant to help with leaking or feeding your paywall or any stupid things you might do to ruin experience for other people

Downloading

  • Get latest version from Github Actions not releases from here , if you dont have account you can use site like nightly.link to download it , Latest build or this fork if main repo expired here or mine

if GI 4.6+ use this fork on your own risk here

  • Extract zip file somewhere
chrome_bBlpF4CYiz.webm.mov
@JHarrison712
JHarrison712 / VMware Product License Keys
Created November 26, 2024 13:16
VMware Product License Keys" is a GitHub Gist containing a collection of license keys for VMware products. This gist provides a convenient reference for accessing and managing VMware product licenses within a GitHub repository, facilitating easy sharing and retrieval of keys as needed.
1.VMware Workstation Pro Series:
---------------------------------
MC60H-DWHD5-H80U9-6V85M-8280D
4A4RR-813DK-M81A9-4U35H-06KND
NZ4RR-FTK5H-H81C1-Q30QH-1V2LA
JU090-6039P-08409-8J0QH-2YR7F
4Y09U-AJK97-089Z0-A3054-83KLA
4C21U-2KK9Q-M8130-4V2QH-CF810
HY45K-8KK96-MJ8E0-0UCQ4-0UH72
@alexanderlerch
alexanderlerch / data-sets.md
Last active August 4, 2025 06:22
list of MIR datasets
dataset meta data contents with audio
200DrumMachines 7371 one-shots yes
AAM onsets, pitches, instruments, melody instrument, keys, chords, tempo, beats 3000 (artificial) tracks yes
ACM_MIRUM tempo 1410 excerpts (60s) yes
ACPAS aligned audio and scores 2189 performances of 497 scores downloadable
AcousticBrainz-Genre 15-31 genres with 265-745 subgenres audio features for ove
@chrisurf
chrisurf / alt-codes.md
Last active August 4, 2025 06:16
ALT Codes for Check Mark, Cross (X) Mark & Ballot Box Symbols

ALT Codes for Check Mark, Cross (X) Mark & Ballot Box Symbols

Symbol ALT Code ALT X Code Symbol Name HTML Entity DEC HTML Entity HEX HTML Entity Named Unicode Code Point
ALT 9744 2610 ALT X Ballot box, check box, tick box U+2610
ALT 9745 2611 ALT X Ballot box with check U+2611
ALT 9746 2612 ALT X Ballot box with X U+2612
ALT 9989 2705 ALT X White heavy check mark U+2705
ALT 10003 2713 ALT X Check mark U+2713
ALT 10004 2714 ALT X Heavy check mark U+2714
_ _ _ ____ _ _
| | | | __ _ ___| | __ | __ ) __ _ ___| | _| |
| |_| |/ _` |/ __| |/ / | _ \ / _` |/ __| |/ / |
| _ | (_| | (__| < | |_) | (_| | (__| <|_|
|_| |_|\__,_|\___|_|\_\ |____/ \__,_|\___|_|\_(_)
A DIY Guide
@edokeh
edokeh / index.js
Last active August 4, 2025 06:13
佛祖保佑,永无 BUG
//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
@javaplus
javaplus / pwm.py
Last active August 4, 2025 06:05
RaspberryPI BTS7960 HBridge Example Simple
###############################################################
## Simple code to use PWM on the PI to control the BTS7960
##
## This simply spins the motor in one direction slowly
## speeding up slowly and then slowing down slowly over
## and over again.
##
###############################################################
import RPi.GPIO as GPIO
@adammw
adammw / gist:6257550
Last active August 4, 2025 06:03
HLS / M3U8 Downloader for AES-128 Encrypted Streams
#!/usr/bin/env node
// M3U8 Downloader (not working)
var fs = require('fs');
var http = require('http');
var https = require('https');
var crypto = require('crypto');
var program = require('commander');
var ee = require('streamee');
@myfreeer
myfreeer / appveyor.yml
Last active August 4, 2025 05:59
Tiny C Compiler build scripts on msys2
version: 1.0.{build}
build_script:
- cmd: >-
C:\msys64\usr\bin\pacman -Syyuu --noconfirm
C:\msys64\usr\bin\pacman -Suu --noconfirm
appveyor DownloadFile https://gist.github.com/myfreeer/c8df0b2acbf97e8b391ca741e5248f3f/raw/tinycc-build.sh
set MSYSTEM=MINGW64
@zsup
zsup / ddd.md
Last active August 4, 2025 05:59
Documentation-Driven Development (DDD)

Documentation-Driven Development

The philosophy behind Documentation-Driven Development is a simple: from the perspective of a user, if a feature is not documented, then it doesn't exist, and if a feature is documented incorrectly, then it's broken.

  • Document the feature first. Figure out how you're going to describe the feature to users; if it's not documented, it doesn't exist. Documentation is the best way to define a feature in a user's eyes.
  • Whenever possible, documentation should be reviewed by users (community or Spark Elite) before any development begins.
  • Once documentation has been written, development should commence, and test-driven development is preferred.
  • Unit tests should be written that test the features as described by the documentation. If the functionality ever comes out of alignment with the documentation, tests should fail.
  • When a feature is being modified, it should be modified documentation-first.
  • When documentation is modified, so should be the tests.