Skip to content

Instantly share code, notes, and snippets.

View Melvynx's full-sized avatar
🦁
create the next thing

Melvyn Melvynx

🦁
create the next thing
View GitHub Profile
@Melvynx
Melvynx / create-vitejs-app.md
Created May 30, 2026 10:01
create-vitejs-app prompt - Create a Vite.js app with Tailwind CSS v4 and shadcn/ui
description Create a Vite.js app with Tailwind CSS v4 and shadcn/ui in the current directory
argument-hint
template
Create a Vite.js project with Tailwind CSS v4 and shadcn/ui in the current directory, handling all edge cases intelligently.

Templates: vanilla, vanilla-ts, vue, vue-ts, react, react-ts, react-swc, react-swc-ts, preact, preact-ts, lit, lit-ts, svelte, svelte-ts, solid, solid-ts, qwik, qwik-ts

@Melvynx
Melvynx / benjamincode-videos.md
Created February 16, 2026 03:53
Benjamin Code - All YouTube video titles

Benjamin Code - YouTube Videos

Total: 376 videos

Date Title Link
2026-01-19 Cette mise à jour de Chrome double la puissance de Claude Code Watch
2026-01-08 Adieu France, Adieu Europe... Watch
2026-01-05 Le vibecoding, c'est (déjà) fini. Watch
2025-12-03 Voici ce que vous avez codé cette année ! (c'est INCROYABLE ce que vous faites avec l'IA !) Watch
@Melvynx
Melvynx / robinebers-videos.md
Created February 16, 2026 03:52
Robin Ebers - All YouTube video titles

Robin Ebers - YouTube Videos

Total: 69 videos

Date Title Link
2026-02-13 This Cursor feature has been sitting there the whole time #shorts Watch
2026-02-12 What nobody tells you about switching to Claude Code Watch
2026-02-11 Are you already talking to your Cursor? Watch
2026-02-11 Cursor AI: Simplify Complex Plans Instantly! #shorts Watch
@Melvynx
Melvynx / t3dotgg-videos.md
Created February 16, 2026 03:52
Theo t3.gg - All YouTube video titles

Theo - t3․gg - YouTube Videos

Total: 975 videos

Date Title Link
2026-02-15 EMERGENCY STREAM Watch
2026-02-13 Fumble of the decade Watch
2026-02-12 GLM-5 is unbelievable (Opus for 20% the cost??) Watch
2026-02-11 Agentic Coding Has A HUGE Problem Watch
@Melvynx
Melvynx / youtube-videos.md
Created February 16, 2026 03:50
Melvynx Développeur - All YouTube video titles

Melvynx Développeur - YouTube Videos

Total: 852 videos

Date Title Link
2026-02-15 Les modèles NOUS MENTENT TOUS : La vérité sur les benchmarks SWE-Bench Watch
2026-02-15 Quand on me dit d'arrêter... Je fais l'inverse ! Watch
2026-02-14 Formation Claude Code Avancées : devenir un PRO de Claude Code avec ces méthodes avancées Watch
2026-02-13 Andrej Karpathy : L'AI code a présent 80% du temps sur un projet. Watch
@Melvynx
Melvynx / setup.sh
Created February 3, 2026 08:38
ClawPro VPS Setup Script - Sets up OpenClaw + Docker + useful aliases
#!/bin/bash
# ClawPro VPS Setup Script
# Sets up OpenClaw + Docker + useful aliases
set -e
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
@Melvynx
Melvynx / setup.sh
Last active February 3, 2026 01:40
ClawPro VPS Setup Script
#!/bin/bash
# ClawPro VPS Setup Script
# Sets up OpenClaw + Docker + useful aliases
set -e
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
@Melvynx
Melvynx / setup.sh
Last active February 2, 2026 14:23
OpenClaw VPS Setup - Fresh v2
#!/bin/bash
# ClawPro VPS Setup Script
# Sets up OpenClaw + Docker + useful aliases
set -e
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
@Melvynx
Melvynx / Dockerfile.clawpro
Created February 2, 2026 13:49
OpenClaw Dockerfile fix
FROM node:22-bookworm
RUN apt-get update && apt-get install -y socat curl git && apt-get clean
RUN curl -fsSL https://bun.sh/install | bash && cp /root/.bun/bin/bun /usr/local/bin/bun && chmod +x /usr/local/bin/bun
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
&& apt update && apt install -y gh && apt-get clean
@Melvynx
Melvynx / setup.sh
Last active February 2, 2026 13:59
ClawPro VPS Setup - One-command OpenClaw installation
#!/bin/bash
# ClawPro VPS Setup Script
# Sets up OpenClaw + Docker + useful aliases
set -e
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'