Shaarli NicolasMD !
Tag cloud
Picture wall
Daily
Plugins
  • ► Play Videos
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 4 / 174
Build Your First AI Agent in 10 Minutes (or Less) https://pmbanugo.me/blog/build-your-first-ai-agent-in-typescript
03/09/2025 20:15:49
thumbnail
blog ai
Note: Docker efimero debian /shaare/Rx0gnw
03/09/2025 18:47:31

bash$ docker run --rm -it debian:stable-slim bash

que hace:
• --rm: elimina el contenedor al salir.
• -it: modo interactivo con TTY.
• bash: abre la shell (podés usar sh si preferís).

Siempre trae la última imagen:

docker run --rm -it --pull=always debian:stable-slim bash

Apple Silicon, forzar arquitectura:

docker run --rm -it --platform=linux/arm64/v8 debian:stable-slim bash

Montar tu directorio actual dentro del contenedor (para probar cosas sobre tus archivos):

docker run --rm -it -v "$PWD":/work -w /work debian:stable-slim bash

Aún más “efímero/limpio” (sin escribir al FS del contenedor):

docker run --rm -it \
  --read-only \
  --tmpfs /tmp \
  --tmpfs /run \
  -v "$PWD":/work:ro -w /work \
  debian:stable-slim bash

Entrar como usuario no-root (simple):

docker run --rm -it -u $(id -u):$(id -g) -v "$PWD":/work -w /work debian:stable-slim bash

Instalar cositas:

apt-get update && apt-get install -y curl git vim htop zsh && rm -rf /var/lib/apt/lists/*

Con nombre (por si querés docker exec desde otra terminal mientras está vivo):

docker run --rm -it --name debtest debian:stable-slim bash

en otra terminal:

docker exec -it debtest bash
docker debian
Deploy and Host Full-Stack Apps and Databases — Python, Node.js, Go | Seenode https://seenode.com/
03/09/2025 05:19:11
thumbnail
server devops
How to Build Micro Frontends in React with Vite and Module Federation https://www.freecodecamp.org/news/how-to-build-micro-frontends-in-react-with-vite-and-module-federation/
31/08/2025 02:49:09
thumbnail
frontend react vite
https://github.com/louislam/uptime-kuma https://github.com/louislam/uptime-kuma
28/08/2025 13:39:47
thumbnail
selfhosted uptime
I replaced my YouTube "Watch Later" with a NotebookLM queue and transcripts, and it completely changed how I consume content https://www.xda-developers.com/youtube-notebooklm-watch-later/
26/08/2025 19:33:47
YouTube
Note: Production Process Manager (pm2) /shaare/_6Uy4Q
24/08/2025 09:02:46
#!/bin/bash

export NODE_ENV=production
export TURSO_URL=libsql://xx-x.aws-xx-1.turso.io
export TURSO_AUTH_TOKEN=eyJ...BCw
export JWT_SECRET=kIjoiNGQwM4NzA4YmI1MDFhIn0
export PORT=99999

pm2 start dist/index.mjs \
        --name name-api \
        --interpreter node \
        --watch \
        --ignore-watch="node_modules .git logs"
node server
https://www.marktechpost.com/2025/08/19/a-coding-implementation-to-build-a-complete-self-hosted-llm-workflow-with-ollama-rest-api-and-gradio-chat-interface/ https://www.marktechpost.com/2025/08/19/a-coding-implementation-to-build-a-complete-self-hosted-llm-workflow-with-ollama-rest-api-and-gradio-chat-interface/
20/08/2025 19:29:01
thumbnail
LLM ai
Raspberry Pi Zero 2 W : ID 5291 : Adafruit Industries, Unique & fun DIY electronics and kits https://www.adafruit.com/product/5291
19/08/2025 13:37:22
thumbnail

Raspberry Pi Zero 2 W is the latest product in Raspberry Pi's most affordable range of single-board computers. The successor to the breakthrough Raspberry Pi Zero W, Raspberry Pi Zero 2 ...

raspberry
Kill the Newsletter! https://kill-the-newsletter.com/
19/08/2025 13:36:43
rss atom newsletter
runit - a UNIX init scheme with service supervision https://smarden.org/runit/
17/08/2025 16:26:53
unix linux nosystemd
How to Boot Raspberry Pi from USB: Complete Step-by-Step Tutorial https://circuitdigest.com/tutorial/raspberry-pi-usb-boot-complete-guide
17/08/2025 11:50:14
thumbnail
RaspberryPi
SSHamble - New Open Source Tool to Exploit Vulnerabilities in SSH Protocol https://cybersecuritynews.com/sshamble/
13/08/2025 04:37:28
thumbnail
ssh
uwu https://github.com/context-labs/uwu
12/08/2025 05:58:39
thumbnail
terminal bash ai
Bash Stack Documentation https://bashsta.cc/
08/08/2025 15:00:58
bash fullstack
GitHub - echasnovski/mini.nvim: Library of 40+ independent Lua modules improving overall Neovim (version 0.9 and higher) experience with minimal effort https://github.com/echasnovski/mini.nvim
06/08/2025 16:45:15
thumbnail

Library of 40+ independent Lua modules improving overall Neovim (version 0.9 and higher) experience with minimal effort - echasnovski/mini.nvim

vim neovim
Zsh | Grml.org https://grml.org/zsh/
06/08/2025 16:42:28
zsh bash shell terminal
https://erock.prose.sh/you-might-not-need-tmux https://erock.prose.sh/you-might-not-need-tmux
02/08/2025 05:50:32
thumbnail
bash tmux
memos https://github.com/usememos/memos
29/07/2025 09:39:08
thumbnail
notes
https://github.com/blinkospace/blinko https://github.com/blinkospace/blinko
29/07/2025 09:34:59
thumbnail
notes
page 4 / 174
3727 links, including 251 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn