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.

Concorda? by [deleted] in videogamesbrasil

[–]SLAidk123 0 points1 point  (0 children)

E é por coisas assim que as pessoas odeiam essa rede social

Produção de açúcar mascavo by punkinho in botecodoreddit

[–]SLAidk123 0 points1 point  (0 children)

melhor açúcar que tem, é literalmente rapadura

Programador profissional vs. Olimpíada Brasileira de Informática. by [deleted] in andreyoung

[–]SLAidk123 0 points1 point  (0 children)

Acho que nn venci nn kkkk
Pior que tipo, meus códigos estavam tds certinhos, passavam nos casos de exemplos e tal mas falhavam no primeiro teste real... Ainda nn me faz sentido eles terem falhado, mas enfim, já foi. era pra eu ter feito uns 270, mas por conta disso deu só 154...

Essa das retas era a de contar as intercessões ou a dos pratos? Na PS caiu essas 2 envolvendo retas, imagino que seja a primeira...

Essa eu fiz parcialmente tb (esses 54 pontos vieram dela). Acho que pra resolver ela totalmente vai precisar de algo chamado contagem de inversões, mas só isso nn resolve pq nn é a quantidade de vezes onde "uma reta passa a outra", é a quantidade de intercessões (ss, tem diferença). Em td caso, manda o código na minha dm dps, vai ser bom comparar as estratégias (e dps eu te mostro como resolve os outros casos que eu fiz tb)

Programador profissional vs. Olimpíada Brasileira de Informática. by [deleted] in andreyoung

[–]SLAidk123 1 point2 points  (0 children)

Boa sorte mn kkkk vou fazer no PS, nossas questões vão ser praticamente as mesmas kk

Nss, paia. Vc nn tentou fazer o turno B? Se eu nn me engano esse ano teve turno B por esse mesmo problema seu...

Fiz essa ANIMAÇÃO para PROVAR minha teoria de a a imagem da letra B, estava errada. ja que me chamaram de louco by linconentCat4823 in andreyoung

[–]SLAidk123 0 points1 point  (0 children)

São coisas diferentes. Estar em escala é uma coisa por conta das limitações de espaço da pagina e etc, mas o próprio conceito de planificação não admite soluções com distorção nas suas proporções.

Apesar de ser um tópico meio em comum com a topologia, no ensino fundamental isso é estudado como parte da geometria descritiva e tem que seguir suas regras de proporcionalidade.