Oof, my first time coming across JSON5, thanks. Damn near every one of these improvements are things that annoy me from time to time lol, would love to see it adopted.
- 0 Posts
- 41 Comments
PolarKraken@programming.devto Programming@programming.dev•Java at 30: How a language designed for a failed gadget became a global powerhouseEnglish5·2 days agoYeah, not trying to dunk on other commenter, but these don’t sound like complaints I experience with Python at all. Setting up the environment is a breeze with
venv
, package installation couldn’t be easier with basicpip
, and I really like having a diverse ecosystem of multiple (often high quality) approaches to solving similar problems.
PolarKraken@programming.devtoTech Unionization@programming.dev•The Human Workforce Behind AI Wants a UnionEnglish4·2 days agoReally feeling like unions are overdue. People really undervalue and underestimate what it takes to be good or even just competent at this stuff.
PolarKraken@programming.devto Programmer Humor@programming.dev•Python needs an actual default functionEnglish1·2 days agoI would love that! I do think there are probably interesting underlying personality factors / preferences for a lot of this stuff as well.
I do think that many of Python’s characteristics map to my own personality and I bet there’s something to that. Things like syntax of course, but not strictly syntax, also things like “The Zen of Python”, and the way its a “jack-of-all-trades, master-of-none”. I also really kind of need the freedom and accompanying responsibility to break any “rules” on a whim (Python will happily let you overwrite its own internals while running, for instance), but I almost never do anything that uses it…
I could probably keep going lol. Feels like a “people looking like their pets” scenario, lmao
PolarKraken@programming.devto Programmer Humor@programming.dev•Python needs an actual default functionEnglish4·4 days agoEveryone’s welcome to their opinion of course, but I find Python more readable than anything else and I resent the visual clutter required to make intentions plain in other languages. Feels like having a conversation where people say the words “comma”, “period”, etc.
I also spend more time with Python than anything else and I suspect these two facts about me relate, lol
Sounds much like PowerBI, which I can’t say I’ve used much directly. But every time we use it, because the client likes the idea and it can theoretically do “all the business intelligence” natively…we eventually find it can only do 80% of what they actually want, which completely removes its single advantage and forces us to go custom anyway. We’ve stopped offering it, to be clear.
PolarKraken@programming.devto Programmer Humor@programming.dev•Can anyone confirm accuracy?English8·4 days agoCouldn’t agree more. Field service is one hell of a drug. Money’s good, variety is fun, the chaos and travel are fun too, and you learn a lot quickly. The latter often because some or all of the mfg. plant you’re visiting needs you to fix your stuff so they can run, and no one is coming to BFE to help you, lol.
But that all wears off, in time, and it starts to take a huge toll like you described. Never met a long term field service engineer with a healthy home life, or with their health in general. I got out because both of mine were crumbling, for real.
PolarKraken@programming.devto Programmer Humor@programming.dev•Can anyone confirm accuracy?English12·4 days agoAh, alcoholic then
PolarKraken@programming.devto Linux@programming.dev•Found a printer and Linux saves the day againEnglish1·7 days agoHard agree, I have a B&W laser of theirs from similar era bought new and it just works and works.
PolarKraken@programming.devto Programming@programming.dev•What's your favorite IDE right now?English1·11 days agoI really credit my present strength with Python, in at least a small part, to PyCharm. Really a great IDE for Python projects. It irritates me, if anything, how much more flexible VSCode can be for non-Python stuff. I end up using VSCode.
As someone new to both, I’m commenting to hear your answer to the other person’s “why?” :)
PolarKraken@programming.devto Programming@programming.dev•Stack overflow is almost deadEnglish2·11 days agoYeah, it’s certainly not a perfect model :) and I will absolutely acknowledge that some folks seem to delight in their own smugness and knowledge and seem to enjoy opportunities to shit on someone. The way the platform works probably amounts to a certain “gravity” pulling those personalities in, TBH.
PolarKraken@programming.devto Programming@programming.dev•Stack overflow is almost deadEnglish6·12 days agoIt’s mainly a different model, but I totally sympathize that it’s the opposite of welcoming or encouraging.
SO recognizes that many, many questions are really just rephrasings of the same underlying question, and the aim is to find and provide the best answer to those. It explicitly does not want to repeatedly answer the same question, and given how few people find out how it works before simply asking, they have to be pretty ruthless about it. The result is that usually the most active and fleshed out questions and answers are very informative. So there’s a big upside in trade for those downsides. Answers are meant to be durable, ~singular, and authoritative.
Reddit is basically halfway between that, and Discord. Discord is the polar opposite, questions and answers are naturally ephemeral, duplication happens constantly, and quality of responses is all over the map.
I greatly prefer the StackOverflow model, and - to be very clear - I have never once asked (to say nothing of answering) a question of my own there, lmao.
For OP - Bazzite works a little differently as an immutable OS. Basically only a small handful of directories are editable, and the immutable nature is intended to help provide stability, particularly for users who don’t want to tinker as much (at least that’s my understanding).
Here’s their documentation on auto mounting drives. You’ll probably want the link titled “KDE Partition Manager Guide” under GUI Methods.
But you can edit
/etc/fstab
as suggested here, and I’ve done it that way. Just need to mount it under/var/mnt/
and disregard locations recommended by guides that pertain to other distros.Edit: just saw someone else posted the same link, whoops!
PolarKraken@programming.devto Opensource@programming.dev•Stable Clonezilla live 3.2.2-5 ReleasedEnglish3·15 days agoI’m not super familiar with either, but are you aware of Rescuezilla? It’s a GUI for Clonezilla. I used it for some simple things once or twice recently that I didn’t feel merited learning Clonezilla’s CLI.
PolarKraken@programming.devto Programmer Humor@programming.dev•This will be *really* funny, until you remember 99% of current super hyped AI stuff is running on PythonEnglish3·16 days agoOne tremendous strength of Python no one has mentioned is its vast ecosystem of high quality packages. It’s not just the language features that speed up development, that ecosystem makes a huge difference.
Another (far more subjective) advantage is readability - when written according to Python’s (actually quite opinionated!) style guidelines and general software engineering best practices, Python is also extremely readable, which really facilitates teamwork. My software shop has transitioned to using Python for most things these days for that reason, away from JS, after seeing my work and code reviews, FWIW.
I’m not some wizardly dev, to be clear, but I’m this shop’s first senior dev specializing in Python. I write deliberately clean and readable Python and folks are really enjoying it - enough to voluntarily switch.
Performance is always listed as a Python drawback, and it’s not untrue, it’s just so overblown as a problem. It basically never causes me issues. Crucially, saving dev time is almost always the better choice compared to saving compute cycles. And I’d take that farther and say anyone junior enough to be wondering about Python and performance…is almost certainly working on tasks that Python is well suited to - better suited, than most other languages.
(Hopefully this was not too controversial, but I accept the risk of a flame war, as is tradition lol)
Edit: clarity
PolarKraken@programming.devto iiiiiiitttttttttttt@programming.dev•Where clouds meet AIEnglish8·24 days agoYeah, people got different backs and different injuries. I’ve done a ton of rehab (just strength training basically) so mine’s not nearly as sensitive as it used to be. But the wrong mattress can still leave me in rough shape. Like, hard to get through the day, and I say that as kind of a glutton for punishment TBH.
I’m active, just slightly overweight (beer and pizza, shit goes hard), but I have a couple muscle spasms from old injuries that’ll probably never truly be gone entirely.
I’m also a pretty frugal individual, but a decent (for my needs) mattress is non negotiable for me. Legit can’t have a normal life with one that works poorly. Just gets worse and worse night after night, no matter what I do, till I can’t walk or stand really. Takes like a week or two at max, but I can speed run it too sometimes lol.
We just have a basic Leesa (no idea if they’re still around), pretty straightforward latex foam dealie. Think it was around $1k, maybe 7 years ago. Zero issues, sleep like a dream on it, holding up great too. I don’t know that it’s a one size fits all situation, but it does seem to work great for my spine in particular.
PolarKraken@programming.devto Opensource@programming.dev•[FOSS] Nobook: Ad-free facebook lite for Android.English1·24 days agoYour mom’s a bait!
Okay joke is played out, sorry I’m done
Yeah I’ve been hearing about it and meaning to dive in. Been learning some infra stuff lately though.
Any particularly strong selling points you want to convey?