I should’ve used it sooner rather than last year when they announced AI integration to Windows. Every peripheral I tried is just worked without needing to install drivers, and it works better and faster than on Windows, just like today when I tried to use my brother’s 3D printer expecting disappointment, but no, it just connected and was ready to print right away (I use Ultimaker Cura), whereas on my brother’s Windows computer I have to wait like 20 seconds; sometimes I have to disconnect and reconnect it again for it to see and ready to use. Lastly, for those who are wondering, I use Vanilla Arch (btw), and sorry for bad English.
Every time I see someone write “sorry for my bad english” their writing is several times better than many of the native speakers I interact with on a daily basis.
my ukrainian coworker always apologizes for her bad english. meanwhile she can, and does, write poetry in all four languages she speaks
Probably a habit from when they really did have bad English, but they learned, and surpassed the average american at this point.
i think it has more to do with dialect than anything. i speak appalachian dialect so sometimes i’ll use an archaic word. the irony is she usually figures it out faster than most other english speakers since our archaics are largely eastern european in origin, but to her in that moment it feels like “oh, i don’t know what this native english speaker is saying, i guess english is still a skill i’m working on”
i always am like “oh no, i talk funny” but it’s been happening more as she’s become closer friends with me and my fiance and we all talk on metaphysics and shit
“oh, i don’t know what this native english speaker is saying, i guess english is still a skill i’m working on”
I’m no native English speaker as well, and that’s how I often think as well. In my mother tongue I know so many words, their meaning and their sound. In English, however, I’m still learning new words now and then, and it opens my world to the language every time. This is true for dialects as well.
Learning a new language is quite hard in the beginning, but it’s so satisfying and world opening when you start to actually use a new language.
edit Ohh, and sorry for my bad English ;)
When I TA-ed, I swear 75% of the non-Americans students wrote almost perfect papers whereas less than 25% of Americans couldn’t even write and less than 5% had comparably good essays. Honestly depressing.
American culture is one of the few I’ve found to be actively “anti-knowledge”. It’s not just their educational system being bad, it’s a genuine cultural tendency of not just dismissing experts, but straight out refusing to learn and snobbing those who do.
Anti-intellectualism seems to be resurgent in recent years. Its the worst I’ve seen since the Bush 2 era, and it’s all pevasive.
Haha thanks, My English is self thought, so maybe that’s why I’m still afraid of making mistakes (also relied on keyboard auto correct)
*taught :-) No worries, your intent is coming across clearly.
That was prolly auto correct fail tbh
“I proffer my contrition for any infelicities in my English articulation, as my proclivity for linguistic precision may yet be inchoate.”
what was that about felix and anchovies ?
No, they said it was Felicity in chocolate
Sheesh!
You went straight from windows to vanilla arch ?
Quite impressive
Haha thanks but it’s not actually my first distro, I’m distro hopping on my first week of switching to Linux, my first ever distro is EndeavourOS>Nobara>Fedora>OpenSUSE>Vanilla Arch
Can anybody comment on their experience using Arduino and ESP with Linux? Especially does Linux handle COM ports better than Windows? There’s a seemingly immortal problem of COM ports becoming unusable until you go into Device Manager and uninstall them (again and again) - and if that doesn’t work, reboot Windows. I experience this less often now than say 5 or 6 years ago, and sometimes it’s my fault, but jeez.
Yes, com ports work way better than in windows. I’ve done a lot of embedded development on linux and it’s way more pleasant than in windows. One thing you do have to keep in mind is that access to com ports (USB and real) requires root access by default, but once you’ve set the udev rule up, it becomes accesible to normal users and/or group of users. After that, it works flawlessly. Android dev also works great and imo better than on win. Proprietary jtags may be an issue, but I’ve never actually had an unsolvable situation.
Thank you, that’s massively helpful! Pasting your comment into my ESP32 project notes so when I soon move to Linux I can remember to figure out the udev rule and jtags.
Running this command was the only thing required for me to get access to the com ports. After that, everything worked perfectly.
sudo usermod -a -G dialout $USER
(note that $USER is part of the command - do not replace that with your actual username)
update: after a month of Mint I’ve had no problems at all uploading code to ESP32, and it seems about 50% faster than on Windows. Uploads just work - it’s like a breath of fresh air.
Excellent, glad it’s been working out for you! Thanks for the update.