emacs
Emacs 4ffy 1 month ago 100%
Emacsair! Magit 4.0 released https://emacsair.me/2024/08/09/magit-4.0/

>I am excited and relieved to finally announce the release of Magit version 4.0, consisting of 1077 commits, since the last release three years ago. The release notes can be found [here](https://github.com/magit/magit/blob/main/docs/RelNotes/4.0.0.org).

22
1
linux Linux Linux and DOOM (1993)
Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    4 months ago 100%

    The reason that Doom is so portable goes beyond Linux and is an artefact of its development. id developed Doom on NeXTSTEP (i.e. Unix) machines and obviously targeted DOS. This is pretty unique among DOS games at the time and required id to write as much code as possible in a platform agnostic way. This means that the main engine does not care about where it is running and the usual DOS hacks are contained to DOS-specific files. In order to port Doom to a new platform, ideally one only needs to rewrite the system-specific implementation files for video, sound, filesystem access, etc., and this mostly holds true today. (These files are prefixed with i_ in the Doom source).

    The Linux port is just one of many versions developed at the time. I don't believe that it was commercially released; it was more of a portability test. The reason that the Linux version was chosen for the source release over the DOS version was because it didn't rely on the proprietary DMX sound library that the DOS port used.

    28
  • emacs
    Emacs 4ffy 6 months ago 100%
    Emacs: Denote version 2.3.0 protesilaos.com

    > This release brings a host of user-facing refinements to an already stable base, as well as some impressive new features. There is a lot to cover, so take your time reading these notes. > > Special thanks to Jean-Philippe Gagné Guay for the numerous refinements to parts of the code base. Some of these are not directly visible to users, but are critical regardless. In the interest of brevity, I will not be covering the most technical parts here. I mention Jean-Philippe’s contributions at the outset for this reason. Though the Git commit log is there for interested parties to study things further.

    13
    1
    emacs
    Emacs 4ffy 6 months ago 100%
    Emacs 29.3 released https://lists.gnu.org/archive/html/emacs-devel/2024-03/msg00611.html

    cross-posted from: https://lemm.ee/post/27699104 > From the NEWS file: > Emacs 29.3 is an emergency bugfix release intended to fix several > security vulnerabilities described below. > > - Arbitrary Lisp code is no longer evaluated as part of turning on Org mode. > This is for security reasons, to avoid evaluating malicious Lisp code. > > - New buffer-local variable 'untrusted-content'. > When this is non-nil, Lisp programs should treat buffer contents with > extra caution. > > - Gnus now treats inline MIME contents as untrusted. > To get back previous insecure behavior, 'untrusted-content' should be > reset to nil in the buffer. > > - LaTeX preview is now by default disabled for email attachments. > To get back previous insecure behavior, set the variable > 'org--latex-preview-when-risky' to a non-nil value. > > - Org mode now considers contents of remote files to be untrusted. > Remote files are recognized by calling 'file-remote-p'.

    30
    0
    minetest
    Minetest community 4ffy 8 months ago 96%
    Minetest Blog - Early Winter in Minetest blog.minetest.net

    > Improvements are made to graphics, the Lua API, and the user interface. We present the winners of the 2023 Game Jam along with other cool mods. A new core developer joins the team, and we look forward to FOSDEM 2024!

    24
    6
    emacs Emacs Question, How to remove all the default emacs shortcuts
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    9 months ago 100%

    I don't think that's a good idea. Pretty much all interaction with Emacs is mediated through keybinds. There is no distinction between shortcuts and fundamental behavior. Even ordinary typing is done by having each character on your keyboard bound to self-insert-command. Perhaps there is some way to nuke the global keymap, but then you're left with literally nothing. Besides, this would not prevent various modes from adding their own keys anyway.

    You should consider whether Emacs keybinds are actually in the way enough to be bothersome. You can also keymap-global-unset (or keymap-unset) individual bindings that you find problematic. I'd also consider delving into the Spacemacs code to see how they implement their "vi only mode."

    6
  • minetest
    Minetest community 4ffy 11 months ago 100%
    August and September - Early Autumn in Minetest blog.minetest.net

    A menu rework and God rays are among the improvements on the road to the 5.8.0 release.

    13
    2
    emacs
    Emacs 4ffy 11 months ago 100%
    Emacs 29.1.90 pretest is available https://lists.gnu.org/archive/html/emacs-devel/2023-10/msg00363.html

    This is the first pretest for what will become the 29.2 release of Emacs, which is primarily a bugfix release.

    21
    0
    linux Linux TIL GNU/linux has 2 clipboards
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    12 months ago 100%

    Emacs's regular clipboard is the "kill ring" which also allows you to retrieve any previously cut/copied text. It also has "registers" where you can store and retrieve snippets of text, which can be considered clipboards when used for this purpose. Registers can be referenced by any character you can type on your keyboard, including control characters like ^D.

    This totals... a lot of clipboards.

    5
  • linux Linux Bottles Next: A New Chapter ⋅ Bottles
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    12 months ago 100%

    My heart sank upon reading the word "electron" and rose again on the very next paragraph. I'm looking forward to seeing it in action.

    16
  • linux Linux Did we kill Linux's killer feature?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 85%

    I think that this is above all else the reason that I use Arch. Arch Linux makes creating packages trivial, basically just wrapping build instructions into a shell script template. Arch handles the rest. The build systems for deb or rpm packages don't come close, and good luck rolling your own flatpak.

    This allows me to use pacman for everything outside of my home directory. Pacman is practically the central feature of my computer, and it's wonderful. I'm sure those Nix people can relate, though I guess my method is a bit less robust.

    5
  • linux Linux Vim Wayland users: how do you bind CAPSLOCK to Escape?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    Xremap, despite the name, supports both X and Wayland, and can be used to move modifier keys around. Configuration is done with YAML but is otherwise pretty easy. I personally use it for full Emacs keybind emulation.

    5
  • linux Linux The Phoronix forms, where AMD and NVIDIA engineers can effectively communicate
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 98%

    This might be the first time I've ever seen something productive happen in the Phoronix forums. I love that place. Go to any topic with more than about a dozen posts and it's almost guaranteed to be a flame war. Genuinely one of the funniest places on the Internet.

    Check out this one. It took like three posts!

    177
  • emacs Emacs Mastering Emacs - What's New in Emacs 29.1?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I have done almost the opposite: moving as much configuration as I can into use-package statements, even for built-in features like dired. You can (use-package feature-name) or even (use-package emacs) in order to customize the basics. use-package just provides much better organization than any schema that I have ever been able to come up with on my own.

    7
  • emacs
    Emacs 4ffy 1 year ago 98%
    Emacs 29.1 Released https://lists.gnu.org/archive/html/emacs-devel/2023-07/msg00879.html

    Available at your local [GNU mirror](https://ftpmirror.gnu.org/emacs) and, depending on your OS, perhaps soon your favorite package manager repository. A full list of features and changes can be found in the [NEWS file](https://git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS?h=emacs-29).

    53
    1
    asklemmy Asklemmy What is Hexbear and how its story intertwines to Lemmy's?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    r/cth was originally a subreddit for the podcast Chapo Trap House, but it eventually bloomed into a general-purpose leftist space. IIRC, the sub was around 160k members at its peak and had a distinct posting culture.

    It was quarantined by Reddit for violent speech after calling for the death of slave owners and later banned for no particular reason at the same time as r/the_donald, presumably as a "both sides" sort of thing.

    25
  • asklemmy Asklemmy What is Hexbear and how its story intertwines to Lemmy's?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 96%

    Hexbear is an instance formed mostly by former r/chapotraphouse users after that sub was banned from Reddit a few years ago. Hexbear used to run on a custom fork of Lemmy so that the community could add extra features that they wanted (like custom emoji) but it was recently ported back to mainline Lemmy after merging or reimplementing as many changes as possible.

    Currently, Hexbear does not have federation enabled, and there is discussion about who to federate with or even whether to federate at all. The community is very active and self-sufficient and some members prefer the isolation.

    Content-wise, it's a leftist-focused instance. Some shitposts, some serious posts, and a lot of inside jokes.

    24
  • linux Linux Non-Tiling Window Manager Users?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 50%

    The sfwbar screenshots did not appeal to me, so I never tried it out. If it's sufficiently customizeable then it's worth a shot, I guess.

    One of the big issues that I have with all the Wayland panels is that they seem designed for tiling compositors like Sway. More like status bars than task bars. The Windows-style list of open programs is not really necessary for a tiling workflow and this is painfully reflected in the available options. I have bashed Waybar into a decent facsimile of my tint2 config visually, but the actual window list module is just awful.

    0
  • linux Linux IRC Clients
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    When I feel the need to visit an IRC community, I generally use ERC, which is built into Emacs. Out of the box, it provides a really pleasant minimal IRC experience. Of course, much like anything in Emacs, it can be extended to your heart's content.

    Emacs also comes with another client called rcirc, because Emacs apparently needs to ship with two builtin IRC clients? I haven't used that one much.

    1
  • linux Linux Non-Tiling Window Manager Users?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I am a proud Openbox user. In the stacking realm, there is nothing quite like Openbox's customizeability and the great tooling that surrounds it. In particular, opensnap gives me window snapping to the edge of the screen with the mouse, which is sorely missing from most light window managers. Openbox also has really powerful hotkeys (any arbitrary sequence of actions) alongside Emacs-style key chords, which makes it difficult to port my setup to any other environment.

    One day, I hope to migrate to labwc, which seems to be carrying Openbox's banner into the Wayland era. Unfortunately, labwc doesn't (and probably never will) support key chords and I have not been able to find a suitable replacement for tint2, which I use as my taskbar. Someday...

    Here is an old screenshot of mine. Nothing has changed since then.

    12
  • operating_systems
    Operating Systems 4ffy 1 year ago 100%
    ReactOS Newsletter 102 - 2022/2023 news reactos.org

    It has been almost two years since the last ReactOS newsletter. Despite no new releases, the project is still active. Much work has been done on different parts of the operating system, from improvements on the 64-bit port to protections against registry corruption.

    3
    0
    emacs Emacs Protesilaos: Public Test for my ‘dired-preview’ Package
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    Not me, that's all Prot's work. I am definitely interested in the package, but I will probably wait for it to appear on GNU ELPA before I try it out.

    3
  • emacs
    Emacs 4ffy 1 year ago 100%
    Protesilaos: Public Test for my ‘dired-preview’ Package protesilaos.com

    From dired, preview different file types in a side window. The user can control the delay before previews appear, the maximum size of previewed files, and which file types should be excluded from preview.

    17
    2
    minetest Minetest community For the first time, my friend and I are going to play Minetest. We'll use all the mods mention in the top comment - What should we use?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    MeseCraft is a good starting point that provides a much better not-just-minecraft-clone experience than the base game. From there, i3 provides a better inventory, and I haven't really screwed with much else.

    4
  • linux Linux Wayland pros and cons?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    bspwm is probably my favorite general-purpose tiling window manager. I have not personally tried this out yet, but River is superficially similar, with the main configuration done through a combination of shell scripting and riverctl commands. I'm not sure how the tiling behaves in comparison though.

    4
  • linux Linux Wayland pros and cons?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    This is something that I am sure will be solved eventually, but one of the major weaknesses of Wayland is the lack of lightweight standalone compositors.

    For example, if I want a lightweight stacking window manager on X, I can choose between Openbox, Fluxbox, FVWM, IceWM, Pekwm, JWM, Window Maker, hell even twm if I were a masochist. I have tried out all of these at one point or another and they all have something to offer users. But using Wayland, there's, uhh, labwc, and that's it? Maybe I could try using kwin standalone?

    The situation for tiling window managers is similar, with Sway being the only one that feels mature.

    I plan on migrating from Openbox to labwc at some point in the future, once it's ready. labwc itself is really good, but some of the other programs I need to recreate my setup aren't there yet. Someday...

    5
  • emacs Emacs XEmacs 21.5.35 “kohlrabi” is released
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    Well that's a surprise.

    I think XEmacs is a bit of a hard sell given the massive improvements to GNU Emacs in the last few years. But surely there are still XEmacs users who think their setup just works for them.

    2
  • gaming Gaming Famous Minecraft YouTuber Mumbo Jumbo plays FOSS Minecraft-like; Actually super enjoys it.
    Jump
    asklemmy Asklemmy Are any communities/instances that solely repost content from Reddit?
    Jump
    gaming Gaming Lego Skywalker Saga was awful.
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I think an underappreciated thing about the original LEGO Star Wars games is just how accessible they were. You could give those games to a 5 year old and they could play and enjoy it. I should know; I was one of them. Looking at the Skywalker Saga, you couldn't possibly do the same thing.

    3
  • asklemmy Asklemmy how did you find out about Lemmy?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    Yeah, those were the days. Hexbear carries some of the culture, but is generally a nicer place to be.

    3
  • asklemmy Asklemmy how did you find out about Lemmy?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    Old account here. I was directed to Hexbear after r/cth was banned from Reddit. Later on, I learned about other instances. Federation wasn't a thing back then; I made an account here to check federation out once it finally released.

    2
  • archlinux Arch Linux Reflector choosing the worst possible mirrors
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    In my reflector.conf, I have --score 5 instead of --latest 5. I don't know how much this actually improves anything, but surely selecting by score is better than just using the most recently updated mirrors.

    2
  • technology Technology Which alternative search engines do you use?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I have to shout out Wiby. It is focused on like weird personal websites from the early 2000s, that kind of thing. Absolutely not a general-purpose search engine, but mashing the "surprise me" button will take you to all sorts of fun places.

    8
  • linux Linux What are your favorite DE's that you use on a laptop?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I have not used a desktop environment on a laptop in a very long time. For a long while, I had fluxbox installed and that was good enough. Nowadays, my laptop almost exclusively runs EXWM. I can't really recommend that for general use though.

    If I were to install a full DE now, I think I would go for LXQT. I love Openbox, and I would probably end up replacing the panel with tint2. That would be a decent environment, I think.

    2
  • emacs Emacs noweb: the lesser known org babel glue
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I recently wrote a literate R document where I added features to a plot one at a time and then showed the result of each. That's a lot of repetitive code. This could have both cut down on copy-pasting and helped to propagate changes in an earlier plot to the later ones. Next time for sure.

    5
  • emacs
    Emacs 4ffy 1 year ago 100%
    Emacs 29.0.92 pretest is available https://lists.gnu.org/archive/html/emacs-devel/2023-06/msg00503.html

    Available at https://alpha.gnu.org/gnu/emacs/pretest/

    15
    0
    asklemmy Asklemmy Why lemmy has no content except about Reddit?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    Lemmygrad is a Marxism-focused instance and Hexbear is currently making the migration to mainline Lemmy right now. There are various other leftist communities across Lemmy instances, you can use Feddit's community browser to find some.

    7
  • asklemmy Asklemmy What RSS feed application do you use?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I use Elfeed for Emacs, as just one small part of Emacs's slow conquest of other programs on my computer. Before that, I used Liferea, which is a nice standalone feed reader.

    Elfeed lets me assign each feed in my list different tags, so I can do basic filtering for what I want to read at any given time. I generally avoid subscribing to any high-density feeds like news sites. I prefer to have maybe a dozen or so links per day that definitely interest me.

    I use morss.it to fetch the full text from feeds that only provide a brief summary.

    6
  • archlinux Arch Linux AUR is cool... but scary
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    First, you should be familiar with the basic process of compiling and installing software from source. For C or C++ projects, this can be as simple as ./configure, make, make install for projects that use GNU Autotools, or something like cmake -B build, cd build, make, make install for CMake projects.

    I generally split PKGBUILDs into three important parts. There's the metadata at the top then there's the build and package functions. build is where everything up to the make (or equivalent build-the-thing) command goes and package is where the make install bits go.

    There's also the prepare and check functions, but those aren't used as often.

    As for the actual documentation, the Arch Wiki page for PKGBUILD covers most of the metadata stuff and the page for Creating Packages covers most of the build and package stuff.

    3
  • emacs Emacs New version of Devil minor mode (v. 0.5.0) available
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I've been using Devil for a little while now. The right control key is pretty far from the home row on my keyboard, so the usual touch typing motions are inconvenient. I feel like Devil, which I have mapped to semicolon, lets me reclaim some of that.

    I have caps lock as control as well, so that gives me control access on both sides of the home row. The two sides behave a bit differently since caps lock is an actual modifier, but that hasn't been an issue for me.

    2
  • archlinux Arch Linux AUR is cool... but scary
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    This is the main reason that one should learn to read PKGBUILDs. Any AUR helper like Yay or Paru should give the option. Just make sure that the package downloads from an official source and contains only the necessary build and install instructions.

    But I agree. Some people treat the AUR as just another repository, when it most definitely is not.

    12
  • privacy Privacy what phones are you all using?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 83%

    I bought a Pixel 7 for the sole purpose of GrapheneOS. I really have no complaints. It Just Works and I feel slightly less uncomfortable carrying a phone with me.

    4
  • programming Programming The 2023 Developer Survey results are out
    Jump
    gaming Gaming roguelikes and lemmy
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    1 year ago 100%

    I am an avid Nethack and DCSS player, and Shattered Pixel Dungeon is currently the only game on my phone. I am pretty awful at the lot of them. I've reached down to Medusa in Nethack, but never the castle. I don't think I've ever found an orb in DCSS, and I've only made it past the prison in SPD. I'll keep at it though, and eventually get a good run. Someday. Probably.

    There is a dead DCSS community at !dcss@lemmy.ml. I would certainly enjoy seeing posts there.

    1
  • minetest Minetest community February - Last Month in Minetest
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    2 years ago 100%

    x2048’s work on making meshes the size of 8 mapblocks was also merged this month, allowing for vastly greater view distances.

    Additionally, x2048 is continuing graphics improvement work with a PR to add shader-based antialiasing filters.

    Some fantastic work going on behind the scenes.

    4
  • opensource Open Source OpenShot Video Editor | OpenShot 3.0 Released | Stability, Performance , & Usability
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    2 years ago 100%

    I've toyed around with OpenShot for basic usage but I generally prefer kdenlive. It doesn't require a bunch of KDE dependencies though so that's something to consider.

    3
  • linux Linux An X11 Apologist Tries Wayland
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear4F
    4ffy
    2 years ago 100%

    I'm an openbox+tint2 desktop kind of person, so I've started to build my desktop of the future with labwc+waybar. I've hammered waybar into a decent facsimile of my tint2 config, and now I just have to wait until labwc matures enough that all of my old keybinds work. Someday...

    2
  • opensource
    Open Source 4ffy 2 years ago 100%
    SFC right-to-repair lawsuit against TV manufacturer Vizio, Inc. remanded to California State Court. sfconservancy.org

    Extra context from [LWN](https://lwn.net/Articles/895405/): > Back in November, Vizio had asked to move the case to Federal Court, because the GPL is only a copyright license (which is a dispute handled at the Federal level) and not a contract (that could be adjudicated in state court). Friday's ruling disagreed with that premise. [...] "The ruling is a watershed moment in the history of copyleft licensing. This ruling shows that the GPL agreements function both as copyright licenses and as contractual agreements."

    16
    0