Honestly, for the first year or two after learning about it (which is the only time where it’s really relevant) that’s exactly what I did. Spend 30 seconds, derive something that’s definitely correct, and never worry again about your memory randomly failing you
- 0 Posts
- 34 Comments
furikuri@programming.devto Linux@programming.dev•Apple Touch Bar Display Drivers Slated For Introduction In Linux 6.152·4 个月前See the current dislike for fully digital display on cars. As they are now they just seem like a imprecise replacement for the function keys that either forces you to constantly look down at them (since the main selling point is that programs can change it at will) or force map them to F1-F12 (meaning you’ve spent extra on the touch-bar for no reason)
The classic
rm -rf $ENV/home
where$ENV
can be empty or contain spaces is definitely going to hit someone one day
furikuri@programming.devto Linux@lemmy.ml•Linus responds to Hellwig - "the pull request you objected to DID NOT TOUCH THE DMA LAYER AT ALL... if you as a maintainer feel that you control who or what can use your code, YOU ARE WRONG."4·5 个月前“Glazing” is slang for over-complimenting, often to an obsessive degree
Run
info info
Texinfo pages were originally meant to be a longer alternative to manpages that had support for featureful navigation (links, indexes, etc). They’re nice and I can see a world where they did catch on, but the standard viewer is always a little bit of a shock to jump in to (being based off Emacs and all)
furikuri@programming.devto Linux@programming.dev•Linux 6.14 Adds Support For The Microsoft Copilot Key Found On New Laptops9·5 个月前Guess the Hyper key is due to make a comeback!
furikuri@programming.devto linux4noobs@programming.dev•How to read terminal output from the beginning?3·6 个月前For cases where you really just want to jump between different prompts without piping out to another program/file, many terminals also support jumping through prompts as long as your shell marks them with an OSC-133;A escape code (looks like fish does this automatically now). Some terminals that support this are foot, tmux, kitty, and Emac’s vterm, but it’s undoubtably available in many others.
For example let’s say you’re using the foot terminal and the zsh shell. Just add the following code to your zshrc and then you can jump through each prompt using CTRL-z and CTRL-x
precmd() { print -Pn "\e]133;A\e\\" }
furikuri@programming.devto Cybersecurity@sh.itjust.works•PSA: Github currently has spambot/ malware links problem.English8·10 个月前Lmao. They couldn’t even copy code from a random MIT licensed project? Sometimes I think these scammers aren’t even trying
You could try making enabling git’s
rerere
functionality, which stands for “reuse recorded resolution”
Arch does tend to keep packages as close to upstream as possible, which can be both a good and bad thing. Sway not binding to
graphical-session.target
by default is a little strange for example. Other distros also save a first-time user a great deal of configuration for things they probably don’t care about as well. Going through Fedora’s install and finding out that disk encryption and SELinux were configured OOTB was very nice to see personally. On the other hand Arch’s installation (w/o archinstall) has you choosing a bootloader, audio server, display manager, etc. Nothing arduous and I like it, but definitely not for everyoneThis is all eliminated by spinoffs of course, but even there users have the option to run random scripts/AUR packages without vetting them. Also doesn’t help that the most popular Arch-based distro for a while (Manjaro) was pretty flaky and generally incompatible with the AUR (despite saying otherwise), leading to many people saying “that’s just Arch” and swearing off the parent project as well
I switched to (Doom)-Emacs from a ~7yr old homegrown Vim config last week and honestly the configuration is less bad than it seems. If you’re mainly writing markdown you’ll probably get 99% of the way there by just enabling the dedicated module
furikuri@programming.devto Ask Lemmy@lemmy.world•Should half naked pictures of anime characters be marked NSFW on Lemmy?3·1 年前Depends
Clannad? Valid
After-Story?
furikuri@programming.devto Free and Open Source Software@beehaw.org•Signal under fire for storing encryption keys in plaintext3·1 年前The back end is open source, but sometimes they’ve lagged years behind releasing the source code.
I think this is the more worrying part if true. The backend is licensed under the AGPL, so this would technically be a violation of their terms
- Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software
Edit: For anyone else reading I looked into it a bit more and looks like the issue came to a head around 3 years ago, with this comment being made after a year of missing source code. The public repo has been pretty active since then, so the issue seems to be resolved
furikuri@programming.devto [Migrated, see pinned post] Casual Conversation @lemm.ee•Does anyone else notice the infuriating trend of people renaming youtube videos and swapping thumbnails?English3·1 年前If I had to guess I’d say that their other project, Sponserblock, got a little bit more popular than they were expecting and this is just to help alleviate server costs. Most of the API endpoints don’t require any auth at all (the single one that does accepts a random UUID), so any checks must be locally done (maybe system time?). The extension and server back-end are licensed under GPLv3 and AGPL respectively and are also entirely self-hostable, so the code is out there to verify if you wish
Additionally if you’re looking for it to start on boot without logging in, you might find the loginctl enable-linger command to be of use. Maybe along with a
Restart=on-failure
policy in the service file if this is for a headless unit or something
furikuri@programming.devto Programming@programming.dev•Open Source 'Eclipse Theia IDE' Exits Beta to Challenge Visual Studio Code -- Visual Studio Magazine1·1 年前Wouldn’t call it trash but personally after trying it a couple times it seemed like it took as long to config as neovim while also not being nearly as hackable (probably is more extensible though being a GUI). For that amount of time I’d rather use something with larger benefits like an IDE
PRE-SUBMISSION EDIT: This is a long-winded reply and goes increasingly off-topic as it progresses, sorry. TLDR I agree
Anecdotally, I’ve also noticed a rapid change in the last decade or so as politicians become emboldened by Trump’s success. For example, the premier of a major Canadian province has done the following:
- Took on some of Trump’s advisors who claimed the COVID vaccines were a bioweapon
- Denied aspects of the well-documented cultural genocide occuring in Canada’s residential schools
- Claimed that people who took a COVID vaccine would have been Nazi sympathizers
- Stated that the first three stages of cancer are “completely within your control”, advocating for neuropathy
- Claimed in 2003 that smoking can reduce the risk of disease
She was previously head of the (now defunct) Wildrose party before defecting and indirectly leading to the historic 2015 election, which marked the first time a left-wing party formed a majority government in almost 80 years.
But even then the most controversial thing she said (publicly) was that ‘the science on climate change “wasn’t settled”’, still inane but a far cry from what was to come after her return to power in 2022
Who said it was the US government? Additionally I’d wager that the people who vote both vote independent and browse these sorts of forums are people who would otherwise vote democrat. Note that there are currently many interested parties that would benefit from a republican win at this moment
furikuri@programming.devto PC Gaming@lemmy.world•$843 million lawsuit against Valve already has its own website: "The Steam Claim" accuses the biggest store in PC gaming of "overcharging" players51·1 年前I’m not too familiar with the details but there is this excerpt from a blog post by Wolfire Games from 2021 where they say this wasn’t the case. Haven’t checked it’s validity or if it’s relevant information to this case, but it is something
When new video game stores were opening that charged much lower commissions than Valve, I decided that I would provide my game “Overgrowth” at a lower price to take advantage of the lower commission rates. I intended to write a blog post about the results.
But when I asked Valve about this plan, they replied that they would remove Overgrowth from Steam if I allowed it to be sold at a lower price anywhere, even from my own website without Steam keys and without Steam’s DRM.
http://blog.wolfire.com/2021/05/Regarding-the-Valve-class-action
Amazon’s AI crawler is making my git server unstable
End of the day someone still has to pay for those requests