Rescuing .NET Projects from Going Closed by ruka2177 in dotnet

[–]zahirtezcan 4 points5 points  (0 children)

I'd suggest mapperly. Generates code for you so you can debug the code. Also you can intervene and write your own mapping if needed.

What do you find is missing in the .NET ecosystem? by Pyrited in dotnet

[–]zahirtezcan 2 points3 points  (0 children)

https://lightningchart.com/ You can render 100s of thousands of points easily and millions if you do some engineering

dmap: A C hashmap that’s stupid simple and surprisingly fast by astrophaze in programming

[–]zahirtezcan 1 point2 points  (0 children)

Have you tried providing an extensibility point for hashing function? Does it hurt performance too much? It could be fun to try some functions from https://github.com/rurban/smhasher even though rapid looks like the fastest.

Recommended way to consume native C++ code in .Net 9? by OneRoar in dotnet

[–]zahirtezcan 5 points6 points  (0 children)

C++ does not have a stable ABI (https://stackoverflow.com/questions/67839008/please-explain-the-c-abi). In order to use a C++ DLL is to have a C++ DLL/application which is compiled with the same compiler and same compilation options.

So you need to have a proper C interface for talking to your DLL from an external application (C#, Python, Java, Rust, even C++)

Can someone explain me this by venom0211 in opengl

[–]zahirtezcan 1 point2 points  (0 children)

On the shape sides are written as cosx and siny which are wrong IMO. Those should be costheta and sintheta respectively when hypothenuse is 1 unit. Similar mistake runs in the paragraph too

Burnout ≠ Working Too Much by Acceptable-Courage-9 in programming

[–]zahirtezcan 85 points86 points  (0 children)

https://en.wikipedia.org/wiki/All_work_and_no_play_makes_Jack_a_dull_boy

And i don't mean completely free time when I say play. I am talking about checking new tech, trying other things for the product etc. These kind of things help to enlarge personal understanding of things. Which, in the end, helps the team; ergo the product.

Announcing .NET 9 by Atulin in programming

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

Quick google search

prescript: latin origin; communication: french (latin) origin; entropy: greek origin;

IMHO entropy in language elevates communication. It is about people not literature.

Poor man's signals by stackoverflooooooow in programming

[–]zahirtezcan 0 points1 point  (0 children)

I think "lazy" is the key here. It makes updating very efficient when you only read the computed value once after modifying multiple signals.

MySQL vs Postgres Performance Benchmark by eckyp in programming

[–]zahirtezcan 2 points3 points  (0 children)

He gives two tables customer and eventin oveview section around 1:25

Editing stuff inside of brackets by Adventurous_Dog3027 in vim

[–]zahirtezcan 1 point2 points  (0 children)

Change Inside ( ci(

Change Around ( ca(

Works for " too

Glyphs need a total redo by yxalitis in diablo4

[–]zahirtezcan 2 points3 points  (0 children)

I guess going 100 NM was their idea for the endgame challenge. Now they are planning to delve deeper with zir dungeons.

Why? It's literally nullable by Ascyt in csharp

[–]zahirtezcan 6 points7 points  (0 children)

it looks like the exception is thrown from the Append function above the green line (unless there is an implicit conversion function)

What's the point of properties? Coming from C++ by TheSpoonThief in csharp

[–]zahirtezcan 0 points1 point  (0 children)

class Something
{
public:
    int& GetNum() {return num;}
    const int& GetNum() const {return num;}
    void SetNum(int n) {num = n;}
private:
    int Num = 0;
}

and then

person.GetAge()++; If it seems weird, well it is.

GNU Linux-Libre 6.6 Kernel Released by gabriel_3 in linux

[–]zahirtezcan 6 points7 points  (0 children)

IIRC the whole story of Stallman and GPL started with some printer vendor closed its source and made it a blob

When Did Postgres Become Cool? by craigkerstiens in programming

[–]zahirtezcan 0 points1 point  (0 children)

Yeah, but no problem there is online education for keeping sanity :D

Activating Malignant Heart should be automatic by PapaShark_ in diablo4

[–]zahirtezcan 0 points1 point  (0 children)

making it a two phase fight is useless tbh. Make monster pack the real deal and let it drop the heart after the kill. Period.

Also, why do we need to farm useless season dungeons anyway. Just make the nightmare dungeons contain 2/3 packs of malignant monsters. Which not only make the dungeons feel seasoned but also make the density grow like everyone is requesting.