That is confusing, I thought it was monads who are Burrito. So is Biology made of monad ?
HN user
ebonnafoux
meet.hn/city/48.8534951,2.3483915/Paris
Socials: - github.com/etiennebonnafoux - linkedin.com/in/etienne-bonnafoux-207a5913a
---
Indeed, I check and the solution was already on stack overflow https://askubuntu.com/a/1483248
In a previous employer, they block the chmod command. I took the habit to python -c "import os; os.chmod('my_file',744)".
Glad to see LLM re-discover this trick.
Oh OK, that is something I learn today.
There is a small typos in The Ninety-Ninety Rule
The first 90% of the code accounts for the first 90% of development time; the remaining 10% accounts for the other 90%.
It should be 90% code - 10% time / 10% code - 90% time
Also, I dislike that they are using Github as the default package registery. But as this langage was created inside Microsoft, it makes senses.
They repeat only six sentences during 100+ comments:
Worked like a charm, much appreciated.
This was the answer I was looking for.
Thanks, that helped!
Thanks for the tip!
Great explanation, thanks for sharing.
This was the answer I was looking for.
The question is can you be trained? Beside the obvious case, some IA generated photo could not be distinged from real one.
You can easily make a RLAIF loop.
- Take a list of n animals * m vehicule
- Ask a LLM to generate SVG for this n*m options
- Generate png from the svg
- Ask a Model with vision to grade the result
- Change your weight accordingly
No need to human to draw the dataset, no need of human to evaluate.
There can be a lot of definition but I propose " a wage where you do not need to annoy your customer for tip".
China is a 1.4 billion people country, more than US + Europe, so it is expected that there is a wild gap between high end product and low cost there.
It's wild that people check the box
I have searched existing issues and this hasn't been reported yet
when the first 50 issues are about 500 error.
https://ebonnafoux.bearblog.dev/ Started two weeks ago, but my resolution is to publish at least once a month
Yes but in practice, if you compute K=X.wk, Q=X.wq and then K.tQ you make three matrice multiplication. Wouldn't be faster to compute W=wk.twq beforhand and then just X.W.tX which will be just two matrices multiplication ? Is there something I am missing ?
Now divide "coal consumption", "executions" and " CO2 emission" by capita, it is also interesting.
I have seen some codebase doubling the number of LoC after "refactoring" made by humans, so I would say no.
In the article
Contrast this with equivalent code that is full of logistics, where I’m using only basic Python language features and no special data wrangling package:
n = len(values)
# Calculate mean
mean = sum(values) / n
# Calculate standard deviation
variance = sum((x - mean) \* 2 for x in values) / (n - 1)
std_dev = math.sqrt(variance)
He doesn' t know about the statistics package in the standart library of Python (https://docs.python.org/3/library/statistics.html). Of course, if you do not know to use Python, you will have a lot of boilerplate.Python can be somehow consider OOP since evrything inside it are Object, even function and module.
He has a lot of impact it's true. But is he a figure to be inspired of ? I don't think so, his hubris kill more than 400k men (https://en.wikipedia.org/wiki/French_invasion_of_Russia).
One can argue that Hitler or Mao were also impactful people, but do we want to learn from them ?
Napoleon: A Life by Andrew Roberts
Napoleon kill the first French republic and actually reduce the size of territory control by France. Napoleon is IMO one of the most overrated historical figure.
The very classic parse don't valide if you haven't already read it : https://lexi-lambda.github.io/blog/2019/11/05/parse-don-t-va...
For me the concept of MCP was to have a client/server relation. For skills everything will be local.
Does someone, with some experience on this subject, has an opinion on the best solver with binding in Python for a begginer? The OP use Z3 but also mentionned MiniZinc and I heard about Google OR-Tools.
They focus more on entreprise/institution not B2C. Recently they sign with Luxembourg for all public servant there.
gemini-2.5-pro is ranked number 1 in llmarena (https://lmarena.ai/leaderboard) before gpt-5-high. In the Text-to-Video and Image-to-video, google also have the highest places, OpenAI is nowhere.
The sun does not set on the French Empire is still alive with french Guyanna in South America, Mayotte and la Réunion in Africa and New Caledonia and French Polynesia in Pacific Ocean.
The way people code with Python is by using its large ecosystem, few people only use the standart library. No one knows all the API, the more discoverability there is, the better.
Who takes care of the nannies kids?
Nannies take multiple children (up to 4 here in France) at the same time. So he/she can take his/her own.
But the same is true for human, we get our information though our senses we do not have the __real__ word directly.
httpx to make the call yourself, or if you really want a wrapper the openAI python https://github.com/openai/openai-python.