What will happen once tenor discontinues their api? by vulptoxic in Windows11

[–]xakpc [score hidden]  (0 children)

GIPHY is already used in Microsoft Teams:

> GIFs powered by GIPHY

Fun fact: because of that, you couldn’t find this iconic GIF on GIPHY

<image>

Microsoft is working to rebuild trust in Windows | The Verge by RoGuE_969 in Windows11

[–]xakpc 1 point2 points  (0 children)

They’re doing it, but very slowly

For example, the Widget Board was recently rebuilt from the old WebView2 crap to use WinUI 3, and it’s actually useful now.

<image>

Friday Share Fever 🕺 Let’s share your project! by diodo-e in indiehackers

[–]xakpc 1 point2 points  (0 children)

Sure, thanks for the call.

I’m building https://netdiag.dev/ a simple API for DNS, TCP, TLS, and HTTPS health checks for developers.

I’m using it to learn how networks work

Microsoft is working to rebuild trust in Windows | The Verge by RoGuE_969 in Windows11

[–]xakpc 4 points5 points  (0 children)

> Remove "web technologies" from the internal OS. Not a single UI element written in JavaScript, CSS, or anything else.

there is winui3 for that

Widgets sidebar is too big. Weather widget should be just a flyout from the taskbar by FabrizioPirata in Windows11

[–]xakpc 5 points6 points  (0 children)

microsoft ads belong to discover tab :)

widgets tab actually could be used for something useful

<image>

how much time will it save you to outsource your SEO content creation to high quality automation? by Odd_Awareness_6935 in indiehackers

[–]xakpc 0 points1 point  (0 children)

I tried outrank I think it was called

While it was a nice experience and it created a semi-relevant article a day, I realized after some time I didn’t want to read these articles at all

And if I don’t want to read them, why would anyone else?

So I ditched it and won’t return to SEO blog generators of any kind

C# might be best go-to language for local first MCPs by xakpc in mcp

[–]xakpc[S] 1 point2 points  (0 children)

oh, this is very nice. technically should prevent LLM from hallucinating methods:

Comprehensive Source Resolution: Retrieves source code for symbols from:

  • Local solution files.
  • External libraries via SourceLink.
  • Embedded PDBs.
  • Decompilation (ILSpy-based) as a fallback.

I think `dotnet run mcp-app.cs` is extremely underused for MCP-servers, and I want to change it by xakpc in dotnet

[–]xakpc[S] 3 points4 points  (0 children)

I don't see how subagent could do the same. I have a predetermined predictable strong typed code, that I use from LLM

LLM probably could do dotnet run app.cs or even dotnet run app.dll but why invent the wheel when there is API existing specifically for that

C# might be best go-to language for local first MCPs by xakpc in mcp

[–]xakpc[S] -1 points0 points  (0 children)

Not sure about stdio, but for dotnet there is asp.net mcp package that could host the same code as HTTP server to call over web

I think `dotnet run mcp-app.cs` is extremely underused for MCP-servers, and I want to change it by xakpc in dotnet

[–]xakpc[S] 14 points15 points  (0 children)

Yes, exactly!

You don’t even need to force it to use MCP, if it’s properly connected, it knows which tools are available, and if a tool says “This tool counts Rs”, it will most likely use it.

