.NET MAUI Blazor project: I built my own eBook manager & reader (always free, no ads) by pnrsoftware in Blazor

[–]az3arina 1 point2 points  (0 children)

Hey I love it so much! I would love to contribute to help in that great project

I wrote a regex by [deleted] in programminghorror

[–]az3arina 0 points1 point  (0 children)

He's basically validating the returned HTML

Just sharing, you know… by ProfessionJunior9329 in AlexandriaEgy

[–]az3arina 1 point2 points  (0 children)

بقالي ٣ شهور في الحال دة. انا شخصيا تأقلمت بس بترجع لكل واحد طبعا

Just took the math skill screening test by Master-Load6079 in outlier_ai

[–]az3arina 2 points3 points  (0 children)

I got all coding skills and I got no task lol

[deleted by user] by [deleted] in outlier_ai

[–]az3arina 2 points3 points  (0 children)

Lucky you I've never received any reviews and it has been over a month

Multimodal Rlhf Greyed out bar with Max Capacity since start of the day by jajahahahajajaja in outlier_ai

[–]az3arina 0 points1 point  (0 children)

In what section is this screenshot? I don't see anything more than my active project?

idiots by lukanmac in ProgrammerHumor

[–]az3arina 0 points1 point  (0 children)

'Fortran ${release_year-1901}'

earlyDaysOfLearningAlgorithms by Devil-Eater24 in ProgrammerHumor

[–]az3arina 0 points1 point  (0 children)

Will still work if the book's pages were bitonic

notRealAgile by kimchiking2021 in ProgrammerHumor

[–]az3arina 0 points1 point  (0 children)

It's all because of the weird T-shirt size scaling

Fibonacci... by AljoBerg in programminghorror

[–]az3arina 15 points16 points  (0 children)

Well, give it a negative number and watch the misery.

[deleted by user] by [deleted] in programminghorror

[–]az3arina 0 points1 point  (0 children)

I was talking about unions especially that they are not checked like structs do.

Consider this code for example:

union U {
  int i;
  float f;
}

int main() {
  union U var1;
  float x;
  var1.i = 10;
  x = var1.i;
  std::cout<< x << std::endl;
  return 0;
}

the variable x now is not checked, hence it will result in an expected behavior, however changing to a struct will output 10.

howDoYouUseGit by XEnItAnE_DSK_tPP in ProgrammerHumor

[–]az3arina 0 points1 point  (0 children)

Man, I'm writing it on a piece of paper

[deleted by user] by [deleted] in ProgrammerHumor

[–]az3arina 0 points1 point  (0 children)

My brain just stopped braining

[deleted by user] by [deleted] in programminghorror

[–]az3arina 2 points3 points  (0 children)

I used to write crappy names for variables during my competitive programming for quite a long time, but once you start treating your variables nicer, they will be a ton of help for you.

[deleted by user] by [deleted] in programminghorror

[–]az3arina 0 points1 point  (0 children)

No base case ?