Skip to content

Instantly share code, notes, and snippets.

View GoombaProgrammer's full-sized avatar

Goomba GoombaProgrammer

  • Novixx Systems
  • The Netherlands
  • 23:38 (UTC +02:00)
View GitHub Profile
@nir9
nir9 / snake.asm
Created March 2, 2024 19:01
Boot Sector Snake Game in Assembly (MBR Game)
org 0x7c00
video = 0x10
set_cursor_pos = 0x02
write_char = 0x0a
system_services = 0x15
wait_service = 0x86
keyboard_int = 0x16
@GoldenretriverYT
GoldenretriverYT / chatgpt.html
Last active December 5, 2022 07:44
A full idle game generated by ChatGPT
<!DOCTYPE html>
<html>
<head>
<title>Candy Factory</title>
<style>
/* Add some basic styling for the game */
body {
font-family: sans-serif;
}
@MidSpike
MidSpike / readme.md
Last active February 5, 2024 18:09
CVE-2022-23812 | RIAEvangelist/node-ipc is malware / protest-ware
@yamanahlawat
yamanahlawat / replacers.py
Created January 25, 2017 12:17
Using Regular Expressions to expand contractions of a Word
import re
replacement_patterns = [
(r'won\'t', 'will not'),
(r'can\'t', 'cannot'),
(r'i\'m', 'i am'),
(r'ain\'t', 'is not'),
(r'(\w+)\'ll', '\g<1> will'),
(r'(\w+)n\'t', '\g<1> not'),
(r'(\w+)\'ve', '\g<1> have'),
@define-private-public
define-private-public / HttpServer.cs
Last active April 9, 2024 08:38
A Simple HTTP server in C#
// Filename: HttpServer.cs
// Author: Benjamin N. Summerton <define-private-public>
// License: Unlicense (http://unlicense.org/)
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Threading.Tasks;