Skip to content

Instantly share code, notes, and snippets.

View prochazkaml's full-sized avatar

Michal Procházka prochazkaml

View GitHub Profile
@prochazkaml
prochazkaml / opensearipper.js
Created January 14, 2024 15:46
OpenSea image ripper
/*
* A handy script to troll your crypto-obsessed friends.
*
* Just navigate to any collection on OpenSea, scroll around a bit so that
* the images are allowed to load, pull up the developer tools,
* paste this code into the console and it will generate a Bash script which will
* download all the expensive .PNGs in the highest quality available.
*
* The output filenames will be in the following format: "<name> (<price>).png"
*
@DNA64
DNA64 / gnw_flash_menu.sh
Last active February 4, 2023 09:01
Command line tool to patch game-and-watch-flashloader and game-and-watch-retro-go to support 32bit addressing.
#!/bin/bash
# THIS SCRIPT IS NO LONGER REQUIRED. PLEASE DO NOT USE IT.
# This script will modify your game-and-watch-flashloader and game-and-watch-retro-go installations
# to allow flashing of flash memory chips exceeding 128Mb (16MB).
# Useage: Place this file in the same directory as both the 'game-and-watch-flashloader' and
# 'game-and-watch-retro-go folders', then run the script and follow the instructions.
# After patching, make sure to rebuild 'game-and-watch-flashloader'.
author title
Lionel Flandrin
Playstation Emulation Guide

Introduction

This is my attempt at documenting my implementation of a PlayStation

@laobubu
laobubu / ABOUT.md
Last active July 23, 2025 16:33
A very simple HTTP server in C, for Unix, using fork()

Pico HTTP Server in C

This is a very simple HTTP server for Unix, using fork(). It's very easy to use

How to use

  1. include header httpd.h
  2. write your route method, handling requests.
  3. call serve_forever("12913") to start serving on port 12913