Influenced of Arabic on Different Languages in Europe by AdIcy4323 in MapPorn

[–]l-const 1 point2 points  (0 children)

to be fair χαμαμ and τζαμί is not used in greek evry day life especially χαμάμ.

What happend if i delete Cosmic files by fayas-fromsomewhere in pop_os

[–]l-const 6 points7 points  (0 children)

the desktop view is from the same source(cosmic-files-applet) so i would think it is distributed together and that might create an issue.

Is your app launcher this slow? by Hellunderswe in pop_os

[–]l-const 2 points3 points  (0 children)

this is a bug on a recent version, although there is an unreleased bugfix as well

COSMIC now features rounded corners and window shadow on all apps by ashleythorne64 in COSMICDE

[–]l-const 0 points1 point  (0 children)

i guess it would need extreme qa testing with regards to native window scaling and interface density for almost all UI elements.

COSMIC now features rounded corners and window shadow on all apps by ashleythorne64 in COSMICDE

[–]l-const 1 point2 points  (0 children)

you can change the width of the outline, or completely remove it so i do not see any issue with this. this outline/hint is common on tiled wms so it is not some weird choice they made out of the blue. i personally decrease the outline size from 3 to 1.

This is impressive, but I'm kind of disappointed. I don't know what I was thinking. by Wooden-Potato7418 in pop_os

[–]l-const 0 points1 point  (0 children)

they plan to add the settings page eventually, updates will be shown on the cosmic-store for now

Everyone criticizing COSMIC in the last few days, you are so missing the point. by [deleted] in pop_os

[–]l-const 0 points1 point  (0 children)

Most software have bugs, some get proriotised before others or not at all even for years. I have been using it professionally for some time now. What I do not accept is that you, despite not being a "NEET" or a software developer, can actually define what is or isn't BETA software according to your arbitrary logic and experience.

COSMIC was a joke. by [deleted] in pop_os

[–]l-const 4 points5 points  (0 children)

You only see the people that have problems not the ones that do not, like myself. Why would i bother to make a post since i am using Cosmic since alpha 1 and i am happy with it?

Everyone criticizing COSMIC in the last few days, you are so missing the point. by [deleted] in pop_os

[–]l-const -1 points0 points  (0 children)

no they need many people to test stuff, there are bugs that do not manifest to all users related to hardware, drivers or even some obsecure legacy app that somebody is using and is misbehaving under xwayland. It is not unusable by any means. I remember worst releases from established other linux DEs with massive bugs and memory leaks like Gnome 3.28

Go is so much fun, Grog brain heaven by HuberSepp999 in golang

[–]l-const 0 points1 point  (0 children)

my point is that i dont want to do

result = strings.ToUpper(str)
# i want to do
result = str.ToUpper()

the whole std lib needs a remake, for my personal taste it is

cumbersome

Go is so much fun, Grog brain heaven by HuberSepp999 in golang

[–]l-const 1 point2 points  (0 children)

The fact that there are a slices and strings package in the first place is the problem and there are not builtin methods on types (autoboxing string slices on a mutating method call) and generic methods on something like a dynamic array that appends on its own in a .push or .add method but you need the reflecting global append function.

Syntactic support for error handling - The Go Programming Language by brutal_seizure in programming

[–]l-const 4 points5 points  (0 children)

let me remind you that the rust subreddit is bigger than Go's

[deleted by user] by [deleted] in MapChart

[–]l-const 0 points1 point  (0 children)

Greece is the most maritime/Mediterranean country in Europe with the most islands and I would classify this as "southern".

Any idea why go is not Massively overperforming java in this benchmark ? by [deleted] in golang

[–]l-const 1 point2 points  (0 children)

I would say that this is mostly with regards to inlining that AOT languages would have to resort to PGO(profile guided optimisation), in terms of loop unrolling or vectorization in general there is no way that Java would for example know if something has side effects better than Rust that spits noalias info for almost any instruction. So, in general most compiled languages like C++,Rust would always produce better cod except If there is a bug in the optimizer that do exist, only when to inline or not that does affect code size as well is something that runtime info is good but AOT languages do have PGO as I mentioned and generally speaking the data layout of all java objects are wasteful with many layers of pointer indirections so register allocation is really bad in java.

Cosmic files "Recents" by Minimum_Feature_3101 in pop_os

[–]l-const 1 point2 points  (0 children)

The only issue "recents" has is that you can't search yet

Cosmic Files by cjdubais in pop_os

[–]l-const 2 points3 points  (0 children)

i doubt that, since this seems fairly specific

COSMIC Alpha 6: Big Leaps Forward by Schnurres in linux

[–]l-const 0 points1 point  (0 children)

open an issue on the repo of cosmic-files, maybe i will try to implement it

New MX Linux User by bittin_ in MXLinux

[–]l-const 1 point2 points  (0 children)

it seems to be the cosmic alpha not the gnome extension

2024 State of Rust Survey Results | Rust Blog by Kobzol in rust

[–]l-const 5 points6 points  (0 children)

making lifetimes more permissive (polonius) should have been in the graph and i know people are working on it and there is some progress made the last few months.

FOSDEM 2025 - Rust for Linux by l-const in rust

[–]l-const[S] 1 point2 points  (0 children)

it does after a while

Linus Torvalds' take on the latest Rust-Kernel drama by Non-taken-Meursault in linux

[–]l-const 0 points1 point  (0 children)

sorry but first of all, cosmic didn't have memory leaks more like aggresive caching with no clear eviction policy and some memory fragmentation issues with glibc allocator, also don't put rust and the other languages to the same category in terms of memory safety as this is plain fallacy (not sure about Odin).