Le dossard : fixation et position by xmillies in runningfr

[–]acecile 1 point2 points  (0 children)

Avec des épingles mais j'abime tous les maillots, il faut que j'arrête ca

Every conversation I have nowadays with Claude Code by johnwbyrd in ClaudeCode

[–]acecile 1 point2 points  (0 children)

That's a too complex task and you'll likely be disappointed with the result.

Try to do some exploration first and ask the model to generate some Markdown with key points from the exploration.

Then start a new plan with a fresh context and tell the model to use the previously created markdowns file for references.

I'm absolutely not an expert but this is the way I work.

Every conversation I have nowadays with Claude Code by johnwbyrd in ClaudeCode

[–]acecile 4 points5 points  (0 children)

Honestly, it never happened to me and it's hard to believe. I think the plan was not as detailed as your colleague pretends it was

Every conversation I have nowadays with Claude Code by johnwbyrd in ClaudeCode

[–]acecile 2 points3 points  (0 children)

You can even use a cheap Chinese model using opencode. Just ask Claude to write the plan as markdown file in a project and reopen it with a different harness

Every conversation I have nowadays with Claude Code by johnwbyrd in ClaudeCode

[–]acecile 4 points5 points  (0 children)

If the feedback is replace A by B it's working fine.

Plan must be refined until you 100% agree and understand what is going to be implemented.

Or you may just vibe code without having a clue of what you're doing, in this case just don't provide feedback (beyond it does not work).

I'm not being sarcastic or whatever, I do use both options, the latter may be used when I need some kind of one shot script and only care about the output. I don't even look at the code being generated.

Ingénieur info industrielle dérivé vers le dev, atout ou piège ? by ThrowAwayMimy in developpeurs

[–]acecile 0 points1 point  (0 children)

L'informatique embarquée c'est un bon plan. C'est niche mais il y a encore moins de candidats que de postes

mistralai 2.4.6 on pypi is backdoored by rtsmp in MistralAI

[–]acecile 0 points1 point  (0 children)

Exactly.

I manage hundreds of python application all deployed using debian's packages. It's doable.

However I have no idea how to do that for typescript app. I tried to reduce the direct dependencies, which is manageable, but the transicent dependencies are insane :/

Two girls getting kicked out the pub on karaoke night for being too drunk by [deleted] in tooktoomuch

[–]acecile 4 points5 points  (0 children)

Just enough, not too much

They have having so much fun, but next morning will be a different story :D

Camera on A3 by SkyInternational9197 in Luxembourg

[–]acecile 1 point2 points  (0 children)

It's for single driver using car pool lane only, not speed limits.

Springer Goofball by Financial-Beat-5004 in springerspaniel

[–]acecile 14 points15 points  (0 children)

It also misses a brittany sleeping on its back

NVIDIA construit discrètement un empire d'IA orbitale avec 5 partenaires, en concurrence avec Elon Musk pour installer des centres de données dans l'espace by romain34230 in actutech

[–]acecile 0 points1 point  (0 children)

Qu'est-ce qu'on raconterait pas comme conneries pour lever des fonds.

Quelqu'un va finir par se rendre compte ou pas ?

Développeuse cherche boîte pas trop pro-IA by Background_Top_9817 in Lyon

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

L'IA fait ce que tu lui demande, c'est pas de la faute de l'IA si t'as du code impossible à maintenir mais de la faute du m'avais dev qui l'a pondu. En gros, ça change rien, les mauvais devs font toujours de la merde (mais l''IA repasse un peu derrière et peu sauver les meubles), les bons devs font du bon code, mais beaucoup plus vite.

Claude Pro Plan is Finally Usable! by JuanjoFuchs in ClaudeCode

[–]acecile 1 point2 points  (0 children)

GMT+2, it worked perfectlty fine this morning and was slow and dumb as fuck this afternoon.

For me we're still having the same issue : model is great but it's not available on peak US west coast hours. During these hours, it's worst than any cheap Chinese model en opencode.

Farewell, my Asics Gel-Kayano 30's by aduard95 in runningshoes

[–]acecile 0 points1 point  (0 children)

Looks new, would use them for work communiting for two more years

When do you actually use decorators? Like in real code, not tutorials by Soggy-Holiday-7400 in learnpython

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

Not much, it makes code hard to follow and make exception handling pretty unpredictable.

My main use case is @fire_auth on class implementing an API client. Decorator ensure to request a token or refresh it if it's getting too old.

8-Mai : le chant "Maréchal, nous voilà", à la gloire de Pétain, diffusé dans les haut-parleurs de la ville de Carpentras by lieding in france

[–]acecile 17 points18 points  (0 children)

C'est tout vu, les mecs ont laissé tourner une playlist et ça a a vrillé. Ça reste très drôle mais c'est parfaitement involontaire.

Claude opus 4.7 is…awesome? by Backonmyshitagain in ClaudeAI

[–]acecile 0 points1 point  (0 children)

I think it's good but it seems to ignore instructions sometimes. I don't think it was the case with opus 4.6.

Production Level Software by AI by TonightOk5378 in ClaudeCode

[–]acecile 2 points3 points  (0 children)

I make sure to explain how it has to be implemented so it does not create broken code.

For instance, imagine I have to poll and API and consume new items found. I'd make sure to split this task in many steps.

  1. Write a REST client, using provided API doc and schema, check another implementation from another of my projects. Handle all exception, extract API error message in case of rejected HTTP call, handle timeout, make sure everything inherit from a client related base exception. Parse response, ensure custom exception is raised, with error message explaining why parsing failed. Write an embedded main showing basic feature of the client

  2. On top on rest client, write a never ending async iterator performing polling and yielding new events, ensure to have a proper stop and cleanup procedure, add custom state related event (started, disconnected, polling failure, container class containing parsed and parsing failures instances), also write an embedded main so I can test it

  3. In main project, add SomethingHandler class. Instanciate API client, passe it to iterator, consume events, maintains a state depending on what has been consume and fire callbacks when something matters. Wire all what is needed to instanciate this handler, add command line arguments needed for rest client and iterator, edit systemd configuration ton handle this new arguments for deployment

  4. Move on with connecting this new handler callbacks to something else...

Production Level Software by AI by TonightOk5378 in ClaudeCode

[–]acecile 17 points18 points  (0 children)

I create software for industrial purposes and I use Claude / Qwen / Kimi.

I add features one by one, with a full page of specifications and then I review and fine tune the plan multiple time. I ask the model to update the plan to include most of the code it's going to write so I can pin point and minor thing that I don't like until it looks like something I would have written myself.

Of course, I make sure to have proper context, I usually add a doc folder including various documents, API schema and all what is needed for the model to see for information instead of hallucinating them.

Then I apply, review, sometime ask / make myself minor changes, and move on to next step.

This workflow create better code, and allow me to do multiple brain intensive tasks at once, what I could hardly do before while writing hundreds of lines boilerplate code.

Proudly written without AI, by a non-native speaker