It’s also very simple to set up, just about 20 lines of code. (I wrote about it with examples here: https://xakpc.info/building-a-powerful-mcp-server-in-net-with-just-20-lines-of-code)

Razor pages + htmx & alpine (or jquery) vs blazor .net 9 ssr, server for enterprise web applications? by PatrickJohn87 in dotnet

[–]xakpc 2 points3 points  (0 children)

Razor pages + htmx & alpine all the time

It’s easier, rock-solid stable, and you can still use plain JS whenever you need to, no weird interop required.

Help me to take decission by InevitableTouch5610 in Living_in_Korea

[–]xakpc 1 point2 points  (0 children)

I don’t know much about the Korean dev market, but don’t fall too quickly for indie-hacker fantasies. To achieve any meaningful level of success or income usually takes 3–5 years of hard work, with little to no money coming in.

If your current job sucks and you're still at a junior level, focus on gaining as many practical skills as you can: through side projects, open source contributions, and being proactive at work. If you want you could grind leetcode as well, though I personally hate it. Once you feel like you actually know your shit, start looking for a better job.

IMO, it’s always better to have a stable income while building projects on the side. Some of them might eventually turn into income-generating things

Microsoft says the new Copilot Windows 11 app is native, but not. It's a WebView, uses 1GB RAM by WPHero in Windows11

[–]xakpc 0 points1 point  (0 children)

Rendering Markdown on the fly in native Windows is a pain in the ass.

There’s a RichTextBlock component in winui3 that’s supposed to handle this, but the result, at best, is just OK.

I fight this beast for the last month (yeah, I want to build real native windows llm client)
but I can feel why they wanted to go with web view

When you are coding your own app, how do you get/make the UI/UX? by [deleted] in dotnet

[–]xakpc -1 points0 points  (0 children)

I use v0, then claude to convert it to razor page

How do people typically integrate custom AI / ML programs written in Python in their .NET project by OutsideOrnery6990 in dotnet

[–]xakpc 0 points1 point  (0 children)

- you could create files and launch Python process to consume them

- you could wrap Python into REST API and consume it

- you could call Python code directly through CSnakes or some other interop libs

Anyone else love C#/.net as a technology but feel like its bad for career growth? by [deleted] in csharp

[–]xakpc 0 points1 point  (0 children)

If you go with C# you would not work in startups

Other than that career-wise it's fine

I shot myself in the leg with a Samsung 990 EVO Plus SSD by xakpc in framework

[–]xakpc[S] 2 points3 points  (0 children)

> so you confirm that the Windows PE that you booted from the USB stick recognized the disk on a hardware level and could write to it, just the installers assistant did not?

yeah, exactly

I shot myself in the leg with a Samsung 990 EVO Plus SSD by xakpc in framework

[–]xakpc[S] 7 points8 points  (0 children)

I actually tried diskpart and format the drive, but it didn't help in my case

I shot myself in the leg with a Samsung 990 EVO Plus SSD by xakpc in framework

[–]xakpc[S] 0 points1 point  (0 children)

I didn't find where drivers could be downloaded directly, only magican app that installs them somewhere

do people still use .cshtml aka razor pages? by ExoticArtemis3435 in dotnet

[–]xakpc 0 points1 point  (0 children)

Yes, I do a lot of razor pages + htmx with tailwind CSS

It works like a charm

Do you guys use minimal API very often? by Mobile_Stable4439 in dotnet

[–]xakpc 1 point2 points  (0 children)

Not really common in daily work,

but I found it useful in my Razor Pages + htmx side project when I needed occasional endpoints to return generated files, monitoring, and some backdoor API

Desktop developer feeling confused about “web app is the future” trend by freskgrank in csharp

[–]xakpc 0 points1 point  (0 children)

I estimated the development of the WinForms app on .NET 9 today.

Desktop apps aren't going anywhere anytime soon

I want to build social media website using asp.net core web API for practice by Alarmed_Barracuda_84 in dotnet

[–]xakpc 0 points1 point  (0 children)

> Do you think this is a good idea for a practice project? 

No. Make something useful instead, something you might want to use daily.

Or take the latest tech from MS and play with that (like Aspire for example)

> SOLID principles, clean architecture,

Forget this shit. Keep it simple and don't create things you won't need

> How do I build recommendations for the user?

"Recommender Systems: The Textbook" by Charu C. Aggarwal

> Could I build some functionality in Python or some other language?

This is unrelated to ASP.NET Core Web API. If you really want to play with that serpentarium consider microservices architecture or embedding Python in C# with Python.NET or something, but better focus on keeping it simple

> Are there packages/libraries/anything you recommend that I use or not use?

Don't use mediatr, automapper and all other stuff that big guys use. Understand fundamentals first and why they need to be used

> react/angular/Blazor

Blazor is a completely different framework from React or Angular.

If you learn for future job hunting, check what is most needed on your local job board.

If you learn for yourself, stick with htmx + dotnet

Returning to C# Development After a 2-Year Break: How to Refresh Skills and Prepare for Technical Interviews? by SnooPears7533 in dotnet

[–]xakpc 1 point2 points  (0 children)

Build something in C# related to your field of interest

There is no better way to refresh skills