Skip to content
View CorentynDevPro's full-sized avatar
🎯
Focusing
🎯
Focusing
  • France
  • 11:08 (UTC +02:00)

Block or report CorentynDevPro

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
CorentynDevPro/README.md

Hey there! I'm CorentynDevPro πŸ‘‹

Typing SVG


πŸš€ About Me

🎯 Full-stack dev focused on clean code, modern tooling, and terminal-fueled productivity
⚑ Obsessed with automating workflows, managing runtimes, and keeping a streamlined dev setup
🎧 Always coding with some lo-fi beats in the background


πŸ› οΈ Setup & Power Tools

Category Tools
System Homebrew iTerm2 Warp Raycast
Shell Zsh
Plugins zsh-autosuggestions, zsh-syntax-highlighting
Version Managers ASDF Volta Fnm
Automation & UI Hammerspoon Rectangle
Dotfiles VS Code Sync, Dotfiles repo
Editors Nova Neovim

βš™οΈ Languages & Runtimes

Node.js Python Java Shell


🧠 IDEs & Editors

JetBrains
⚑️ Neovim β€’ πŸͺΆ Zed β€’ Nova


🌐 Cloud Platforms & DBs

MongoDB Firebase Supabase Railway Render
PostgreSQL MySQL Redis Neo4j Docker Prisma


πŸ“¦ Frameworks & Tooling

  • Frontend: Vue Nuxt Astro
  • Backend: NestJS Express
  • Styling: Tailwind CSS Bootstrap Vuetify
  • API & Docs: Swagger OpenAPI
  • Tests: Vitest Jest Cypress

πŸ“‹ Git & Project Tools

GitHub GitBook Notion YouTrack
CI/CD: GitHub Actions, Vercel, Netlify, Firebase Deploy, Render, Railway
Bonus: Dependabot, Husky, Lint-staged, ESLint + Prettier


πŸ“Š GitHub Stats


🧠 Fun facts

  • I automate everything.
  • I theme everything.
  • My terminal is prettier than most landing pages.
  • Yes, I do use Neovim… and yes, it’s faster.

Thanks for stopping by! πŸ™Œ
See you in the terminal πŸ‘¨β€πŸ’»πŸ’₯

Pinned Loading

  1. πŸ” Need a secure JWT_SECRET for your ... πŸ” Need a secure JWT_SECRET for your API?
    1
    // Module import to generate random keys
    2
    const crypto = require('crypto');
    3
    
                  
    4
    // Generate 64 random octets then convert them in a hexadecimal String
    5
    const secret = crypto.randomBytes(64).toString('hex');