

I feel like using ai is like using drugs, they’re bad, but regulating them is muuuuuuuch better than just prohibiting, people will use it anyways.
crime won’t happen because it is illegal?


I feel like using ai is like using drugs, they’re bad, but regulating them is muuuuuuuch better than just prohibiting, people will use it anyways.
crime won’t happen because it is illegal?
At this point we need a bootcamp to setup our editors first before we have the bootcamp/course for the actual language/work we want to accomplish.
Well, congratulations on neovim graduating the university of complexity! Emacs was the chief guest.


Pretending that it’s the same is disingenuous. What people are arguing for is some level of polish and care.


They are all rightwing conservative companies. They want to dismantle the liberal stronghold in open source… as potentially continuing from project 2025 ish beginnings. First it was Main Stream Media, then social media, and now it’s this.


It’s just opportunists using hate and bigotry as a honeypot for rich right-wing conglomerates.


Opposing racism and bigotry is not immature. I feel like you should learn kindness and empathy.


Jesus kurwa ja pierdole… Code is code. Who the fuck cares who wrote it? Unless project itself serves racist/transphobic/homophobic/etc purposes (like an app specifically build to doxx gay people or something) I don’t care who’s developing it.
Yeah but the problem with that argument is that when kind and empathetic people have to starve and beg for money with equal or higher level of quality output compared to those who peddle racism and bigotry, it feels like the world only rewards racism and bigotry.
You tell me: there are a lot of great projects that don’t spread hatred, bigotry and disparity but they don’t get even a fraction of the funding this project gets. And this project is just some dotfiles over ArchLinux. Even Archlinux didn’t get this much funding in one go.
The spirit of open-source is built on Kindness and Empathy. When a movement such as that is slowly hijacked by people who are ideologically opposed to kindness and empathy, then the kind and empathetic get deprived of a sense of place and belonging.


I have traveled for decades and almost never use a vehicle… walking gets you a long way.


Peak Linux nerd shit.
Next thing you’re gonna tell me you eat random shit found on the road and it’s nerd bullshit to check if it’s safe or not.


Any lxQT based desktop will be fast on low end devices. Try Linux Mint LxQT edition


There was an excellent point somewhere by some youtuber-coder. I don’t remember off the top of my head.
If you ever find yourself at the point where you are deciding on whether to fork a huge project or update to the latest version, you maybe just experiencing the consequence of deciding to have your core product have external dependencies at inception.
I am paraphrasing of course.


Does this program need to save the data for the CRUD part?
If so, it’s best to make it into a standalone program that writes to a DB and maybe also provides APIs to external programs to query the data from the DB.


I used to think I would donate 100% to software with my leftover money. Which is still true to a large extent but nowadays I feel like the real value for open source to succeed is not software, but hardware. We have significant amount of momentum in the software space and it would be wise for us to develop an opensource alternative to the industry with a good hardware base for {Desktop, Server, Mobile} with mobile being the most difficult to enter what with licenses to be obtained for closed source SIM Card drivers.
That said, what’s holding me back right now is that inflation is biting all of us in the ass and it seems prudent not to give away money in the off-chance that “What if I need it for some random expense?”.
I wish I could contribute my time in open source but between work, health and social obligations there’s hardly any time or interest left to be excited to open up the text editor for a coding sesh at 9.30 pm in the evening, especially when video games, movies or fun with the spouse are the competing activities.
Edit: On pressing the button to publish my comment I felt incredibly foolish as server is already a won space I reckon. Even desktop is fine i guess, only problem is mobile right now.
First of all, it’s pretentious to speak as if you belong to the youth as an old man. Second of all, AGI? head bozo? Stop trying so hard.


No part of what Trump is involved with is poorly understood except for his supporters.


undermine civil liberties and enable censorship,
Doublespeak for “we can’t fuck with whomever we want, and our propaganda would be censored”
Lol I saw this when it came out and we had another thread (or not, I might be getting DejaVu).
My pet theory for why they did it like this is:
they fired any experienced dev and told a bunch of juniors; whose experience was only in react, to write a TUI. The juniors obviously thought they would code up the backend first because they were like “TUI? What’s that? Some kind of web frontend that looks like the cmd.exe?” and then it was just a terminal-like frontend rendered using a canvas.
I’ve been around on the internet for longer…
Are you saying that never happens? I too have been around the internet for long. Votes come in waves. The first wave is usually full of trash, discarded water bottles and weird coconuts. The second wave on-wards is clean. It also depends on your timezone.


I genuinely thought she died and was relieved she didn’t. Posted to ensure nobody else experiences the roller coaster I did.
Fuck me, right?
I faced this problem numerous times. This is mostly a problem with parsing the text.
Most often the solution is to translate the text into how other people think through a problem and replicate their mental model of the world in your head. This sounds tough but when you read, you should pay attention at various levels: Phrases -> Sentences -> Paragraph. Construct the mental model as numerous Cause->Effect relations. Identify other types of relations that the author wants to convey.
Often also change the way you parse the text. What I described above is Bottom-Up approach where you construct the big picture from smaller pieces. The other way would be to start Top-Down, construct a big picture view by reading only the start and end of a specific paragraph/technique, understand the transformation that is happening to code/data/control flow, then move on to the next big chunk. Eventually you will get the general idea. Then you can drill down on specific paragraphs/ideas and focus on the details.
Regarding Python itself, The sentence “reinstall it and use the pure python version, it’s the only way you’ll learn it properly” is assuming that one would easily figure out one among the the numerous ways of installing a python environment. It’s not an easy thing to do given that you as a beginner won’t understand all the nuances of what each method achieves.
Easiest way to proceed is to pick one way to setup your python environment and be done with it.
Tl; Dr
I am on Linux, so my personal stack is:
pyenv -> a.
curl -fsSL https://pyenv.run/ | bashb.~/.pyenv/bin/pyenv init --installInstall a python version -> a.
pyenv install 3.14Create my workspace and set the python version to the one I installed: a.
mkdir workspaceb.cd workspacec.pyenv local 3.14Create a
venvso I have a local python virtual environment: a.python3 -m venv .venvb.source .venv/bin/activateStart working on my project/code.
(Note for others: I don’t recommend uv here as I don’t use it myself and haven’t tried to properly use it for an extended duration of time)
On Windows, use python install manager + Venv.
This is a good tutorial:
https://www.youtube.com/watch?v=6e3WLhPLiZQ
Edit: I forgot to mention that the python docs are an excellent starting point for learning python in general: https://docs.python.org/3/