Filter
Exclude
Time range
-
Near
What’s the best architecture for a professional Flutter app? Explore the full guide: hackmd.io/@wpo3bmzzTHevehZ2s… #Flutter #SoftwareArchitecture #MobileDevelopment #CleanArchitecture #DevTip #MobileDev
2
43
Je confirme. Depuis que j'ai activé les language servers (TypeScript Python), Claude Code ne grep plus à l'aveugle. Il navigue directement à la bonne définition. Setup en 2 min : 1. npm install -g typescript-language-server typescript pyright 2. ENABLE_LSP_TOOL=1 dans ton .zshrc 3. Relance Claude Code Avant : 30-60 secondes de grep. Après : 50ms, droit au but. Faites-le. Maintenant. #ClaudeCode #DevTip
claude code has a hidden setting that makes it 600x faster and almost nobody knows about it by default it uses text grep to find functions. it doesn't understand your code at all. that's why it takes 30-60 seconds and sometimes returns the wrong file there's a flag called ENABLE_LSP_TOOL that connects it to language servers. same tech that powers vscode's ctrl click to jump straight to the definition after enabling it: > "add a stripe webhook to my payments page" - claude finds your existing payment logic in 50ms instead of grepping through hundreds of files > "fix the auth bug on my dashboard" - traces the actual call hierarchy instead of guessing which file handles auth > after every edit it auto-catches type errors immediately instead of you finding them 10 prompts later also saves tokens because claude stops wasting context searching for the wrong files 2 minute setup and it works for 11 languages
1
84
🔒 macOS Privacy Fix #1 @cursor_ai has camera & mic access even if you only write code. One command to fix it: tccutil reset Camera com.todesktop.230313mzl4w4u92 tccutil reset Microphone com.todesktop.230313mzl4w4u92 Follow for daily #privacy fixes 👇 #MACOS #BuildInPublic #DevTip
1
2
8
133
Stop memorizing long commands. Makefiles create one simple interface: - make install - make test - make deploy Same commands locally and in CI/CD. Boring tech that works since 1976. 💪 P.S. Know the image style? 1976 OS Commentary 📘 #CiscoDevNet #DevTip
1
2
3
321
Stop juggling pip, venv, pyenv, and poetry. uv does it all, project setup, deps, Python versions. 10-100x faster. uvx runs tools in isolated, cached environments, no global install. ⚠️ Verify sources first. uv docs: cs.co/60107hxsk #CiscoDevNet #DevTip
2
3
8
386
Tip: Your container only needs what your app needs 🐳 Purpose built images = smaller attack surface, predictable builds, fewer dependencies to manage. Only what you need, nothing you don't. #CiscoDevNet #DevTip
3
5
388
Middlewares are must on backend api route. Validate the data body, data received and their types. #devtip
#DevTip Always have server-side validations that matches your UI restrictions
3
74
#DevTip Always have server-side validations that matches your UI restrictions
3
58
2,423
Holiday terminal tip ✨ fortune | cowsay Random wisdom delivered by ASCII art. fortune (1979) cowsay (1999) = 40 years of joy. Add it to your .bashrc for daily smiles. Sometimes the best automation is the kind that makes you smile. Happy holidays! 🎉 #CiscoDevNet #DevTip
1
4
511
Debugging unfamiliar code? 🔍 git blame <file> → find which commit changed each line git show <commit> → understand WHY it was changed (Only works if commits have good messages. Write context today!) #CiscoDevNet #DevTip
1
323
Quick dev tip that will save you future headaches: When an API call fails, don't just log the error message. Log the entire error object. The real problem (like a specific status code or response detail) is often hiding in there. #devtip #webdev #javascript
1
4
96
CLI-over-API on Cisco platforms 🔧 • IOS-XE: CLI RPC (config only) • NX-OS: NX-API CLI (show config) • IOS-XR: gNMI ASCII encoding Three platforms, three methods. #CiscoDevNet #DevTip
2
5
564
Laravel Tip: Cast money columns to 'decimal:2' in your Eloquent model. Always displays monetary values correctly (e.g., 10.00 instead of 10 or 10.0) when retrieved. Clean, consistent formatting for financial data. ✅ #Laravel #Database #PHP #DevTip
1
1
3
149
Skip the parsing nightmares 💀 Query Cisco devices with curl RESTCONF = structured JSON every time. No more parsing text output that breaks with every IOS update. #CiscoDevNet #DevTip #RESTCONF
1
1
5
369
CLI productivity tip: The hyphen (-) = "previous location" • cd - → previous directory (bash) • git checkout - → previous branch (git) Toggle between locations without retyping. Game changer for dev/prod workflows. ⚡ #CiscoDevNet #DevTip
4
9
585
Kicking off our new weekly #DevTip series! 💡 Tired of KeyError crashing your Python scripts? Use .get() on dictionaries. port_status = interface.get('status', 'unknown') It provides a safe default value if a key is missing, making your automation more robust. #CiscoDevNet
1
2
332
Pro tip: 💁 ❌ Understanding plain charts can take time ✅ Make charts easier by mapping related values 24 different values → 5 semantic groups = way more readable charts each time you look at them! Learn more: 👇 telemetrydeck.com/blog/mappi… #DataDriven #iOSDev #SwiftUI #DevTip
1
2
193
💡 DevTip Use the metadata field in your DAT transactions to make agent listings searchable. Keep building, keep chilling!
12
5
24
2,882
bad devtip: put the "r-slur" as a low-level attack or spell-casting speed debuff in your upcoming MMO to generate a short burst of discourse.
2
25