Nix just calls the *.nix files, it’s still go under the hood. PKGBUILD is similar to the flake.nix and package.nix files to me, but I have no experience with nix.
Nix just calls the *.nix files, it’s still go under the hood. PKGBUILD is similar to the flake.nix and package.nix files to me, but I have no experience with nix.
I think that may be an American thing. I’ve never seen one here in Europe.
My general view is similar, yaml is better if it should be written by humans, json is better if it should be written and read only by a machine. but hyprspace uses json for configuration, so I don’t really understand cellardoor’s comment
what:
is:
your:
- problem
- with:
YAML
# At least you can have comments unlike in json. Who need comments in a config file anyway.
Or port forwarding. You have to open a udp port for wireguard
AUR packages ending with"-git" or “-svn” always pull the latest commit from source. The version number means that was the last time the packager had to change something on the PKGBUILD script, not the actual version which would be installed.
Where should I look? Where were these talks? I’m interested.
Edit: I found the whitepaper about hole punching: https://research.protocol.ai/publications/decentralized-hole-punching/
It says it connects to a “Hole Punch Coordination (DCUtR - Direct Connection Upgrade through Relay)”. So for NAT traversal to work, you need a third party, this relay. As I expected. I guess you can self host this, but than you could just host a wireguard server. I guess if you are on a locked down network where you cannot connect to any relay (e.g. how the Chinese Great Firewall works technically they could block it) you can’t initiate a connection behind a NAT.
Nonetheless it seems interesting, but no magic here. Maybe the big difference that the relay servers are distributed, so no central authority to block easily.
Interesting, it’s on AUR, I will try it.
So it doesn’t need any port forwarding, and works on CGNAT? How the “NAT hole punching” works? Both clients connect to something on IPFS?
Afaik, for DHT with torrent, clients need to know at least one tracker, what is the “tracker” here? Something on IPFS? Who am I sending my IP addresses?
How much overhead does this add to speed? I love with Wireguard, that it’s barely noticeable, really close to p2p speeds, OpenVPN was awful in this regard.
How do you know your assumptions are correct? It didn’t sound that way to me. “Any idea” sounds like they have no idea, but they use the more rare init system.
I pointed in the correct direction, and it seems like they didn’t search for it, as it wasn’t in some super hidden place. The note was for future reference, as I won’t be there to search for them in the future, and life is too short for waiting for easy answers.
Recommended reading about questions on the internet for everyone: http://www.catb.org/~esr/faqs/smart-questions.html
https://github.com/sezanzeb/input-remapper/issues/15
I just typed “openrc” on the search box on the issues page. People on the internet forget nowadays that you can search, and it’s quicker than waiting for an answer…
If you need a GUI tool, I use Input remapper: https://github.com/sezanzeb/input-remapper Very straightforward to set it up, it’s available via dnf.
Fellow lemming hirak99 has a tool for that as well which should have better performance, but no GUI: https://github.com/hirak99/keyshift no prebuilt for Fedora unfortunately
You will loose your mind, but wayland version of xev is called wev.
It’s available in a lot of distros: https://pkgs.org/download/wev
I use the official desktop app, and it forgets filters as for OP
If you don’t need fancy gui and authentication, registry is easy to set up and works really well: https://hub.docker.com/_/registry
I have several addresses at cock.li. Uptime is not the best, around 98%, but free. According to their policy they don’t collect any personal data, but they comply with legal requests. https://cock.li/help
You can select from a lot of domains, some of them ar normal like firemail.cc or airmail.cc, some of them are funny like aaathats3as.com, some of them are edgy like cocaine.ninja or national.shitposting.agency, some of them are racist like nuke.africa or hitler.rocks
Because they have different appid. Izzy version is app.organicmaps.web
fdroid version is app.organicmaps
(you can see this in the url). Google version uses the same appid as fdroid. You can’t have two apps installed with the same appid, but this way you can have both installed at the same time.
I guess organic devs wanted separate appid for their 2 versions and fdroid just went with the default, original one.
So the 3 versions:
Sir, this is Lemmy, the default os is Linux here.
I checked the post history of @whyNotSquirrel@sh.itjust.works and I saw they commented once in linuxmemes, so I assumed it’s about Linux. Also on Windows it’s much more easier to change this, there is another dropdown literally next to the language selector.
What is that?
It is translated, and the link correctly redirected me for my language, but I use the official language of the country I live in.
You can change the language if you scroll down, in the bottom left corner.
You can set that up separately, override LC_TIME
:
https://wiki.archlinux.org/title/Locale It’s Arch wiki but this is usually the same for any other distro
It’s documented in the wiki, they are called VCS packages, and it’s not the usual, they work a bit differently: https://wiki.archlinux.org/title/VCS_package_guidelines
You can see in this instance, that it skips the sha checking for upstream source, in line 15 of the PKGBUILD it says ‘SKIP’: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=hyprspace-git#n15
sha1sums parameter is documented in the wiki: https://wiki.archlinux.org/title/PKGBUILD#sha1sums
In the PKGBUILD file you can list sources (line 12,13) and their respective checksums (line 14,15). In this PKGBUILD there are 2 sources: the first is the systemd unit file, it’s coming from the package’s AUR repo, not from upstream, you can see its checksum. The second source is the actual source, and you can see, it’s checksum is ‘SKIP’ so it shouldn’t be checked.
With these kind of packages you can’t get notified if there is an update available, but if you install it again with your favorite AUR helper it would update itself for the latest version. It calculates version number from the latest commit hash, before building and installing, so if that is the same it won’t update again.