Skip to content

Instantly share code, notes, and snippets.

@EmilZapata
EmilZapata / bash-scripting.md
Created February 6, 2025 20:20
Bash and Scripting roadma ROADMAP

Ruta de Aprendizaje en Bash y Shell Scripting

Esta ruta está diseñada para aprender desde cero hasta alcanzar un nivel de maestría en Bash y Shell Scripting. Se divide en 4 niveles, cada uno con objetivos, recursos didácticos, ejercicios prácticos y recomendaciones para no dejar huecos en el aprendizaje.


Nivel 1: Principiante

Objetivos

  • Familiarizarte con la terminal de Linux y comandos básicos.
@SMUsamaShah
SMUsamaShah / list_of_p2p_file_sharing.md
Last active September 7, 2026 11:12
List of P2P file sharing tools

Browser Based

  1. Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
    NOTE: Probably the only browser tool that streams file directly. Should transfer file of any size (hundreds of GBs etc)
  2. Localsend https://web.localsend.org/
  3. FilePizza https://file.pizza/
  4. PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
    1. ShareDrop sharedrop.io https://github.com/szimek/sharedrop (SOLD, not recommended, use PairDrop)
    2. SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop (SOLD, not recommended, use PairDrop)
  5. ToffeeShare https://toffeeshare.com/
@yashdev9274
yashdev9274 / offline-ai-model.md
Created August 19, 2026 12:56
Building a fully offline, portable AI assistant that runs from a USB pendrive on an Apple M4 Mac mini (16 GB RAM)

Offline AI from a USB Drive (macOS / Apple Silicon)

Abstract

Large language models are increasingly delivered as network-dependent services, yet their underlying runtimes (llama.cpp, vLLM, and derivatives) are trivially portable. This work addresses the gap between portable and deployable: constructing a fully offline, zero-install, GPU-accelerated LLM environment that boots from a removable USB drive on an Apple M4 Mac mini with 16 GB of unified memory. We analyze the llamafile distribution model (Cosmopolitan Libc fat binaries, mmap'd weight loading, runtime GPU compilation), the GGUF quantization ecosystem, and the memory/performance physics of Apple Silicon unified memory, and derive a set of falsifiable hypotheses (H1–H5) that an empirical benchmark phase will confirm or refute. We further identify and correct seven defects in a prior community guide — most critically a Windows-only binary selection, an overly conservative context window, and a missing first-run compiler dependency that silent

@gugadev
gugadev / install-android-sdk-windows.md
Last active September 7, 2026 11:08
Guide: Install Android SDK on Windows (without AndroidStudio)

Android SDK setup - Windows guide

If you are a React Native, NativeScript, Flutter or Ionic developer maybe you don't want to install the entire Android Studio just to have your environment ready. If this is your case, this guide will help you to setup your minimal Android SDK environment in Windows.


@carefree-ladka
carefree-ladka / Google 2026 Interview Preparation - Complete Weekly Roadmap.mdx
Created December 31, 2025 15:09
Google 2026 Interview Preparation - Complete Weekly Roadmap

Google 2026 Interview Preparation - Complete Weekly Roadmap

image

Target: Crack Google L3/L4/L5 by 2026 Duration: 24 weeks (6 months intensive preparation) Daily Time Commitment: 3-4 hours minimum


@notnotrobby
notnotrobby / cgp.md
Last active September 7, 2026 11:00
List of free resources to study computer graphics programming.
@JohnnyWalkerDigital
JohnnyWalkerDigital / conventional-commits.md
Last active September 7, 2026 10:56
A flow diagram showing which Conventional Commits prefix to use
flowchart TD
    A([Start]) --> B{Did you fix a bug?}
    B -->|Yes| C([ **fix** ])
    B -->|No| D{Did you change functionality or affect the UI?}

    D -->|Yes| E([**feat**])
    D -->|No| F{Did you add or change tests?}

 F -->|Yes| G([**test**])
@DanielLemky
DanielLemky / input.lua
Last active September 7, 2026 10:56
Mac-like trackpad tuning for Omarchy on an Apple Silicon MacBook Pro
-- Add these settings to ~/.config/hypr/input.lua on Omarchy.
hl.config({
input = {
touchpad = {
natural_scroll = true,
tap_to_click = true,
disable_while_typing = true,
tap_and_drag = false,
drag_lock = false,
clickfinger_behavior = true,
@kksudo
kksudo / vpn-instructions.md
Last active September 7, 2026 10:55
Настраиваем подключение к впн Устанавливайте только Stable версии приложений!

Настраиваем подключение к VPN

Используйте только Stable-версии приложений!

Кратко

Установите приложение для вашего устройства, импортируйте ключ (или отсканируйте QR-код) и включите подключение. Ключ или ссылку на подписку вы получаете от администратора — сами приложения лишь подключаются к серверу по этому ключу.

Для кого эта страница: шаги рассчитаны на человека без опыта настройки сетей. Непонятные слова по ходу текста поясняются.


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.