Skip to content

Instantly share code, notes, and snippets.

@dreamsparkx
dreamsparkx / More-links.txt
Last active April 4, 2025 09:15
Install Apache, PHP, MySQL and phpMyAdmin on Mac OS X
@traumverloren
traumverloren / emulator-setup-for-dev-domains.md
Last active April 4, 2025 09:14
Install Android Studio Emulator for use with aliased domain

How to change a hosts-file on Android Studio emulated phone

Pre-steps:

  1. Install Android Studio
  2. Add android to PATH in your .bash_profile or .zshrc file:
  • export ANDROID_SDK=$HOME/Library/Android/sdk
  • export PATH=$ANDROID_SDK/emulator:$ANDROID_SDK/tools:$PATH
  • export PATH=${PATH}:$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools
@casebeer
casebeer / thermal-camera-ffmpeg.sh
Last active April 4, 2025 09:14
Script to read data from Tooltop T7 a.k.a. Infiray P2 Pro thermal camera using ffmpeg
#!/bin/bash
# https://www.eevblog.com/forum/thermal-imaging/infiray-and-their-p2-pro-discussion/200/
# https://superuser.com/questions/1009969/how-to-extract-a-frame-out-of-a-video-using-ffmpeg
# https://stackoverflow.com/questions/37960828/webcam-streaming-from-mac-using-ffmpeg
#
# Selected pixel format (yuv420p) is not supported by the input device.
#[avfoundation @ 0x7f961cd08b40] Supported pixel formats:
#[avfoundation @ 0x7f961cd08b40] uyvy422
#[avfoundation @ 0x7f961cd08b40] yuyv422
@JoakimThorsen
JoakimThorsen / TMC links.md
Last active April 4, 2025 09:14
An attempt at collecting TMC-related resources, websites, mods, servers, and other links.
@pesterhazy
pesterhazy / building-sync-systems.md
Last active April 4, 2025 09:13
Building an offline realtime sync engine

So you want to write a sync system for a web app with offline and realtime support? Good luck. You might find the following resources useful.

Overview articles

@Brostoffed
Brostoffed / [Minified] - ChatGPT-TOC.js
Last active April 4, 2025 09:03
Add table of contents to ChatGPT
javascript:(function(){"use strict";if(document.getElementById("toc-panel")||document.getElementById("toc-handle"))return;var e=document.createElement("style");e.textContent="#toc-panel{position:fixed;top:0;right:0;width:280px;height:100%;background:#fafafa;box-shadow:-4px 0 8px rgba(0,0,0,.1);font-family:sans-serif;font-size:.8rem;border-left:1px solid #ddd;display:flex;flex-direction:column;z-index:9998;transform:translateX(0);transition:transform .3s ease}#toc-panel.collapsed{transform:translateX(280px)}#toc-header{padding:6px 10px;background:#ddd;border-bottom:1px solid #ccc;font-weight:bold;flex-shrink:0}#toc-list{list-style:none;flex:1;overflow-y:auto;margin:0;padding:6px}#toc-list li{padding:4px;cursor:pointer;border-radius:3px;transition:background-color .2s}#toc-list li:hover{background:#f0f0f0}#toc-list ul{margin-left:16px;padding:0}#toc-list ul li::before{content:\"\"}#toc-handle{position:fixed;top:50%;right:0;transform:translateY(-50%);width:30px;height:80px;background:#ccc;display:flex;align-item
@allanger
allanger / Deploy_Kubernetes.md
Last active April 4, 2025 09:00
Deploy Kubernetes with Ansible

Deploy Kubernetes with Ansible

Requirements

We will need at least two nodes, Ansible, and a kubectl. That's enough to begin.

My ansible role: https://github.com/allanger/kubeadm-ansible-role

I am using Ubuntu 21.04 on all my servers so my Ansible role is written for Debian-based distros. (I will be happy if anybody adds support for other distros)

Preparing system

@ZacharyPatten
ZacharyPatten / ConsoleInput.md
Last active April 4, 2025 09:00
Beginner's Guide To Console Input In C#

Beginner's Guide To Console Input In C#

Note: I recommend reading this gist in order because Examples 1-6 build on each other.

@oanhnn
oanhnn / using-multiple-github-accounts-with-ssh-keys.md
Last active April 4, 2025 08:55
Using multiple github accounts with ssh keys

Problem

I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).

Solution

Use ssh keys and define host aliases in ssh config file (each alias for an account).

How to?

  1. Generate ssh key pairs for accounts and add them to GitHub accounts.
@osamaqarem
osamaqarem / nginx_macos.md
Last active April 4, 2025 08:54
Nginx on MacOS

Install nginx (Homebrew)

brew install nginx

Configuration file for nginx will be at /usr/local/etc/nginx/nginx.conf

Web apps can be stored at /usr/local/var/www

Commands

Start: