Skip to content

Instantly share code, notes, and snippets.

View TuxPenguin09's full-sized avatar
❤️
posts made inspiring and Updating everyone!

aliamanuba TuxPenguin09

❤️
posts made inspiring and Updating everyone!
View GitHub Profile
@TuxPenguin09
TuxPenguin09 / grading.cpp
Last active March 31, 2024 13:59
Hexagon School Grading System Code 1
#include <iostream>
#include <cstring>
#include <cstdlib>
using namespace std;
// Revision 6 by SRD_67
const int MAX_TOTAL_STUDENTS = 20; // Maximum of Students in Total
const int MAX_TOTAL_SUBJECTS = 10; // Maximum of Subjects in Total
@TuxPenguin09
TuxPenguin09 / calcstring.py
Last active May 19, 2022 23:00
Calculating How Many Random String Until Everything is Mentioned in Python
import random
stringAlphabets = "abcdefghijklmnopqrstuvwxyz"
stringAvail = []
strAvlength = 0
strLimlength = 0
strErrs = 0
charLength = 15 # Any length of chars
@TuxPenguin09
TuxPenguin09 / hodots-videopost-qualityprocessor.py
Last active April 3, 2022 12:42
FFMPEG Python All Quality Script
import ffmpeg
rawVideoFile = './input/raw'
outputFolder = './output/'
LimitQuality = 0 # 0 - Default
bitrateMultiply = 2000
audioBitrate = 42000000
AllowFLVExport = False