Skip to content

Instantly share code, notes, and snippets.

View Icedude907's full-sized avatar
💭
Always Busy

Icedude907

💭
Always Busy
View GitHub Profile
@Icedude907
Icedude907 / Aseprite-Windows-buildinstrs.md
Last active April 7, 2024 13:56
A selection of assorted thoughts - may help you when going through the building process yourself
  • Git clone the repo
  • Gitignore skia
  • Update file
// city.cc

// #include <byteswap.h>
#define bswap_32(x) __builtin_bswap32(x)
#define bswap_64(x) __builtin_bswap64(x)
@Icedude907
Icedude907 / dank.cpp
Last active May 5, 2023 06:39
Introducing dank++ (indev)
#define ayyo auto
#define chief main
#define passa ->
#define no !
#define cap false
#define rn ;
#define heres (
#define fr )
#define g {
@Icedude907
Icedude907 / ArgDump.cpp
Last active November 11, 2022 04:45
ArgDump.cpp
#include <stdint.h>
#include <iostream>
#include <fstream>
#include <filesystem>
// Dumps arguments given to a file in the working directory. If it doesn't have permissions it dumps to the temp folder
// Made to monitor the startup of a process with a short lifespan
// Note: Working Directory != Process Directory. You may need to search a bit
int main(int argc, char** argv){
std::ofstream outfile;