Skip to content

Instantly share code, notes, and snippets.

View phecdaDia's full-sized avatar
🏳️‍🌈

Phecda phecdaDia

🏳️‍🌈
View GitHub Profile
@cgt
cgt / lcslen.py
Last active April 1, 2021 21:44
Iterative and recursive implementations of LCS-Length() in Python
#!/usr/bin/env python3
def LCS_length(X, Y):
m = len(X)
n = len(Y)
c = [[0 for j in range(n+1)] for i in range(m+1)]
for i in range(0, m):
for j in range(0, n):
@silver-mixer
silver-mixer / discord.js
Last active August 25, 2024 15:44 — forked from davejbax/discord.js
Higher Discord volume control
(function() {
// The following utility function are taken from EnhancedDiscord, developed by
// joe27g <https://github.com/joe27g>, and licensed under an MIT License.
// All credit goes to joe27g for the breadth of the work regarding accessing
// webpack modules at runtime.
//
// ---
// MIT License
//