Skip to content

Instantly share code, notes, and snippets.

View Bobtron's full-sized avatar
🍌
ooh eee ooh ah ah

Justin Bobtron

🍌
ooh eee ooh ah ah
  • Amazon
View GitHub Profile
@reynaldichernando
reynaldichernando / cors-proxies.md
Last active September 25, 2025 08:19
CORS Proxies (Updated 2025)

CORS Proxies (Updated 2025)

Free

Proxy (A-Z) Methods Status Code Override Headers Exposed Headers Follow Redirect Timeout Size Limit Rate Limit
allorigins βœ… All ❌ (Always 200) ❌ ❌ βœ… ❔ ❔ 20/min
cloudflare-cors-anywhere βœ… All βœ… Mirror βœ… βœ… ❌ ❔ ❔ ❔
codetabs ❌ (only GET) ❌ (Always 200) ❌ ❌ βœ… ❔ 625KB 5/sec
cors-anywhere (heroku) βœ… All βœ… Mirror ❔ βœ… βœ… (max. 5) ❔ ❔ 50/hour
@hoishing
hoishing / README.md
Created July 24, 2024 12:05
disable Gatekeeper with configuration profiles in macOS 15

Disable Gatekeeper with Configuration Profiles

Starting from macOS 15, sudo spctl --master-disable is no longer supported to disable Gatekeeper.

We need to disbale it with Configuration Profiles.

How

  • Create a new configuration profile, an XML file with .mobileconfig extension, refer the sample file in this gist
  • replace the UUID with your own, you can use uuidgen in terminal to generate a new one
@jaylattice
jaylattice / mine-monero.md
Last active September 25, 2025 07:34
HOW TO MINE MONERO SOLO OR IN A POOL - GOOD FOR CPUs, EASY TO SET UP.

Preface

After reading this guide, you should be able to mine Monero as a solo node using your own computer, either with the default daemon or with dedicated mining software like XMRig. You will learn how to participate in a free, decentralized mining pool which pays out XMR cryptocurrency to your wallet continouously. Monero is widely considered the most elegant cryptocurrency. The IRS is offering a bounty between $625k and $1.25m to anyone who can crack its privacy-conserving algorithm. Monero is effectively a digitial implementation of cash. If Alice gives Bob cash in her own home, nobody in the world knows about it. Monero β€” for now β€” conserves this property. Bitcoin, contrary to popular belief, is not digital cash. If Alice sends Bob some Bitcoin, the entire world knows about it β€” a wet dream for the IRS.

*These instructions are for Windo

@sjrogers
sjrogers / calibre_last_accessed.md
Last active February 8, 2025 02:02
How To Add "Last Accessed" Column In Calibre

How To Add "Last Accessed" Column In Calibre

Calibre does not keep track of the last time you opened a book, but your filesystem does. Or at least, it kinda does. Thankfully you can use Calibre template functions and custom columns to make use of this information.

Step 1: Create Template Function

  1. Go to Preferences -> Advanced -> Template Functions
  2. Select the Function field at the bottom left of the window
@vasanthk
vasanthk / System Design.md
Last active September 29, 2025 11:28
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@AbhijeetMajumdar
AbhijeetMajumdar / quadtree.java
Last active April 1, 2025 03:53
Quadtree Java implementation
A quadtree is a tree data structure in which each internal node has exactly four children. Quadtrees are most often used to
partition a two-dimensional space by recursively subdividing it into four quadrants or regions. The regions may be square or
rectangular, or may have arbitrary shapes.
More on
https://en.wikipedia.org/wiki/Quadtree
Thanks to Jim for such an excellent visual representation on http://jimkang.com/quadtreevis/