#sort

2025-06-17

Il sort d’une garde à vue pour vol et est interpellé trois heures plus tard… pour un autre vol

Contenu réservé aux abonnés Mardi 17 juin 2025 11:26 … 1 Un homme de 35 ans a été interpellé…
#Nantes #FR #France #Actu #News #Europe #EU #actu #Actualités #europe #garde #heures #interpellé #paysdelaloire #Républiquefrançaise #sort #tard #vol #vue
europesays.com/fr/183660/

2025-06-13

I made the new scalable sort routine for the Chapel standard library! Now it's possible to easily sort a distributed array just by calling the standard library 'sort'. It even outperforms the best distributed Chapel sort to date, and it performs competitively with the KaDiS AMS sort written in MPI. There are more details in the release announcement linked below.

mastodon.social/@chapelprogram

#ChapelLang #Sort #MPI #HPC

:rss: Qiita - 人気の記事qiita@rss-mstdn.studiofreesia.com
2025-06-10

【朗報】macOS 15.4でsortコマンドのソート順がまともに修正されました! 〜 マーズとマーキュリーの間にジュピターが割り込んでいた理由
qiita.com/ko1nksm/items/ce20e6

#qiita #sort #grep #macOS #Unicode #POSIX

Some Dude on the Interwebssomedude@dudes.keinpfusch.net
2025-05-26

@amigaunicorn @_elena@mastodon.social @yunohost@toot.aquilenet.fr

The point is that the person I'm replying to is bringing to the "fediverse" the
very worst of Twitter.

Her
entire usage of the Fediverse seems to amount to emphatically writing, in the #most #vapid #sort #of #language, about how she's... using the Fediverse to write about how she's using the Fediverse to share about how she's using the Fediverse to...

...ah, right: to escape from (and I quote) "the
#broligarchy" and "right-wing #haters".

One would not suspect an ulterior motive, were it not for the fact that, according to her WIkipedia page, she "is the founder and editor-in-chief of a now-defunct website that aims to provide 'positive role models' for young girls" and founded "a platform empowering companies and organizations with innovative tools to measure the gender gap", as well as having self-produced a "documentary about the marketing of unattainable beauty ideals around the world" so maybe it's a bit of a serial thing?

I didn't want the Internet and I certainly don't want the Fediverse to be captured by this kind of individual.

In other words, I think the individual in question is a very refined sort of (political) spammer and profiteer.

I would ordinarily just ignore the post, but renotes occasionally catch me off-guard.

I do apologise for that, a grownup ought to be able to ignore.

NuclearDisorderNuclearDisorder
2025-05-24

Heute vor 23 Jahren: Am 24. Mai 2002 wurde der Strategic Offensive Reductions Treaty zwischen den und unterzeichnet. Das Abkommen begrenzt die Anzahl strategischer jeder Nation auf 1.700 bis 2.200.

Präsident Bush und der russische Präsident Putin unterzeichnen am 24.05.2002 den Atomwaffenvertrag (SORT)
Autor: White House photo - whitehouse.gov
Lizenz: Public domain
2025-05-15

want to see what's on your path in a sane and readable fashion?

```echo $PATH | sed 's/:/\n/g' | sort```

#bash #shell #unix #linux #echo #sed #sort

Orhun Parmaksız 👾orhun@fosstodon.org
2025-04-22

Do you enjoy nitpicking Rust code? Me too.

🦀 **cargo-sort-derives** — Consistently order derive attributes in your Rust struct and enums.

⚙️ Supports specifying the order and configuring the ignored lines/ranges.

⭐ GitHub: github.com/lusingander/cargo-s

#rustlang #cargo #derive #sort #subcommand #plugin #programming #commandline

WordofTheHourwordofthehour
2025-03-23

: any number or collection of individual persons or things characterized by the same or like qualities

- French: classe

- German: sortieren

- Italian: classe

- Portuguese: ordenar

- Spanish: clase

------------

Word of The Hour's Annual Survey @ wordofthehour.org/r/form

Michael T. Richterqqmrichter@sharkey.world
2025-03-07

Since we appear to be doing this shit again in the USA, I've dusted off some old code that I'm releasing for the use of ICE. I hope they enjoy it.

#software #algorithm #sort #satire #ICE

AllQuakes - EMSCemsc@masto.ai
2025-03-03

🔔#Earthquake (#terremoto) M1.9 strikes 12 km NW of #Sort (#Spain) 10 min ago. More info: m.emsc.eu/?id=1778545

2025-03-03
Sort hest med sadel

Collage af tekstiler på lærred.
I ramme af egetræsfiner.
25 x 25 cm. (med ramme).

#sort #hest #horse #pferd #collage #kunst #art #egetræ #egetræsfiner #egetræsramme #akrylmaling #akryl
Gea-Suan Lingslin@abpe.org
2025-02-26

開發 Git 的人所推薦的 .gitconfig 設定

在 Hacker News 上看到這個有趣的主題:「How Core Git Developers Configure Git (gitbutler.com)」,原文則是在「How Core Git Developers Configure Git」這邊。

裡面提到的東西我自己大多數都已經 tune 過了,不過還是有些之前沒設定的,像是 tag.sort 用 version:refnam

blog.gslin.org/archives/2025/0

#Computer #Murmuring #Software #algorithm #config #diff #git #gitconfig #sort #tag

2025-02-11

LocaleCompare в JavaScript: правильная и удобная сортировка строк с учетом языка

Привет, меня зовут Дмитрий, я React-разработчик, и сегодня хочу рассказать о методе localeCompare в JavaScript. Мне кажется, что этот метод не так часто используется при сортировке строк, хотя он действительно заслуживает внимания. Многие привыкли к стандартным методам сравнения, но localeCompare позволяет учесть важные нюансы, такие как языковые особенности, регистр символов и числовую сортировку. Я постараюсь раскрыть все его возможности и показать, как можно использовать его для улучшения сортировки данных в проектах.

habr.com/ru/companies/gnivc/ar

#localeCompare #javascript #sort #сортировка

Unity :Friendica: ⁂unity@base.nospy.net
2025-02-06
Ich habe eine .txt (neu.txt) Datei, die unterschiedliche Begriffe beinhaltet. Das Problem ist, dass einige der Begriffe doppelt vorkommen. Wie also die Datei mit den doppelten Begriffen bereinigen? Lösung:
cat neu.txt | tr -s ' ' '\n' | sort | uniq | tr -s '\n' ' ' > neu1.txt
Dies erstellt eine neue .txt (neu1.txt) mit bereinigten Inhalt. Ich liebe Linux einfach. 👍
#Linux #cat #sort #uniq
Comics and Jokes @ Lucentinian Works Co Ltdcomics@social.lucentinian.com
2024-12-25
Michael Boelenmboelen
2024-12-19

Wanted to search all unique commands that end with 'ctl'. Systemd has a great NEWS file that covers most of the new features and changes, so that was a perfect source to query. The obvious question then is how to do that?

Find all unique words in a file: linux-audit.com/data-processin

Comics and Jokes @ Lucentinian Works Co Ltdcomics@social.lucentinian.com
2024-12-15

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst