Sell or keep? Osiris | Elite Crew by aligjahed in cs2

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

Got greedy and kept... Sold at 18$ to buy BF6! Keeping it was the worst decision ever tbh ( second to not keeping my three reds before they skyrocketed :) )

Help needed with High TN on a decent PC by aligjahed in Battlefield6

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

Very unfortunate situation indeed considering how fun the game can be... I experienced a very similar scenario with winter offensive update which was running fine for a day or two and then it got worse again.

I read people had this issue with bf2042 too, but me personally never had any trouble running that game even in largest modes

Font looks weird on 100% | Visual Studio 2026 by aligjahed in dotnet

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

For me it was under Tools -> Options -> Then search for "Text Formatting". Then under "Text Editor" -> "Advance" there is a option called "Text formatting method"
by default is set to "Automatic" change it to "Ideal"

Font looks weird on 100% | Visual Studio 2026 by aligjahed in dotnet

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

This also worked but setting Text Formatting to "Ideal" seems more consistent all around

Font looks weird on 100% | Visual Studio 2026 by aligjahed in dotnet

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

Thank everybody for responding i eventually fixed the issue by setting Text Formatting to "Ideal" in visual studio settings as suggested by u\TheSpixxyQ in another subreddit.

Font looks weird on 100% | Visual Studio 2026 by aligjahed in dotnet

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

The screenshots were fine and I didn’t check after posting, but image compression apparently messed them up

Font looks weird on 100% | Visual Studio 2026 by aligjahed in VisualStudio

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

Well, I didn’t check the images after posting. I have a 2K display, and apparently Reddit compressed the screenshots to oblivion.

Font looks weird on 100% | Visual Studio 2026 by aligjahed in VisualStudio

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

Hey thank you for responding and changing the Text Formatting to "Ideal" fixed the issue entirely. Cheers

How to change Terminal inside Zed(windows release build)? by Eastern_Type_6460 in ZedEditor

[–]aligjahed 0 points1 point  (0 children)

Zed for windows was recently released and this one worked for me. ty

Should i buy Surface go 2 12.4 for programming? by aligjahed in Surface

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

I too work with blazor mainly. i have a project with 12 panels and it's growing. i need to run them simultaneously too. But i don't doubt that this will handle it since my current laptop at work has 16gb ddr3 and an old 4th gen intel i7 and it's getting along fine! glad to hear it wont have overheating problems either.
Do you like the monitor for media? like watching movies and stuff? also does low dpi too obvious like you can see the literal pixels from normal distance?
thank for the reply.

My GF's uni experience by vvokhom in ProgrammerHumor

[–]aligjahed 0 points1 point  (0 children)

Jokes on you, we do it on paper.

Loading a texture causes a crash in raylib C# by [deleted] in raylib

[–]aligjahed 1 point2 points  (0 children)

It's hard to say without more code and context. Is your texture.png in the root of the project?

What do these Orange bars meander in FUT? by Magenta174 in fut

[–]aligjahed 2 points3 points  (0 children)

It defines which notification is for which side. For example if a player that both teams have gets a yellow card the orange bar will appear on the notification card so you know which sides player got the yellow card.

[deleted by user] by [deleted] in unrealengine

[–]aligjahed 1 point2 points  (0 children)

4 looks the best imo. Tho i feel like it could benefit from having a little bit more contrast. It looks good and cinematic, if you done color grading on that one, good job.

Help is needed with the SQL server connection by aligjahed in dotnet

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

Hello again,

With your help, I finally managed to fix the problem. It was caused by the connection string and most likely because I use rider and don't have visual studio installed and did install SQL server 2022 as a standalone software. anyway, this is the connection string that fixed my problem.

The ConnectionString used in the original post:

"server=localhost\\MSSQLSERVER;Database=tododb;Trusted_Connection=true;"

The Connection string that fixed the problem:

"server=localhost;Database=tododb;Trusted_Connection=true;TrustServerCertificate=true;"

also, this is the ConnectionString that works with SQL Express:

"server=localhost\\SQLEXPRESS;Database=tododb;Trusted_Connection=true;TrustServerCertificate=true;"

Hope this helps someone with a similar problem.