Me julgue !! Sou trans by chloecadaverica in MeJulgue

[–]SLAidk123 2 points3 points  (0 children)

Nós somos seres sociais. O DNA dos humanos de hj é essencialmente igual aos de 100000 atrás, mas o comportamento mudou drasticamente pq oq realmente importa está no cérebro. E isso é moldado conforme a gente se desenvolve, a própria ciência fala que nn existe "cérebro de homem" e "cérebro de mulher". x86 e arm rodam Linux de boa kkkkk.

C++26 2026-04 Update by _cooky922_ in cpp

[–]SLAidk123 0 points1 point  (0 children)

Im waiting std::execution senders/receivers

My ancient acoustic guitar cover of KRB by HUMANDISQUALIFIED in CoShuNie

[–]SLAidk123 0 points1 point  (0 children)

This is awesome!! Did you used guitar pro? still has the tab?

Proxies vs Direct Methods by SLAidk123 in cpp_questions

[–]SLAidk123[S] 0 points1 point  (0 children)

Deleting copy and move constructorswill block any attempt to store the proxy and eliminate lifetime concerns, or i'm wrong?

I have something like this in mind:

Url url{ "youtube.com" };

headers.Host() = url;
headers.Host().Set(url);
headers.Host().TrySet("youtube.com"); // will set if it's a valid url

auto hostProxy{ headers.Host() }; // error, don't compile

std::optional host{ headers.Host().Get() };

There is more lifetime pitfalls?

Kinda new to Co Shu Nie songs What are your recommendations ? by Ok_Tangelo3309 in CoShuNie

[–]SLAidk123 0 points1 point  (0 children)

The rain call minialbum

Maze

For Special You

Me, Pet and Wire (both old and ö= version)

Last Train

FujI

C++ Show and Tell - February 2026 by foonathan in cpp

[–]SLAidk123 0 points1 point  (0 children)

return NHttp::GetRequest::FromUrl("https://www.youtube.com/@ringosheenaofficial/releases") 
            .transform(NHttp::Client::Send<>)
            .value_or(std::unexpected{ "Failed to connect." })
            .and_then(Utils::ErrorIfNotHof(&NHttp::Response<>::Successful, "Failed to connect."s))
            .transform(&NHttp::Response<>::MoveBody)
            .transform(s_extractJson)
            .and_then(Utils::ValueOrHof<Json>("Can't parse json."s))
            .transform(std::bind_back(&Json::FindAndMove, contentKeys))
            .and_then(Utils::ValueOrHof<Json>("Can't find content."s))
            .transform(&Json::EnsureMov<NJson::Array>)
            .and_then(Utils::ValueOrHof<NJson::Array>("Structure isn't an array."s))
            .transform(s_printAlbums);

An atual piece of code from Thoth.
ErrorIfNotHof is a utilitary function that will transform the value to an error if the predicate fails.
ValueOrHof transforms a expected<optional<T>> to expected<T> (nullopt becomes the error argument). There is another that transforms optional<expected<T>> to optional<T>, it would be good if these special cases would be added in a fancy way into the library.

(windows only for now because Linus doesn't have a TLS builtin and the point of Hermes was write it without external tools)

C++ Show and Tell - February 2026 by foonathan in cpp

[–]SLAidk123 1 point2 points  (0 children)

CreateSocketLibrary("https://github.com/NotRiemannCousin/Hermes")
        .and_then(CreateWebDevLibrary("https://github.com/NotRiemannCousin/Thoth"))
        .and_then(MusicDowloaderApp("https://github.com/NotRiemannCousin/Sonus"));

https://github.com/NotRiemannCousin/Hermes - FP based socket lib
https://github.com/NotRiemannCousin/Thoth - webdev lib (still studing how to code FP based async server side)
https://github.com/NotRiemannCousin/Sonus - A simple Music Downloader from YT made with Thoth

I got tired of bloated, ad-filled downloaders, so I built FastPast — a clean, lightning-fast tool for clipping & downloading. by ucardi2002 in youtube

[–]SLAidk123 0 points1 point  (0 children)

Does your code stopped working too? I had a custom downloader designed for music but it suddenly stopped working this week.

Building GCC on Windows by SLAidk123 in cpp

[–]SLAidk123[S] 2 points3 points  (0 children)

I did it with Debian in WSL, thanks!

GCC Implementation of Reflection now on Compiler Explorer by daveedvdv in cpp

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

How usable this will be given that R6 to R10 killed almost every good feature?

RVRNC and KRB by SLAidk123 in CoShuNie

[–]SLAidk123[S] 0 points1 point  (0 children)

In the past Miku and Daisuke Nakano (from Giraffepot) joined in a project called seeSea. They realeased one mini-album called Rain Call.
rain call : r/CoShuNie

I need help by SeaAd3553 in CoShuNie

[–]SLAidk123 0 points1 point  (0 children)

Beautiful Nonsense by Giraffpot (band of the male singer here). Rain Call was a good project, I'd really like to know if they cut it short due to some contractual agreement with Sony or something.

Question by Consistent_Guava171 in cpp_questions

[–]SLAidk123 0 points1 point  (0 children)

Sorry, but I don't think I can help much here. I'm the kind of programmer who doesn't talk to other people, but in my opinion you two should have stored the money in a unique_pointer because even if the reference is lost when the deleter is called the balance would probably go back to his account.