Generate fake data in C# without writing it manually.
Bogus helps create realistic names, emails, addresses, and full objects for testing and seeding databases.
Built by @bchavez π
Read more: poornasoysa.tech/generate-faβ¦#dotnet#devcommunity
Attended @cursor_ai Meetup Colombo 2026 last Thursday π±π°
Key highlight was the keynote by @nickwm β practical insights on real-world Cursor usage.
Good sessions, demos, and conversations with the local dev community.
#CursorColombo#CursorAI#DevCommunity#SriLankaTech
Naming conventions matter more than you think.
π snake_case β Pythonβs favorite
𦴠kebab-case β CSS & URLs
πͺ camelCase β JS & Java variables
π ΏοΈ PascalCase β C# classes & methods
Clean code starts with consistent naming.
Which one do you use the most? π #dotnet#DevTips
Visual Studio 2026 is here!
β‘ Faster load times
π€ AI-powered coding assistance
βοΈ Cloud-connected collaboration
π¨ A refreshed UI
Redefining the developer experience starts now.
Which feature excites you most? π
devblogs.microsoft.com/visuaβ¦#VisualStudio2026#DotNet#AI
Working with large datasets? Loading everything into memory can hurt performance.
yield return streams data one item at a time - only when needed.
β Saves memory β Lazy evaluation β Cleaner code
#dotnet#csharp#devcommunity
Working with large datasets? Loading everything into memory can hurt performance.
yield return streams data one item at a time - only when needed.
β Saves memory
β Lazy evaluation
β Cleaner code
#dotnet#csharp#devcommunity