Skip to content

Instantly share code, notes, and snippets.

View Taik's full-sized avatar
🌎

Thinh Nguyen Taik

🌎
  • Airbnb
  • Working remotely.
View GitHub Profile
@elyase
elyase / Makefile
Last active November 28, 2025 13:47
Unified Log Streaming Setup - Stream frontend, backend, and browser logs in one terminal
.PHONY: help dev tail-log clean install check build
# Default target
help:
@echo "Available targets:"
@echo " make dev - Start all development processes (frontend, backend, etc.)"
@echo " make tail-log - Follow the dev.log file (no colors)"
@echo " make clean - Remove logs and PID files"
@echo " make install - Install dependencies for all services"
@echo " make check - Run linters and type checks"
@b0gdanw
b0gdanw / Disable-Tahoe-Bloatware.sh
Last active November 12, 2025 09:58
Disable Tahoe Bloatware
#!/bin/zsh
# WARNING! The script is meant to show how and what can be disabled. Don’t use it as it is, adapt it to your needs.
# Credit: Original idea and script disable.sh by pwnsdx https://gist.github.com/pwnsdx/d87b034c4c0210b988040ad2f85a68d3
# Disabling unwanted services on macOS Big Sur (11), macOS Monterey (12), macOS Ventura (13), macOS Sonoma (14), macOS Sequoia (15) and macOS Tahoe (26)
# Disabling SIP is required ("csrutil disable" from Terminal in Recovery)
# Modifications are written in /private/var/db/com.apple.xpc.launchd/ disabled.plist, disabled.501.plist
# To revert, delete /private/var/db/com.apple.xpc.launchd/ disabled.plist and disabled.501.plist and reboot. From Terminal : sudo rm -r /private/var/db/com.apple.xpc.launchd/*
# user
@aaronvg
aaronvg / baml-prompt.txt
Last active September 11, 2024 05:50
BAML Cursor Prompt
Generate a prompt using BAML.
The BAML programming language is used to write LLM prompts with certain inputs and outputs.
The syntax looks like this:
<BAML Example>
```baml
class ExtractedResume {
name string
@Fanman03
Fanman03 / UAP-Guide.md
Last active December 3, 2025 19:02
UniFi AP Buyers Guide

UniFi AP Buyers Guide

(updated May 2025)

The APs in this list are ordered from highest to lowest performance. However, unless you have a very high number of devices you likely do NOT need to buy the most expensive, highest performance AP. You can also check Ebay for deals, especially on older equipment.

All APs in this list support both wired backhaul and mesh modes. However, wired connections are strongly recommended for better performance and reliability.

Number of spatial streams are listed in order of 2.4GHz, 5GHz, 6GHz.

Good Choices:

@souleiman
souleiman / Fidelity2FA.md
Created June 3, 2021 17:47
[Guide] How to setup 2FA on Fidelity without Symantec VIP Access

Before I start, I am going to mention that Fidelity does support a 2FA by using Symantec VIP Access to accomplish this. You can follow the instructions here https://www.fidelity.com/security/soft-tokens/overview. This requires you to install an app from Symantec VIP on your computer/phone.

With that out of the way, I am personally not a fan of using Symantec products, nor interested in install a separate third party app to accomplish this when most of us, including myself use some form of OTP/2FA app like Google Authenticator, Authy, 1Password, or what have you.

If you share the same sentiment as I, don't worry I have good news.

Symantec VIP Access actually uses a completely open standard called Time-based One-time Password Algorithm for generating the 6-digit codes that it outputs. The only non-standard part is the provisioning protocol used to create a new token.

In other words, this means that we can use OTP on our favorite app. The question