Skip to content

Instantly share code, notes, and snippets.

View leduyquang753's full-sized avatar

Lê Duy Quang leduyquang753

View GitHub Profile
@leduyquang753
leduyquang753 / ColoredAudioWaveformGenerator.cpp
Last active December 6, 2024 11:31
Colored audio waveform generator based on band splitting.
/*
Colored audio waveform generator.
The audio is split into 3 bands and then their intensity is assigned to the color channels as follows:
– Under 200 Hz: red.
– From 200 Hz to 3000 Hz: green.
– Over 3000 Hz: blue.
The audio file's path is passed as a command-line argument.
Dependencies:
– dr_libs: https://github.com/mackron/dr_libs
@leduyquang753
leduyquang753 / termFormat.py
Created February 2, 2022 05:57
Windows terminal output converter into Discord's ANSI code block.
# Terminal output converter into Discord's ANSI code block.
# Targeted at Windows terminal. Enable HTML text format when copying.
from bs4 import BeautifulSoup as BS
import cssutils as CSS
import win32clipboard as Clipboard
# Map the colors of your scheme to the standard 16 colors supported by the ANSI
# code block.
colorMap = {
@leduyquang753
leduyquang753 / identifierValidator.cpp
Last active December 27, 2021 14:34
Unicode identifier validator.
/*
Unicode identifier validator.
Needs two data files generated by processDatabase.cpp.
*/
#include <array>
#include <clocale>
#include <cstdlib>
#include <fstream>
#include <ios>
/*
Terminal audio player.
Targetted at Windows, uses LibWinMedia (https://github.com/harmonoid/libwinmedia/)
for audio playback.
Run on the command line. Arguments:
1. The name of the audio file to play.
2. The volume to play from 0 to 100 (optional, default 100).
Playback can be seeked by clicking on the progress bar and paused by pressing Enter.
@leduyquang753
leduyquang753 / BurtleRNG.cpp
Last active January 14, 2022 14:29
"A small noncryptographic PRNG" in C++ as posted in burtleburtle.net.
#include <BurtleRNG.h>
BurtleRNG::BurtleRNG(const std::uint32_t &seed):
a(0xf1ea5eed), b(seed), c(seed), d(seed)
{
for (int i = 0; i != 20; i++) get();
}
std::uint32_t BurtleRNG::get() {
#define rotate(x, k) (((x)<<(k)) | ((x)>>(32-(k))))
@leduyquang753
leduyquang753 / minesweeper.cpp
Last active July 30, 2022 04:29
Minesweeper played from an ANSI terminal.
/*
ANSI terminal Minesweeper game.
Written by Lê Duy Quang ([email protected]).
Command line arguments: <width> <height> <mines>.
If those are not specified, defaults to a 9.9 board with 10 mines
(beginner difficulty).
Controls:
Arrow keys to move.
@leduyquang753
leduyquang753 / Cleanup task.xml
Last active March 2, 2020 07:46
Temporary folder cleaner
<?xml version="1.0" encoding="UTF-16"?>
<!-- WINDOWS TASK SCHEDULER TASK FOR TEMPORARY FOLDER CLEANUP
This is a Windows task scheduler's task that runs the cleanup script periodically. To use:
1. Set the two commented values below according to the instructions.
2. Open Task scheduler and select "Import task...".
-->
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<Actions Context="Author">
<Exec>
<Command>"pythonw.exe"</Command><!-- Put the path to a Python 3 installation's pythonw here. -->
@leduyquang753
leduyquang753 / Buzzers test.pptm
Last active November 4, 2024 09:13
Simple game buzzer system for PowerPoint
@leduyquang753
leduyquang753 / CHIPHI.pas
Last active April 7, 2019 04:31
Transport cost
uses crt, math, sysutils;
type
node = record
price, currentPrice, maxPricePassed: longint;
paths: array of longint;
visited: boolean;
end;
request = record
@leduyquang753
leduyquang753 / MediaWiki-Watchdog.md
Last active October 4, 2019 08:26
A Python script that tracks changes of a MediaWiki site and prints them to a console.

MediaWiki watchdog

This Gist contains a Python script that will connect to a MediaWiki site of your choice and prints the changes every 30 seconds. It also has a notification sound that will be played when a change happens.

The script requires these external modules:

  • bs4 (BeautifulSoup)
  • colorama
  • dateutil
  • pytz