Skip to content

Instantly share code, notes, and snippets.

View mrdev023's full-sized avatar
🎯
Focusing

Florian Richer mrdev023

🎯
Focusing
View GitHub Profile
@mrdev023
mrdev023 / shopping_cart.md
Created March 22, 2023 11:46 — forked from anaclair/shopping_cart.md
Implementing Redis Shopping Cart

What is Redis?
Redis is an open source, advanced in-memory key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

######1. If you're running OS X, install redis in terminal using Homebrew : brew install redis

######2. Add the redis and hiredis gems to the project's Gemfile (remember to bundle install after you do this) :

@mrdev023
mrdev023 / MarIO.lua
Created September 15, 2023 19:19 — forked from d12frosted/MarIO.lua
MarI/O by SethBling
-- MarI/O by SethBling
-- Feel free to use this code, but please do not redistribute it.
-- Intended for use with the BizHawk emulator and Super Mario World or Super Mario Bros. ROM.
if gameinfo.getromname() == "Super Mario World (USA)" then
Filename = "DP1.state"
ButtonNames = {
"A",
"B",
"X",