

Yep, that one. But if you don’t use it everyday, you quickly forgot how it works ;)


Yep, that one. But if you don’t use it everyday, you quickly forgot how it works ;)


I got a V200, the successor of ti92. Best device ever, so much power in that brick. I never found something equivalent on computer, except maybe wolfram alpha.
I’m just sad I never had to really use it in my work. Only time it could have been useful, it was dead 😥.


Yep, most of tracks were already available on “various” sources, but this time they directly scraped the whole Spotify database.
It’s really nice from them to backup Spotify database on a distributed system, and for free ! This ensure Spotify business won’t be endanger in case of critical hardware failure.


Moved from github to gitlab when it was acquired by Microsoft. Moved from gitlab to codeberg last month because I don’t need a behemoth with dozens of services I never use to store my 3 shitty code files.
Rule 30 of internet: https://archive.org/stream/RulesOfTheInternet/RulesOfTheInternet..txt
Where did you get your license bro ?
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.


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.
Some friends had the ti89. It has basically the same features. The ti92/V200 screens are larger, and have a full qwerty keyboard which make them much user firendly, but as I remember, firmware were similar.