View tango-input-gaming.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gcc2msvc.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Opt: | |
-O0 -Od | |
-O2 -O2 -Ot | |
-O3 -Ox -Ot | |
-Os -O1 -Os | |
-fomit-frame-pointer -Oy | |
Code gen: | |
-f[no-]rtti -gr[-] |
View gnu_coreutils_cp_copy_progress.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Patch for coreutils 9.1 to copy a directory with a progress shown. | |
Better alternative: https://github.com/dmerejkowsky/pycp | |
--- a/src/copy.c | |
+++ b/src/copy.c | |
@@ -1815,16 +1815,80 @@ | |
&& ! overwrite_ok (x, dst_name, dst_dirfd, dst_relname, dst_sb))); | |
} | |
+// GPL3, Copyright (C) 2016 Xfennec, CQFD Corp. | |
+// https://github.com/Xfennec/progress/blob/master/sizes.c |
View checkrt.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MIT License | |
// Copyright (c) 2021 djcj <djcj@gmx.de> | |
// Elf file parsing code was taken from https://github.com/finixbit/elf-parser | |
// Copyright (c) 2018 finixbit | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
View render_svg.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <float.h> | |
#include <inttypes.h> | |
#include "nanosvg.h" | |
#define NANOSVGRAST_IMPLEMENTATION | |
#include "nanosvgrast.h" | |
#define STB_IMAGE_WRITE_IMPLEMENTATION | |
#include "stb_image_write.h" |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OBJS = \ | |
7zAlloc.o \ | |
7zArcIn.o \ | |
7zBuf.o \ | |
7zBuf2.o \ | |
7zCrc.o \ | |
7zCrcOpt.o \ | |
7zDec.o \ | |
7zFile.o \ | |
7zStream.o \ |
View wslpath.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This is free and unencumbered software released into the public domain. | |
* | |
* Anyone is free to copy, modify, publish, use, compile, sell, or | |
* distribute this software, either in source code form or as a compiled | |
* binary, for any purpose, commercial or non-commercial, and by any | |
* means. | |
* | |
* In jurisdictions that recognize copyright laws, the author or authors | |
* of this software dedicate any and all copyright interest in the |
View tinybunny_unix.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
set -x | |
gamedir="Tiny Bunny" | |
sdkver="7.3.5" | |
if [ "$(printf "$PWD" | tail -c28)" = "/steamapps/common/Tiny Bunny" ]; then | |
gamedir="." | |
fi |
View launch-steam.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# requires fltk-dialog to be in PATH | |
# https://github.com/darealshinji/fltk-dialog/releases/tag/continuous | |
steamconfig="${HOME%/}/.steam" | |
pidfile="$steamconfig/steam.pid" | |
steambin="$steamconfig/steam/steam.sh" | |
logfile="$(mktemp)" | |
pid_steam=0 | |
pid_launcher=0 |
View rotate_FL_RGB_Image.cxx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <FL/Fl.H> | |
#include <FL/Fl_Box.H> | |
#include <FL/Fl_Double_Window.H> | |
#include <FL/Fl_GIF_Image.H> | |
#include <FL/Fl_JPEG_Image.H> | |
#include <FL/Fl_PNG_Image.H> | |
#include <FL/Fl_XBM_Image.H> | |
#include <string.h> | |
enum { |
NewerOlder