syntax_mburu's profile picture. It's not a bug, It's an undocumented feature!!

🇰🇪 Mburu Wa Gathoni.

@syntax_mburu

It's not a bug, It's an undocumented feature!!

🇰🇪 Mburu Wa Gathoni. reposteó

90% of C# projects don't need in the beginning: - Kubernetes - Microservices - Separate read/write databases Instead, you need a simple and organized structure. So you can move fast. And get feedback from the market and the actual customers. But you want to have some upfront…

kristijan_kralj's tweet image. 90% of C# projects don't need in the beginning:

- Kubernetes
- Microservices
- Separate read/write databases

Instead, you need a simple and organized structure.

So you can move fast.

And get feedback from the market and the actual customers.

But you want to have some upfront…

🇰🇪 Mburu Wa Gathoni. reposteó

ASP .NET Web API – Token Based Authentication Tutorial by Beau Carnes youtube.com/watch?v=QSFWSj… #aspnetcore

aspnetcore_news's tweet image. ASP .NET Web API – Token Based Authentication Tutorial by Beau Carnes youtube.com/watch?v=QSFWSj… #aspnetcore

🇰🇪 Mburu Wa Gathoni. reposteó

If you're building an app or API that has to respond quickly, caching can really help. Instead of the server having to fetch the same data again and again, you store that data in memory. In this guide, Manish explains how in-memory caching works in Redis & walks you through…

freeCodeCamp's tweet image. If you're building an app or API that has to respond quickly, caching can really help.

Instead of the server having to fetch the same data again and again, you store that data in memory.

In this guide, Manish explains how in-memory caching works in Redis & walks you through…

🇰🇪 Mburu Wa Gathoni. reposteó

C# 14 in the preview introduces partial constructors and events. They must include exactly one defining declaration and one implementing declaration. The implementation declaration of a partial event must include add and remove accessors.

okyrylchuk's tweet image. C# 14 in the preview introduces partial constructors and events.

They must include exactly one defining declaration and one implementing declaration.

The implementation declaration of a partial event must include add and remove accessors.

🇰🇪 Mburu Wa Gathoni. reposteó

Disable paste from Windows Clipboard

KarenPayneMVP's tweet image. Disable paste from Windows Clipboard

🇰🇪 Mburu Wa Gathoni. reposteó

Permission authorization handler in ASP .NET Core 👇 You can use this to enforce Role-Based Access Control.

mjovanovictech's tweet image. Permission authorization handler in ASP .NET Core 👇

You can use this to enforce Role-Based Access Control.

🇰🇪 Mburu Wa Gathoni. reposteó

C# Get Windows UpTime github.com/karenpayneoreg…

KarenPayneMVP's tweet image. C# Get Windows UpTime

github.com/karenpayneoreg…

🇰🇪 Mburu Wa Gathoni. reposteó

If you want to build a robust web app, you'd traditionally have to worry about managing tons of infrastructure. But with a serverless architecture, you can just focus on your app code. In this handbook, @POnukwili explains how serverless works & walks you through publishing a…

freeCodeCamp's tweet image. If you want to build a robust web app, you'd traditionally have to worry about managing tons of infrastructure. 

But with a serverless architecture, you can just focus on your app code.

In this handbook, @POnukwili explains how serverless works & walks you through publishing a…

🇰🇪 Mburu Wa Gathoni. reposteó

𝗪𝗵𝘆 𝗘𝘃𝗲𝗿𝘆 𝗘𝗙 𝗖𝗼𝗿𝗲 𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗲𝗿 𝗡𝗲𝗲𝗱𝘀 𝘁𝗼 𝗧𝗿𝘆 𝗘𝗻𝘁𝗶𝘁𝘆 𝗙𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸 𝗘𝘅𝘁𝗲𝗻𝘀𝗶𝗼𝗻𝘀 SaveChanges method in DbContext slows you down 👇 👉 EF Core batches inserts depending on the provider, but it’s still not a true bulk insert — and…


🇰🇪 Mburu Wa Gathoni. reposteó

save yourself major heartache in the database put your updates/deletes in a rollback transaction to prevent accidental misfires just for me, the first thing I write is ```sql begin transaction rollback transaction ``` now if you make any mistakes they're immediately…

RyanRodemoyer2's tweet image. save yourself major heartache in the database

put your updates/deletes in a rollback transaction to prevent accidental misfires

just for me, the first thing I write is 

```sql
begin transaction

rollback transaction
```

now if you make any mistakes they're immediately…

🇰🇪 Mburu Wa Gathoni. reposteó

A very interesting ASP .NET Core feature: Claims Transformation

mjovanovictech's tweet image. A very interesting ASP .NET Core feature: Claims Transformation

🇰🇪 Mburu Wa Gathoni. reposteó

Code Coverage available in Visual Studio 2026 Community and Professional Editions 🥳 Nice move Microsoft 👍🏻 #dotnet

Dave_DotNet's tweet image. Code Coverage available in Visual Studio 2026 Community and Professional Editions  🥳

Nice move Microsoft  👍🏻

#dotnet

🇰🇪 Mburu Wa Gathoni. reposteó

