Best of YouTubeFebruary 2026

  1. 1
    Video
    Avatar of youtubeYouTube·11w

    What Every .NET Developer Actually Needs to Know in 2026

    A fundamentals-focused roadmap for .NET developers covering core technologies rather than specific libraries. Key areas include mastering .NET 8/9/10 with ASP.NET Core (minimal APIs and controllers), dependency injection, authentication, and integration testing. Database skills should focus on SQL fundamentals using PostgreSQL or SQL Server, including data modeling, indexing, and query optimization. Messaging concepts (queues, topics, idempotency) are essential, with RabbitMQ, Azure Service Bus, or AWS SQS/SNS as implementation options. Cloud deployment skills on Azure or AWS with CI/CD using GitHub Actions are critical for standing out. AI tooling like Cursor or GitHub Copilot should be leveraged for productivity. Bonus recommendation includes learning React or Angular with TypeScript for full-stack capabilities.

  2. 2
    Video
    Avatar of youtubeYouTube·10w

    3 years of game development in 8 minutes

    A solo indie developer shares three years of progress on Isisle Goblin, a Terraria-meets-Stardew Valley game where players fight humans as a goblin, explore destructible worlds, and build towns. Recent updates include swimming mechanics with animations for all armor sets, a custom level editor to replace Unity's laggy tilemap system, a new underground floor with procedurally generated terrain and handcrafted points of interest, inverse kinematics for spider enemies, and new livestock. The developer seeks community feedback on cover art options, comparing approaches from similar games like Terraria's sprite art versus stylized character renders.

  3. 3
    Video
    Avatar of youtubeYouTube·11w

    Zig's new juicy main is here!

    Zig 0.16 introduces a major change to the main function signature, offering three variants: no parameters, std.process.Init, and std.process.InitMinimal. The old methods of accessing environment variables (std.os.environ) and CLI arguments (std.os.argv) have been removed due to safety concerns around undefined values on non-Windows platforms. The new Init types provide safe access to environment variables, CLI arguments, allocators (GPA and arena), and IO implementations. InitMinimal offers basic environment and argument access, while the full Init type includes pre-configured allocators and IO, with different implementations depending on build mode and target platform.