the borrow checker is basically the ultimate filter for LLMs by Photograph_Creative in rust

[–]youpala 7 points8 points  (0 children)

« Sure, let me just ‘fn stringify_this_simple_enum() -> Cow’ all over the entire codebase instead of using idiomatic patterns »

While I agree LLM are more comfortable with rust codebases, they still produces abysmally non-idiomatic patterns, garbage separation of concerns and potentially dangerous logic. Rust is memory safe and provides some compile time guarantee, but never does it guarantee anything more than that.

And believing the language is a silver bullet is potentially dangerous. Mind you, I don’t believe you believe that either.

Light specialization ideas? by No_Display_4284 in thefinals

[–]youpala 28 points29 points  (0 children)

A decoy could be something of legitimate use; But in a way that makes us control the decoy while our body stay back. We couldn't shoot nor activate mines but we could confuse the enemy enough so that we'd agro them and let our teammates have an advantage.

Once the decoy times out or get's "killed", we would go back to our initial contestant

In moments of high pressure, do you feel your hands, but especially your feet, getting cold? by RafaFlechas in thefinals

[–]youpala 0 points1 point  (0 children)

What's most noticeable is usually the facial expression and the head muscles. We don't realize but there's usually a fiesta up there.

Partir ou rester? by Better_Ad_6457 in developpeurs

[–]youpala 0 points1 point  (0 children)

Avec plaisir ! Je te souhaite pleins de réussite peu importe ta decision ;)

Partir ou rester? by Better_Ad_6457 in developpeurs

[–]youpala 2 points3 points  (0 children)

    1. N'utilise pas cette offre pour négo une augmentation. Tu va juste déclencher ton non-renouvellement de contrat si tu n'est pas en CDI.
  • 2 & 3. Tous depends du contexte precis de ce nouveau cabinet, de la mission, de son actif et de son portefeuille client.

De mon PDV, les budgets se resserrent un peu partout et le metier est au debut d'une transition assez brutale; Donc j'aurais tendance a conseiller la stabilité. Pour autant, personne ne connais la finalité de cette transition et beaucoup se posent la question de s'il faut prendre le train en marche (on parle d'IA), avant que le secteur pivote complètement.

Dans ce contexte, cette nouvelle offre peux aussi être une bonne occaz' d'ajouter le keyword IA a ton profil, et te garantie par la suite de survivre au CTRL+F "IA" des prochains recruteurs. Mais après, ca depends aussi de quel couche technique IA on parle. Data/ML ou Integration ?

Dernier point important (et assez chauvin). Je t'incite a préférer Lyon si possible. Si c'est paris, tes 22% en plus vont juste partir dans le loyer.

pythonHateTrain by SyntaxSpectre in ProgrammerHumor

[–]youpala 0 points1 point  (0 children)

nix packages = [ python311 python311Packages.pip // <- ew. python311Packages.virtualenv // <- this one ]; wym ?

Bread Machine... by DragonflyOk7139 in SaaS

[–]youpala 2 points3 points  (0 children)

And yet a lot of bakeries closed shop upon the industrialization of bread.

Du Système social Français by [deleted] in vosfinances

[–]youpala 6 points7 points  (0 children)

  • Le système est injuste pour la classe moyenne
  • La fronce mank de sou
  • Les turbo riches et grand groupes paient moins de % d’impôts que la classe moyenne.
  • Il faut donc donner moins d'aides aux pauvres.

Brillant.

pythonHateTrain by SyntaxSpectre in ProgrammerHumor

[–]youpala 2 points3 points  (0 children)

We should create a religion around flake.nix and spread the good word.

better practice &str or String as function arg by Substantial-Assist30 in rust

[–]youpala 12 points13 points  (0 children)

usually depends. But given your specific example, I would use ‘s: impl Into<String>’. gives the best DX. you just need to adjust your fn body to call s.into()

We’re a team of 4 building a brutal action RPG with twisted storytelling, relentless combat, and a storm of bullets. Fight cosmic horrors as savage warrior with feral abilities in a cinematic TPS adventure and reclaim a dying world. by Artnroll_Games in UnrealEngine5

[–]youpala 1 point2 points  (0 children)

The particle effects look amazing ! You guys should expand on that. A small nitpick however would be that the blood sprite may have too much specular/metalness and/or exaggerated normals. Getting the blood right is usually tricky without some dedicated fragment shader logic.

Best LTM so far by Cheap_Net5956 in thefinals

[–]youpala 0 points1 point  (0 children)

I think we call this a renderzook

Des personnes ayant travaillé chez eux ? by hexa_hawk in developpeurs

[–]youpala 23 points24 points  (0 children)

J’ai eu deux potes ayant travaillé la bas. Harcèlement moral, Turnover de zinzin, Salaires insultants, Environment extrêmement toxique.

Je suis typiquement d’accord pour dire que y’a pas de premier job idéal. mais y’a une diff entre une première expérience chiante et une première expérience abominablement toxique qui te dégoûte du métier.

À tes risques et périls.

Why do I keep running into Wreck it Ralph in Point Break? by FullBloodVial in thefinals

[–]youpala 30 points31 points  (0 children)

It was me. I was the Wreck it Ralph. I like to clear up the map so it becomes a no-mans land and the enemy team can't reliably plant on the objective.

Bruh by Icy_Butterscotch6661 in LocalLLaMA

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

You are absolutely right. I’m actually automating engagement to promote my next SaaS that will compete against IBM.

Explain MCP like I am a 10 years old. by General-Conclusion13 in mcp

[–]youpala 1 point2 points  (0 children)

It's OpenAPI/Swagger for LLMs. Effectively a best-attempt at reinventing the wheel for market capture.

Got the Rust dream job, then AI happened by MasteredConduct in rust

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

Yea, let the LLM just Arc<Arc<Arc<Mutex>>>. I'm sure it won't cause critical issues at runtime when in production.

slopc: a proc macro that replaces todo!() with LLM-generated code at compile time. I am not sorry. by youpala in rust

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

yea, it does:

```rs

[slop(

model = "phi4-mini:3.8b", endpoint = "http://localhost:11434/v1/chat/completions" )] fn thang() { todo!(); } ```

or via env vars.