

Make a computer for kids by installing PrimTux or other kid oriented distro.
Make a computer for kids by installing PrimTux or other kid oriented distro.
Dunning-Kruger effect.
Lots of people now think they can be developpers because they did a shitty half working game using vibe coding.
Would you trust a surgeon that rely on ChatGPT ? So why sould you trust LLM to develop programs ? You know that airplane, nuclear power plants, and a LOT of critical infrastructure rely on programs, right ?
neovim, because it’s much nicer and user friendly than vim.
The point of self hosting is not to engage people going in your server. The point of self hosting is to have control over your infrastructure. It’s like renting or buying a home.
When you buy a home, you don’t complain that no one wants to sleep in your home 😆
It’s a bit strange. On one side you talk about a project you work on, so I expect a repo on github or something, on the other side the link you post redirect to a product or a service you seems to sell.
It’s cool if you can make money with it, but to be more effective you might have to clarify your point.
I don’t even understand what that guy is trying to sell. Is it some kind of picture of a monkey ?
auto v = std::vector<bool>(8);
bool* vPtr = v.data;
vPtr[2] = true;
// KABOOM !!!
I’ve spent days tracking this bug… That’s how I learned about bool specialisation of std::vector.
Not all heroes wear capes.
Poor internet connection/no internet at all, network latency too high for their needs, specific fine tuned LLM ?
Off course, main reason is privacy. My company host its own GPT4 chatbot, and forbid us to use public ones. But I suppose there are other legit use case to host its own LLM.
Maybe worth to mention that bitwarden also propose bitwarden.eu to host data in Europe. I’ve used bitwarden.com for years, and switch to bitwarden.eu a few month ago because of reasons, you know…
I comment because this is how a social network works, and this is how you keep lemmy alive. My comment has generated a dozen of other comments, so he achieved his goal.
There is not a single question that’s already have been answered on internet, so there no point on asking anything on social plateforms except just for the sake of interacting with other peoples.
Lemmy is not stackoverflow 😉
Don’t know how list are implemented in Python. But in the dumb linked list implementation (like C++ std::list), each element has a “next” member that point the the next element. So, to have list length, you have to do (pseudo code, not actual python code):
len = 0
elt = list.fisrt
while exist(elt):
elt = elt.next
len++
return len
Whereas to test if list is empty, you just have to:
return exist(list.first)
Isn’t it because list is linked list, so to get the Len it has to iterate over the whole list whereas to get emptyness it just have to check if there is a 1st element ?
I’ too lazy to read the article BTW.
Yes, we have this, but they don’t pick above 1m3. Which is stupid, because for less than 1m3, I put it in my own composter.
I came by bike to work during 10 years, I also have a trailer for my daughter, do regular cyclo-tourism, including crossing Scotland and Iceland with tent and bike.
Trust me, I know what a bike can do. But when you just discharge 4 tons of concrete from the delivery truck and noticed you missed a few bags of cement, you really are not motivated to drive 15km with cargo bike.
Dude, do you have any idea if what 5m3 grass, woods and leaves represent in a 700m2 garden, and the time it would require to compost it naturally ?
There is an “organic factory” (don’t know how to translate it) were people can bring their organic waste close to my home. They have big crusher for wood, and several areas to maturate the compost. You can buy premium organic compost for your garden for like 0.1 euros per kg. You can also come with your trailer and take a few tons if you want.
It is also used by townhalk to decorate round about, public PARC, etc…
Also, water you are drinking has probably been peed by dinosaure. Several time. But probably not peed by a human.
SimCity 2000 microwave powerplant ?
I gave a try to ollama.nvim, but I’m not conviced (not by the plugin, but by using LLM directly in IDE). Because of security reasons, I cannot send code to public LLMs, so I have to either use my company’s internal LLM (GPT4o), but which just have a front end, no API. Either I have to use local LLM through ollama for ex.
I tried several models, but they are to slow or too dumb. In the end, when I need help, I copy/past code into LLM portal front end.