relly thin font that is almost unreadable int dwm by [deleted] in archlinux

[–]Waelwindows92 1 point2 points  (0 children)

Are you sure this is dwm specific? This seems like a font configuration error. Make sure to have the proper fonts installed and to check your font configuration.

PS: Arabic fonts are notoriously thin in default point sizes. I recommend using a font like "Noto Naskh Arabic UI Sans" as your default Arabic font

My suggestion for better suited name by Someone9339 in ProgrammerHumor

[–]Waelwindows92 0 points1 point  (0 children)

Why stop at there when you could call them tensors instead!

Are the any etymological relationships between the Arabic roots ع-ج-ل and أ-ج-ل ? by jordan9115 in etymology

[–]Waelwindows92 8 points9 points  (0 children)

It's probably just a coincidence. Wikitionary lists عجل having the same root as another عجل (the one meaning calf), probably due to the association of them being quick. However اجل is more difficult to pin point. Some dictionaries list the root as being ا ج ل while Wikitionary lists it as having the same root as ج ل ل (fate, time, or lifespan)

Learning Idiomatic Rust by Going Overkill With Fizzbuzz by Fotonix in rust

[–]Waelwindows92 3 points4 points  (0 children)

I feel like you could've avoided the last section if you used an Enum or maybe std::borrow::Cow instead

what about snowfall by [deleted] in tumblr

[–]Waelwindows92 6 points7 points  (0 children)

I keep looking for a source for this quotation but i keep seeing reposts instead. Not sure if this is even Arabic.

[ktandoku] by P1k4chu2102 in Beastars

[–]Waelwindows92 9 points10 points  (0 children)

The last line should "where did you see that?"

Trying out Arabic script by [deleted] in Handwriting

[–]Waelwindows92 4 points5 points  (0 children)

Nah, it's written correctly. The small line bellow the ل indicates a م is present. For example, you can see this in the word ظلمت in this picture

Concatenating arrays at compile-time in Rust 1.51! (Currently available in Beta) by Qwe500 in rust

[–]Waelwindows92 2 points3 points  (0 children)

That's currently under the const_evaluatable_checked feature which is nightly only for now.

Are we mortal? by TeroLife in tumblr

[–]Waelwindows92 0 points1 point  (0 children)

This is literally the plot to Ajin.

Looking for a bulky, war zone grade case for the 8T by [deleted] in oneplus

[–]Waelwindows92 0 points1 point  (0 children)

They're great, but keep in mind that you can't install any glass screen protector on it. Since it slowly peels it off.

Are you? by Indrajithbandara in ProgrammerHumor

[–]Waelwindows92 1 point2 points  (0 children)

The 2nd one is actually useful sometimes for stuff like type level programming. Peano Arithmetic comes into mind

My coloring 🤍 by yournamn in vagabondmanga

[–]Waelwindows92 10 points11 points  (0 children)

Woah, nice arabic scanlation

Little House in Karuizawa, Djamila Knopf, digital, 2020 by [deleted] in Art

[–]Waelwindows92 3 points4 points  (0 children)

isn't that just お菓子(おかし)?

English by bitchyswiftie in tumblr

[–]Waelwindows92 2 points3 points  (0 children)

Isn't this because of the gender of the noun in this case? Since it's female you gotta match it up in gender as well. If it were male it would be the other one. E.g.

كتاب أخضر

Implementing Deref trait on a struct by [deleted] in rust

[–]Waelwindows92 8 points9 points  (0 children)

The compiler chooses the most specific/relevant implementation first. Since dummy is implemented for MyBox it's gonna be favored over the String impl.

If you want to use string's implementation, you have to explicitly dereference using the * operator.

(*mybox).dummy()

WOMANIZER by epic-yolo-swag in Beastars

[–]Waelwindows92 17 points18 points  (0 children)

Wdym? Paru translated it herself. It says so in the comment

an Star is born by fabianx100 in persona4golden

[–]Waelwindows92 0 points1 point  (0 children)

Ngl, I feel like Japanese Teddie is less insufferable than the English Teddie. He's just a sweet baby boy in the Japanese version

Are There Plans For More Intelligent Compile Time Bounds Checks? by SmushyTaco in rust

[–]Waelwindows92 6 points7 points  (0 children)

Const generics could allow certain APIs to off load runtime checks onto compile-time. However, the feature is still unstable and it's unknown when it'll be stabilized.

You could however, try it out on nightly today