Skip to content

Instantly share code, notes, and snippets.

View marvinkome's full-sized avatar
🧪
Cooking

Marvin Kome marvinkome

🧪
Cooking
View GitHub Profile
@sagivo
sagivo / gist:3a4b2f2c7ac6e1b5267c2f1f59ac6c6b
Last active August 14, 2026 04:02
webRTC stun / turn server list
to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice
stun:
stun.l.google.com:19302,
stun1.l.google.com:19302,
stun2.l.google.com:19302,
stun3.l.google.com:19302,
stun4.l.google.com:19302,
stun.ekiga.net,
stun.ideasip.com,
@tkersey
tkersey / .2026.md
Last active August 23, 2026 00:09
For future reference but maybe not.

Quick access

2026

August

  • The Server Is Yours

    A spare iPhone or iPad becomes a network drive for your home. It shows up in the macOS Finder, the iOS Files app and Windows Explorer, and it takes Time Machine backups, with no account anywhere but the device. When you opt in, it also serves a real-HTTPS website and an S3 API to the wider internet. It uses little power, there is no cloud in the middle and no monthly fee.

@zacwest
zacwest / ios-font-sizes.swift
Last active July 20, 2026 07:45
iOS default font sizes - also available on https://www.iosfontsizes.com
let styles: [UIFont.TextStyle] = [
// iOS 17
.extraLargeTitle, .extraLargeTitle2,
// iOS 11
.largeTitle,
// iOS 9
.title1, .title2, .title3, .callout,
// iOS 7
.headline, .subheadline, .body, .footnote, .caption1, .caption2,
]
@derhuerst
derhuerst / _.md
Last active February 17, 2026 12:37
List of HAFAS API Endpoints
@afternoon
afternoon / rename_js_files.sh
Created February 15, 2014 18:04
Rename .js files to .ts
find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \;