Skip to content

Instantly share code, notes, and snippets.

#EXTM3U
#EXTINF:-1,Israel: ch 23 החינוכית
https://kanlivep2event-i.akamaihd.net/hls/live/747600/747600/source1_2.5k/chunklist.m3u8
#EXTINF:-1,Israel: Kabbalah for the People (Israel)
http://edge1.il.kab.tv/rtplive/tv66-heb-high.stream/playlist.m3u8
#EXTINF:-1,Israel: Kan 11
https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/source1_2.5k/chunklist.m3u8
#EXTINF:-1,Israel: Music 24
https://keshethlslive-lh.akamaihd.net/i/24live_1@195271/index_1400_av-b.m3u8
#EXTINF:-1,Israel: Sport אתר ספורט 5
@breadbored
breadbored / gist:6dd26c7e2a201c8fae2282d82c5d1ac4
Last active September 5, 2026 07:29
Tutorial: Remapping the 8BitDo 108-key Keyboard for MacOS and Karabiner

Tutorial: Remapping the 8BitDo 108-key Keyboard for MacOS and Karabiner

Preface

I was frustrated with how terrible the 8BitDo Ultimate V2 Software is for the 87-key and 108-key keyboards specifically. For controllers, it's perfectly fine. However, it feels like the developers of the software have never seen the keyboards in real life, and have never actually used the software themselves. I know that's not true, which makes it all the more baffling on how bad the software is.

The worst parts for me:

  • The keyboard shortcuts are all Windows specific, and it is not labeled on the box that this is the case. They cannot be changed, as they are embedded in the firmware that way. Your 108-key keyboard essentially turns into a 88-key keyboard with a spare 20 useless keys. This is absolutely dumb.
  • They don't even support the 108-key Keyboard on MacOS AT-ALL. They didn't even bother to add support to the Mac version before they released the keyboard.
@sophiawisdom
sophiawisdom / index.html
Last active September 5, 2026 07:16
Screenshot hoster. Download these two files, put your screenshots in the same directory, run lister.py, and you have a fun website that shows all your screenshots.
<html>
<title> vibe images <!-- change this to whatever you want! --> </title>
<!-- Add any text here if you so desire; the images won't be drawn over it. -->
<div id="container">
</div>
<script>
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
@GusGA
GusGA / pt_guide.md
Last active September 5, 2026 07:10
Guía de configuración de equipos en packet tracer

Script de comandos de packet tracer

Equipo Switch

Entrar en modo EXEC privilegiado

Ejecutar el comando enable

Switch> enable
@jhol-byte
jhol-byte / Ikea_bilresa_scroll_wheel.yaml
Last active September 5, 2026 06:47
Home Assistent Blueprint "Ikea_bilresa_scroll_wheel"
blueprint:
name: Ikea_bilresa_scroll_wheel
description: |
Blueprint for Ikea Bilresa Matter (button and scroll wheel for 3 different channels)
Version: 2026-04-06
Info: https://community.home-assistant.io/t/ikea-bilresa-scroll-wheel-blueprint-matter/965365
domain: automation
# input selectors
input:
@fnky
fnky / ANSI.md
Last active September 5, 2026 08:05
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
activity.musical.ly
activity.tiktok.com
ads.tiktok.com
analytics.tiktok.com
api15-h2-eagle.tiktokv.com
api15-h2.tiktokv.com
api16-core-c-alisg.tiktokv.com
api16-core-c-useast1a.musical.ly
api16-core-c-useast2a.musical.ly
api16-core-c-useast2a.tiktokv.com

25 Redis Interview Questions (ANSWERED) For Web Developers

Redis offers a great deal of support for developing efficient caching mechanisms. It takes only a couple of minutes to implement a cache mechanism and get it working with any application. Follow along to learn 25 most common Redis Interview Questions and Answers for your next senior web developer interview.

Q1: What is Redis?

Topic: Redis
Difficulty: ⭐

Redis, which stands for Remote Dictionary Server, is a fast, open-source, in-memory key-value data store for use as a database, cache, message broker, and queue.

You can run atomic operations, like appending to a string; incrementing the value in a hash; pushing an element to a list; computing set intersection, union and difference; or getting the member with highest ranking in a sorted set.

@AD1993
AD1993 / RestCalls
Created January 5, 2018 09:16
BOMBitUP - OTP apis calls
import android.util.Log;
import org.json.JSONObject;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.Headers;
import okhttp3.MediaType;

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.