Skip to content

Instantly share code, notes, and snippets.

View lc-at's full-sized avatar
🧀
eating cheese

Faiz Jazadi lc-at

🧀
eating cheese
View GitHub Profile
@lc-at
lc-at / jingle-family-mart.txt
Last active November 19, 2025 13:11
Lirik Jingle Family Mart Lengkap 100%
// Transcribed manually from
// https://www.youtube.com/watch?v=GpUhmUVvD9Y
// Enjoy ;)
// UPDATE: 2025-02-13: They also have the lyrics here https://x.com/FamilyMart_ID/status/1752210891142291560
// UPDATE: 2025-11-19: I think I found the "official" lyrics: https://www.linkedin.com/posts/familymart-indonesia_famima-activity-6716558644214931456-tmTg (also, it's "we one", not "we are")
Hai kawan-kawan
Mari bekerja membangun bersama FamilyMart
Suka dan duka ada di FamilyMart
Semua keluarga kita
// SPDX-License-Identifier: GPL-2.0
/*
* @author Ammar Faizi <ammarfaizi2@gmail.com> https://www.facebook.com/ammarfaizi2
* @license GPL-2.0
* @package tgvisd::Main::Preload
*
* Copyright (C) 2021 Ammar Faizi <ammarfaizi2@gmail.com>
*/
#if defined(__linux__)
@lc-at
lc-at / mux.py
Created January 7, 2020 11:29
pymux: run multiple services in one port (connection multiplexer)
import select
import socket
import socketserver
__author__ = 'loncat <me@lcat.dev>'
services = [
{
'name': 'ssh',
'address': ('127.0.0.1', 22),
@johnjohnsp1
johnjohnsp1 / MiTM-SSL.md
Created February 13, 2018 17:46 — forked from ohpe/MiTM-SSL.md
Simple SSL MiMT using stunnel

Simple SSL MiTM

A quick and dirty SSL MiTM using stunnel

  • Generate a SSL certificate .. or use Let's Encrypt (for the green lock)
openssl req -batch -new -x509 -days 365 -nodes -out mitm.pem -keyout mitm.pem
  • Run stunnel