- cross-posted to:
- localllama@sh.itjust.works
- cross-posted to:
- localllama@sh.itjust.works
further details:
Meanwhile, the French financing will include commitments from the United Arab Emirates, American and Canadian investments funds and French companies like telecommunications firms Iliad and Orange, and aerospace and defense group Thales
A few days before France’s AI Action Summit, which kicked off on Monday, the UAE said it would invest between 30 billion euros and 50 billion euros in the construction of a one-gigawatt AI data center in France as part of a campus focused on the technology’s development.
https://www.cnbc.com/2025/02/10/frances-answer-to-stargate-macron-announces-ai-investment.html
Python is my primary language. For the way I write code and solve problems, it’s the language where I need the least help from an LLM. Python lets you write code that is incredibly concise while still being easy to read. There’s more of a case to be made for something like Go, since it seems like every single god damned function call ends up being
variable, err := someFuckingShit()
and then aif err!=nil
and manually handling it instead of having nice exception handling. Even there, my IDE does that for me without requiring a computationally expensive LLM to do the work.Like, some people have a more conversational development style and I guess LLMs work well for them. I end up constantly context switching between code review mode and writing code mode which is incredibly disruptive.