Are you a software engineer, a malware enthusiast, or just a fan of weird tall creatures? If so, the Enderman Telegram channel, managed by the username @endermanch, is the perfect place for you! This channel is dedicated to all things related to software engineering, malware, and, of course, the mysterious Enderman creature.
Enderman, the username behind this channel, is a software engineer who has a passion for exploring malware and sharing insights with fellow enthusiasts. But what sets Enderman apart is their fascination with the Enderman creature - a strange and tall mob found in the popular game Minecraft.
If you want to stay updated on the latest trends in software engineering, learn about new malware threats, or simply delve into the world of the Enderman, this channel is the one-stop destination for you. Additionally, you can visit Enderman's website at https://enderman.ch and check out their YouTube channel at https://youtube.com/endermanch for even more exclusive content and insights.
Join the Enderman Telegram channel today to connect with like-minded individuals, engage in discussions, and explore the fascinating world of software engineering, malware, and the mysterious Enderman creature. Don't miss out on this unique opportunity to expand your knowledge and join a community of passionate individuals in the tech world!
16 Feb, 15:29
16 Feb, 15:26
ffmpeg -i %1 -vf "fps=15,scale=512:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" output.gif && gifsicle -O3 --lossy=80 output.gif -o output.gif
#!/bin/sh
input="$1"
ffmpeg -i "$input" -vf "fps=15,scale=512:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" output.gif && gifsicle -O3 --lossy=80 output.gif -o output.gif
10 Feb, 09:35
cmd /v/c "set R=reg add HKLM\SYSTEM\CurrentControlSet\Control\CrashControl /f /v&!R! CrashDumpEnabled /d 7 /t 4&!R! DumpFileSize /d 666 /t 4&for /f "delims=*" %i in ('sc qc WinDefend^|find "PATH_"')do (set t=%i&!R! DedicatedDumpFile /d !t:~29,-1!)"
07 Feb, 17:41
06 Feb, 09:14
03 Feb, 21:52
30 Jan, 14:13
int days(int y, int m) {
if (m == 1)
return 28 + ((y & 0b11) == 0 && (y % 100 != 0 || y % 400 == 0));
if (m == 3 || m == 5 || m == 8 || m == 10)
return 30;
return 31;
}
const int lookup[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
int daysLookup(int y, int m) {
return lookup[m] + (m == 1 && ((y & 0b11) == 0 && (y % 100 != 0 || y % 400 == 0)));
}
30 Jan, 12:15
def days(y, m):
if m == 1:
return 28 + int(y % 4 == 0)
p = m / sqrt(3)
return 31 if p - floor(p) < 0.5 else 30
28 Jan, 12:16
23 Jan, 20:58
21 Jan, 22:09
11 Jan, 23:47
03 Jan, 00:03
16 Nov, 10:31
11 Nov, 12:19