Skip to content

Instantly share code, notes, and snippets.

View CarterSnich's full-sized avatar
🔀
random

Snich CarterSnich

🔀
random
View GitHub Profile
@skoqaq
skoqaq / build4123.sublime4.key
Last active September 21, 2024 10:12
Sublime Text 4 License Key
—– BEGIN LICENSE —–
Mifeng User
Single User License
EA7E-1184812
C0DAA9CD 6BE825B5 FF935692 1750523A
EDF59D3F A3BD6C96 F8D33866 3F1CCCEA
1C25BE4D 25B1C4CC 5110C20E 5246CC42
D232C83B C99CCC42 0E32890C B6CBF018
B1D4C178 2F9DDB16 ABAA74E5 95304BEF
9D0CCFA9 8AF8F8E2 1E0A955E 4771A576
@JerryLokjianming
JerryLokjianming / Crack Sublime Text Windows and Linux.md
Last active September 20, 2024 17:42
Crack Sublime Text 3.2.2 Build 3211 and Sublime Text 4 Alpha 4098 with Hex

How to Crack Sublime Text 3.2.2 Build 3211 with Hex Editor (Windows | Without License) ↓

  1. Download & Install Sublime Text 3.2.2 Build 3211
  2. Visit https://hexed.it/
  3. Open file select sublime_text.exe
  4. Offset 0x8545: Original 84 -> 85
  5. Offset 0x08FF19: Original 75 -> EB
  6. Offset 0x1932C7: Original 75 -> 74 (remove UNREGISTERED in title bar, so no need to use a license)
@bmaupin
bmaupin / free-database-hosting.md
Last active September 21, 2024 10:36
Free database hosting
@IT102Gists
IT102Gists / isbn_lookup.py
Last active September 24, 2023 16:18
Python CodeAlong: use the Google Books API to retrieve and display information about a book.
# Python's built-in module for encoding and decoding JSON data
import json
# Python's built-in module for opening and reading URLs
from urllib.request import urlopen
# sample ISBN for testing: 1593276036
while True:
# create getting started variables
@bartholomej
bartholomej / css-media-queries-cheat-sheet.css
Last active September 6, 2024 04:53
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@ksafranski
ksafranski / Common-Currency.json
Last active August 31, 2024 05:55
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},