Skip to content

Instantly share code, notes, and snippets.

View JadenV15's full-sized avatar

Jaden Chuah JadenV15

View GitHub Profile
@timvisee
timvisee / falsehoods-programming-time-list.md
Last active August 11, 2026 06:09
Falsehoods programmers believe about time, in a single list

Falsehoods programmers believe about time

This is a compiled list of falsehoods programmers tend to believe about working with time.

Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.

Falsehoods

  • There are always 24 hours in a day.
  • February is always 28 days long.
  • Any 24-hour period will always begin and end in the same day (or week, or month).
@kaimi-
kaimi- / gist:6b3c99538dce9e3d29ad647b325007c1
Last active August 10, 2026 08:57
Possible IP Bypass HTTP Headers
CACHE_INFO: 127.0.0.1
CF_CONNECTING_IP: 127.0.0.1
CF-Connecting-IP: 127.0.0.1
CLIENT_IP: 127.0.0.1
Client-IP: 127.0.0.1
COMING_FROM: 127.0.0.1
CONNECT_VIA_IP: 127.0.0.1
FORWARD_FOR: 127.0.0.1
FORWARD-FOR: 127.0.0.1
FORWARDED_FOR_IP: 127.0.0.1
@Asadullah-Dal17
Asadullah-Dal17 / mediapipe_landmarks_detection.py
Last active June 2, 2026 04:50
Mediapipe landmarks detection for each individual part, like an face-oval, eyes, lips, and Eyebrows
import cv2 as cv
import mediapipe as mp
import time
from numpy import greater
import utils
# variables
frame_counter =0