Most agents today are shallow. They easily break down on long, multi-step problems (e.g., deep research or agentic coding). That’s changing fast! We’re entering the era of "Deep Agents", systems that strategically plan, remember, and delegate intelligently for solving very…

omarsar0's tweet image. Most agents today are shallow.

They easily break down on long, multi-step problems (e.g., deep research or agentic coding).

That’s changing fast!

We’re entering the era of "Deep Agents", systems that strategically plan, remember, and delegate intelligently for solving very…

🇰🇪 Mburu Wa Gathoni. reposteó

The binary data upgrade you’ve been waiting for 👀 You can now access binary data from earlier nodes using expressions. Plus, the Set node gets a new entry type to assign binary data directly, making workflows that handle files and media much easier to build and maintain. 🖇️…

n8n_io's tweet image. The binary data upgrade you’ve been waiting for 👀
You can now access binary data from earlier nodes using expressions. Plus, the Set node gets a new entry type to assign binary data directly, making workflows that handle files and media much easier to build and maintain.
🖇️…

🇰🇪 Mburu Wa Gathoni. reposteó

In .NET it's a best practice to properly size every List<T> when created. And I have a benchmark to back it up. Over 10 million adds to a list, declaring with a capacity performs ~60% better compared to the default constructor! The problem is simple on the surface - List<T> is…

RyanRodemoyer2's tweet image. In .NET it&apos;s a best practice to properly size every List&amp;lt;T&amp;gt; when created. And I have a benchmark to back it up.

Over 10 million adds to a list, declaring with a capacity performs ~60% better compared to the default constructor!

The problem is simple on the surface
- List&amp;lt;T&amp;gt; is…

🇰🇪 Mburu Wa Gathoni. reposteó

Async messaging makes your .NET apps faster, more reliable, and easier to scale. In my latest video, I walk through Azure Service Bus + .NET — step by step: - Queues vs. Topics - Message processing - Dead-lettering - Filters + Scheduling Watch it here: youtu.be/mDnd1RlmXMA

mjovanovictech's tweet image. Async messaging makes your .NET apps faster, more reliable, and easier to scale.

In my latest video, I walk through Azure Service Bus + .NET — step by step:
- Queues vs. Topics
- Message processing
- Dead-lettering
- Filters + Scheduling

Watch it here: youtu.be/mDnd1RlmXMA

🇰🇪 Mburu Wa Gathoni. reposteó

Experimenting with a docker file building API in the next version of aspire. Will serve as a way to create docker files on the fly from various bits of information in the application. #aspire @aspiredotdev

davidfowl's tweet image. Experimenting with a docker file building API in the next version of aspire. Will serve as a way to create docker files on the fly from various bits of information in the application.

#aspire @aspiredotdev

🇰🇪 Mburu Wa Gathoni. reposteó

Great to see n8n finally shipping their AI workflow builder. Now you can build AI agents and automation with natural language within n8n. This is a game-changer for n8n agent builders. I've been building my own n8n workflow builder with Claude Code. Can't wait to share more.

omarsar0's tweet image. Great to see n8n finally shipping their AI workflow builder.

Now you can build AI agents and automation with natural language within n8n.

This is a game-changer for n8n agent builders.

I&apos;ve been building my own n8n workflow builder with Claude Code. Can&apos;t wait to share more.

🇰🇪 Mburu Wa Gathoni. reposteó

Two ways to replicate in Postgres: Physical and Logical. Both great features with different tradeoffs. Physical replication ships the full WAL to replicas, producing byte-level copies of the primary node. This means CPU overhead is low on the primary, but it's ONLY compatible…

BenjDicken's tweet image. Two ways to replicate in Postgres: Physical and Logical.

Both great features with different tradeoffs.

Physical replication ships the full WAL to replicas, producing byte-level copies of the primary node. This means CPU overhead is low on the primary, but it&apos;s ONLY compatible…

🇰🇪 Mburu Wa Gathoni. reposteó

𝗖𝗼𝗻𝗰𝘂𝗿𝗿𝗲𝗻𝘁 𝗶𝘀 𝗻𝗼𝘁 𝘁𝗵𝗲 𝘀𝗮𝗺𝗲 𝗮𝘀 𝗽𝗮𝗿𝗮𝗹𝗹𝗲𝗹 Most developers use these terms interchangeably. That's a mistake. 𝗖𝗼𝗻𝗰𝘂𝗿𝗿𝗲𝗻𝗰𝘆 is about structure. You design your program so that multiple tasks can progress simultaneously without waiting for…

milan_milanovic's tweet image. 𝗖𝗼𝗻𝗰𝘂𝗿𝗿𝗲𝗻𝘁 𝗶𝘀 𝗻𝗼𝘁 𝘁𝗵𝗲 𝘀𝗮𝗺𝗲 𝗮𝘀 𝗽𝗮𝗿𝗮𝗹𝗹𝗲𝗹

Most developers use these terms interchangeably. That&apos;s a mistake.

𝗖𝗼𝗻𝗰𝘂𝗿𝗿𝗲𝗻𝗰𝘆  is about structure. You design your program so that multiple tasks can progress simultaneously without waiting for…

Loading...

Something went wrong.


Something went wrong.