Skip to content

Instantly share code, notes, and snippets.

@riperiperi
riperiperi / Legacy Collection.md
Last active February 18, 2025 22:42
The Sims Legacy Collection Technical Overview

Patches

I've updated the doc to reflect fixes in the following patches:

The Sims Legacy Collection Technical Overview

The Sims is a life simulation game that was written for Windows 9x but later evolved to properly support Windows XP. The years have not been kind... to the game engine, not the game itself. It's still great, it just doesn't really work anymore.

@zuphilip
zuphilip / zotero-wikidata-lookup.js
Last active February 18, 2025 22:40
Zotero Script for Wikidata Lookup
// Zotero script look up selected items in Wikidata and
// check whether the DOI can be found there. If results
// are found then the QIDs are saved in the corresponding
// items in the extra field. Some warnings are given for the
// other cases; thus you may want to watch the Zotero error
// console as well during execution of the script. [CC0]
var items = Zotero.getActiveZoteroPane().getSelectedItems();
var map = [];
@DBC-Juanma
DBC-Juanma / example_prd.md
Created February 12, 2025 04:27
PRD Template for LLM + Cursor

B2B Interior Design Showroom Platform

Timeframe: September - October 2024
Tech Stack:

  • Frontend: Next.js 15, Tailwind CSS, shadcn
  • Backend: Supabase
  • Hosting: Vercel
  • Utilities: Supabase Auth, Vercel Analytics

Phase 1 - Core Landing Page Features (2-3 weeks)

@Sherex
Sherex / README.md
Last active February 18, 2025 22:34
A script for the Wireguard config options PostUp/PostDown entries. It will allow peers to connect to the Wireguard interface and do IP forwarding (port forwarding will be added later)

IfScript

Hi, I made this for my use-case, but feel free to use it :)
This is currently only handling the NAT side of things, not PAT!
The from-to port options is just a placeholder it will use the first port specified.

route_port 80 80 tcp $vpn_ip $server_ip

How to use?

Download and make executable

@fmasanori
fmasanori / Oficina MongoDB e Python FISL
Last active February 18, 2025 22:31
Oficina MongoDB e Python FISL
Oficina MongoDB e Python - FISL
Resumo https://university.mongodb.com/courses/M220P/about
Install python 3.x (provavelmente vc já tem, 3.7 no mínimo)
https://www.python.org/downloads/
para testar python -V
Install mongoDB última versão
https://www.mongodb.org/downloads
criar diretório \data\db com as permissões necessárias para testar bin\mongod (servidor)
@kupietools
kupietools / Docker Desktop v 4.0.0 thru 4.22.1 direct download links
Last active February 18, 2025 22:29
List of Direct Download links for Docker Desktop from version 4.0.0 released 2021-08-31 thru 4.22.1 released 2023-08-24, as archived on archive.org
@TahaTesser
TahaTesser / Flutter Network.md
Last active February 18, 2025 22:28
A collection of active Flutter YouTube content creators, newsletters and blogs, personalities, and platforms. If you've suggestions for active content creators, please comment below.

How to get almost ALL of the legacy iOS & iPadOS wallpapers released as stock wallpapers.

WARNING: No support will be given in the comments. If you are having any issues, go to the troubleshooting section.


What wallpapers will be included in this backup?

  • Every wallpaper from the iPhone 11 series and up.
  • Every wallpaper from the iPhone SE 2nd and 3rd generation.
  • Every wallpaper from iOS 13 and later.
  • Every wallpaper from the iPad Air 4 and up.

📱Valet

A Decentralized Automated Testing Network

🙈 tl;dr:

Valet is a decentralized test automation network where developers run tests on real devices (iOS or Android), and device owners get paid for executing them. Using Nostr for discovery, Lightning for payments, and Raspberry Pi nodes for execution, it’s less expensive, more open, and more scalable than traditional test clouds. Built by Jason Huggins (Selenium, Appium, Sauce Labs), Valet is an experiment in P2P testing at scale. 🚀

@masonwolters
masonwolters / build-and-upload-simulator-binary.sh
Last active February 18, 2025 22:14
React native iOS with pre-built binaries
#
# This script is run in CI on master commits. It builds a debug binary
# for the iOS simulator and uploads it to the mobile-binaries repo.
#
# Then, when developer run `yarn ios` to develop locally, instead of
# having to build all of the native code, we just download the pre-built
# binary and install it on the simulator.
#
REPO_URL="{YOUR_GIT_URL}"