Skip to content

Instantly share code, notes, and snippets.

View RandomGuyWithoutY's full-sized avatar

RandomGuyWithoutY

  • RookieMistakeSoft LLC.
  • Germany
View GitHub Profile
@RandomGuyWithoutY
RandomGuyWithoutY / C_rIP.c
Created May 10, 2024 21:23
Random IP address generator implemented in the one language to rule them all
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <stdint.h>
#include <string.h>
int main(int argc, char **argv)
{
FILE *file_out;
char string_ip_count[4096];
@RandomGuyWithoutY
RandomGuyWithoutY / roulette.c
Created May 10, 2024 21:19
Russian Roulette: System32 Edition (Pro Trial)
/* roulette.c
*
* Copyright (c) 2023 RandomGuyWithoutY
*
*
* Compilation flags:
*
* -DREAL_SYSTEM32
* Enables the real System32 folder as returned by
* the machine as deletion target. If this flag is
@RandomGuyWithoutY
RandomGuyWithoutY / rps.c
Created May 10, 2024 21:13
A minimalistic implementation of the good old game "Rock, Paper, Scissors" in C
/* rps.c
*
* Copyright (c) 2024 RandomGuyWithoutY
*
* Description:
* A minimalistic implementation of the good old
* game "Rock, Paper, Scissors" in C.
*
* Should compile with about anything, including your toaster.
*