12510198
Ive only had to setup a nvidia system once, so I might be missing some packages, but I think pacman -Rns nvidia nvidia-utils lib32-nvidia-utils
should get rid of all of it.
I figure that the administrators of your homeserver could see your IP address, I doubt that it would be sent to anyone you are just chatting with.
What a bunch of cringe edgy antinatalist nonsense. Think about the future, if you don’t have kids, who are we gonna feed to the machine a few decades from now?
I think it kinda looks like a lollipop
I made this userscript to put the vote count in comments back beside the vote button because the new one is kind of hard to see, its not the prettiest script (idk much about javascript), but I’ve tested it in Librewolf with Violentmonkey and it does work, hope it helps someone else!
// ==UserScript==
// @name New script blahaj.zone
// @namespace Violentmonkey Scripts
// @match https://lemmy.blahaj.zone/post/*
// @grant none
// @version 1.0
// @author -
// @description 8/24/2024, 3:32:47 PM
// @run-at document-idle
// ==/UserScript==
function main ()
{
var parent_comments = document.getElementsByClassName("comment list-unstyled");
for (var i = 0; i < parent_comments.length; /*i++*/)
{
/*console.log(i);*/
var comments = parent_comments[i].getElementsByTagName("article");
for (var j = 0; j < comments.length; j++)
{
var upvote_button = comments[j].getElementsByTagName("button")[1];
if (upvote_button.attributes["vote_count_patched"] != null)
{
i++;
continue;
}
var post_votes = upvote_button.attributes[2].textContent.split(' ')[0];
upvote_button.append(' ' + String(post_votes));
upvote_button.attributes["vote_count_patched"] = true;
i++;
}
}
}
/*var mutation = null;
var mutation_observer = new MutationObserver(function(m) { mutation = m; console.log("new mutation logged yo");} );
mutation_observer.observe(document, { childList: true, subtree: true }); */
var mutation_observer = new MutationObserver(main);
mutation_observer.observe(document, { childList: true, subtree: true});
main();
sudo sed -i 's/libalpm.so.14/libalpm.so.15/g' /usr/bin/paru
There are exit nodes in i2p, but they are called outproxies. The most popular ones are exit.stormycloud.i2p
, purokishi.i2p
, and outproxy.acetone.i2p
. To setup an outproxy, you will have to setup software external to i2p, i2p routers by themselves will never exit. It is possible to visit onion domains inside of i2p, StormyClouds’s outproxy has support for this, but from what ive heard, its recommended to use none of these, and to just use the tor browser if you need to access onion sites or the clearnet anonymously.
There are many use cases for i2p besides eepsites and torrenting, pretty much anything that runs on TCP can prolly be ran on i2p. For example, I run my servers ssh over i2p, so if my ip address were to change for whatever reason, the i2p address will remain the same. There are also IRC services, internet radio stations, there are even 2 public Minecraft servers.
I dont use the outproxies for ssh, but it should be possible to connect to my server using its clearnet address using one of the outproxies. I have i2pd running on my server 24/7, and an entry in the tunnels.conf
file that points to 127.0.0.1:22 on the server. When I want to connect to it, Ill run another i2p router on whatever device im connecting to, and Ill put the “.b32.i2p” address into ssh while using the SOCKS proxy for it. It is possible to make a client entry in the tunnels.conf
on whatever device you are connecting from, and you can even turn the hops down to 1, which will increase performance, but lower anonymity. I think by default the SOCKS proxy uses 3 hops, but it can be changed.
But it should totally be possible to run your own private VPN over i2p, but Ive never done it myself, I just use ssh to port forward all of my self hosted stuff.