Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
**IMPORTANT: We are working on Windows, not Linux!**
Sign in to like and favorite skills
IMPORTANT: We are working on Windows, not Linux!
\ (backslash, not forward slash)This is a Twitter to TradingView application with:
# ❌ WRONG (Linux style) /home/user/project/src/components # ✅ CORRECT (Windows style) C:\tweeter to tradingview — kopia\src\components
# ❌ WRONG (Linux/bash) ls -la grep -r "search" cd /path/to/directory # ✅ CORRECT (PowerShell) Get-ChildItem Select-String "search" -Path "*.ts" -Recurse Set-Location "C:\path\to\directory"
# These work the same on Windows docker-compose up --build -d docker ps docker logs container-name
# ❌ WRONG (Linux) export NODE_ENV=production # ✅ CORRECT (PowerShell) $env:NODE_ENV = "production"
C:\tweeter to tradingview — kopiasrc/ (React components, hooks, types)services/api-gateway/ (Go API server)database/ (SQL init scripts)Current Functionality:
Removed Functionality:
docker-compose up --build -ddocker psdocker-compose logs -fdocker-compose down// Prefer functional components with hooks const MyComponent: React.FC<Props> = ({ prop1, prop2 }) => { const [state, setState] = useState<Type>(initialValue); return <div>{content}</div>; }; // Use proper typing interface ComponentProps { title: string; count: number; optional?: boolean; }
// Use Gin framework patterns func handlerName(c *gin.Context) { var data StructType if err := c.ShouldBindJSON(&data); err != nil { c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()}) return } c.JSON(http.StatusOK, response) }
\ or filepath.Join() in Go# Clone and start (Windows PowerShell) cd "C:\tweeter to tradingview — kopia" docker-compose up --build -d # Check if everything works curl http://localhost:8080/health curl http://localhost:3000
Remember: We're on Windows! Always consider Windows-specific syntax and paths when generating code or commands.