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.
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.
Asking good questions is not easy.
If you ask a question which was already answered thousand of times you should search for the answer, not ask it again. Obviously from your point of view it’s a new question, but if someone replies to a lot of threads it can become annoying to see the same thing again and again.
Other common wrong question is when you don’t give enough details.
If you experience that your questions are downvoted frequently, please read this old guide “How To Ask Questions The Smart Way”. If you ask good questions, there is a bigger chance someone will help you
Wiki says he is still there:
Criminal penalty: 15 years to life imprisonment (parole in 2022 refused, next hearing is in 2027)
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
It’s bold of you to recommend a google product in !privacy@lemmy.ml
It doesn’t help much if your cousins signed up with their real name. If you are male, they can figure out your surname even if no close relative submitted samples: https://en.wikipedia.org/wiki/Surname_DNA_project
While I see DXVK was important, Valve’s history with Linux is much older. I would place “anime girl thighs” on the second domino
SteamOS was first released in 2013, just before they released there first hardware running Linux, the duly forgotten Steam Machines in 2015.
You can get a relatively understandable tldr with well segmented text like this, if you read only the first sentence/few words of each paragraphs.
No, it’s just remote. Remote desktop is now also called Windows, also the operating system you are connecting to is called Windows.
Gnome has relatively good rdp support, so with this you could use Windows (the app) on Windows (the os) to connect to you Linux machine running Gnome.
It seems deliberately confusing naming is working as expected, Microsoft marketing team should get extra raise.
It’s a remote desktop client, so it won’t. OP read only the title of the article
Use WSL on the laptop for ssh, that’s actually a VM. VM separation should work correctly, or we have a much bigger problem. Just reset WSL, everything should be wiped related to the ssh sessions. Work IT would maybe allow that.
One of them is a laptop, why ssh to the server isn’t an option? Set up tmux on the server so it always connects to the same session, so you can just continue where you left last time. If you need desktop support, rdp in gnome works really well.
E.g if you connect with this command, and tmux is installed on the server, it will start a new session named “main”. If a session with that name exists it will connect to that:
ssh -t pi@192.168.1.2 tmux new-session -A -s main
Add something to .bashrc on the server to always do the same if you work on that phisically:
if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
tmux new-session
fi
OP posted this toot with this image revently in a different comunity:
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.