Skip to content

Instantly share code, notes, and snippets.

View lordmulder's full-sized avatar
🔪
Found a body on down by the lake, I'm wondering what he did to be that dead

LoRd_MuldeR lordmulder

🔪
Found a body on down by the lake, I'm wondering what he did to be that dead
View GitHub Profile
@lordmulder
lordmulder / build.sh
Last active June 20, 2021 16:06
Build cURL v7.77 for Windows XP or newer, Unicode, fully static, with OpenSSL zlib brotli zstd SSH2 HTTP/2 IPv6 IDN SASL NTLM HSTS RTMP
#!/bin/bash
# _ _ ____ _
# ___| | | | _ \| |
# / __| | | | |_) | |
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
set -e
trap 'read -p "Press any key..." x' EXIT
@lordmulder
lordmulder / AsyncTask.java
Last active January 25, 2021 21:32
AsyncTask for JavaFX/OpenJFX
/*
* AsyncTask for JavaFX/OpenJFX, by LoRd_MuldeR <mulder2@gmx.de>
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://www.wtfpl.net/ for more details.
*/
This file has been truncated, but you can view the full file.
------------------------------------
x264 version history
------------------------------------
commit 4c9b076be684832b9141f5b6c03aaf302adca0e4 [revision 3009]
Author: Anton Mitrofanov <BugMaster@narod.ru>
Date: Sun Apr 26 03:19:00 2020 +0300
Remove code for non-positive f_ip_factor/f_pb_factor
@lordmulder
lordmulder / Seeder.java
Last active February 5, 2019 21:19
Collect some additional entropy from timers (for seeding purpose)
/*
* Seeder
* Created by LoRd_MuldeR <mulder2@gmx.de>.
*
* This work is licensed under the CC0 1.0 Universal License.
* To view a copy of the license, visit:
* https://creativecommons.org/publicdomain/zero/1.0/legalcode
*/
package com.mulderosft.crypto.seeder;
@lordmulder
lordmulder / SHA512CSRNG.java
Last active January 26, 2019 19:58
SHA-512-based CSRNG (cryptographically secure pseudorandom number generator) for Java
/*
* SHA-512 CSRNG
* Created by LoRd_MuldeR <mulder2@gmx.de>.
*
* This work is licensed under the CC0 1.0 Universal License.
* To view a copy of the license, visit:
* https://creativecommons.org/publicdomain/zero/1.0/legalcode
*/
package sha512csrng;
@lordmulder
lordmulder / OpusTools-v0.2-ShowProgress.V11.diff
Created October 3, 2018 13:57
Patch to display progress in OpusDec from Opus Tools
src/opusdec.c | 41 ++++++++++++++++++++++++++++++++---------
src/opusenc.c | 18 ++++++++++--------
2 files changed, 42 insertions(+), 17 deletions(-)
diff --git a/src/opusdec.c b/src/opusdec.c
index 9f8ad2c..67b3eee 100644
--- a/src/opusdec.c
+++ b/src/opusdec.c
@@ -41,6 +41,7 @@
#include <limits.h>
@lordmulder
lordmulder / OpusTools-v0.1.10-ShowProgress.V10.diff
Created April 7, 2018 18:49
OpusDec "Show Progress" Patch
diff --git a/src/opusdec.c b/src/opusdec.c
index 1dffbbc..3481c6c 100644
--- a/src/opusdec.c
+++ b/src/opusdec.c
@@ -41,6 +41,7 @@
#include <limits.h>
#include <string.h>
#include <ctype.h> /*tolower()*/
+#include <time.h>
@lordmulder
lordmulder / multi_download_example.py
Last active April 1, 2018 11:36
INetGet multi-download *example* script
##############################################################################
# INetGet - Lightweight command-line front-end to WinINet API
# Copyright (C) 2018 LoRd_MuldeR <MuldeR2@GMX.de>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,