0v0

@0v0@sopuli.xyz

This profile is from a federated server and may be incomplete. Browse more on the original instance.

0v0,

Also add acoup.blog##.darkmode-layer to your filters.

0v0,

This element is never generated as a candidate in the picker, probably a quirk of this specific site. I just looked at the DOM and saw this related element next to the dark mode button.

New Release I2P 2.5.1 - Blog - I2P (geti2p.net)

I2P 2.5.1 is being released to address Denial-of-Service Attacks affecting the I2P network and services. With this release we disable the IP-based parts of the Sybil attack detection tool which were targeted to amplify the effect and duration of the attack. This should help the network return to normal operation. Those of you...

0v0,

You can take the package from the Ubuntu PPA, which is generally updated quickly, and rebuild for Debian using the instructions here.

0v0,

It’s because it has to work in pattern contexts as well, which are not expressions.

0v0,

<span style="font-weight:bold;color:#a71d5d;">fn </span><span style="font-weight:bold;color:#795da3;">foo</span><span style="color:#323232;">(x: </span><span style="font-weight:bold;color:#a71d5d;">i32</span><span style="color:#323232;">) {
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">match</span><span style="color:#323232;"> x {
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">{ </span><span style="color:#0086b3;">3.</span><span style="color:#62a35c;">pow</span><span style="color:#323232;">(</span><span style="color:#0086b3;">3</span><span style="color:#323232;">) } </span><span style="font-weight:bold;color:#a71d5d;">=> </span><span style="color:#323232;">println!(</span><span style="color:#183691;">"three cubed"</span><span style="color:#323232;">),
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">_ => </span><span style="color:#323232;">{}
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span>

But it looks like inline_const_pat is still unstable, only inline_const in expression position is now stabilized.

0v0,

According to Wikipedia:

In March or April 2023, it dimmed to magnitude 12.3. A similar dimming occurred in the year before the 1946 outburst, indicating that it will likely erupt between April and September 2024.

0v0,

You can give chisel a try. It tunnels all traffic over http/https, and the client can then create port forwards, just as with ssh, to access other services.

0v0,

Yes, for example, syncing on a kernel panic could lead to data corruption (which is why we don’t do that). For the same reason REISUB is not recommended anymore: The default advice for a locked-up system should be SysRq B.

0v0,

Edit i2psnark.upbw.max in i2psnark.config (this can be in a number of locations based on install type and platform - just search for it).

Or you can remove the maxlength and size attributes from the text input, it will save just fine.

0v0,

linux-tc-notes.sourceforge.net/tc/…/cls_u32.txt:

The base operation of the u32 filter is actually very simple. It extracts a bit field from a 32 bit word in the packet, and if it is equal to a value supplied by you it has a match. The 32 bit word must lie at a 32 bit boundary.

why do some addresses work while others dont

I am on a tor site and it has 2 links to an i2p site. The first says “I2P [b32]” and has a link of http://acruexirfkgcqhwxyu75v7dtahr3a44hmbfygngsvubmkrbd6axa.b32.i2p/. This link works in my browser configured for i2p. The second link just says “I2P” and has a url of http://mysu.i2p/ which fails to load. Any ideas?

0v0,

There is no central naming authority in I2P. All hostnames are local. (Naming and Address Book)

Therefore, if an url doesn’t work, it isn’t in your local address book.

You can add mappings yourself if you know the destination or b32 address, or make use of subscriptions. In this case, add http://i2p-projekt.i2p/hosts.txt and http://notbob.i2p/hosts.txt to your address book subscriptions, the latter contains the destination for mysu.i2p.

[not solved] I think I messed something up in the router settings but cannot understand what... now I have no internet connection

Hello! I (tried, at least) converted an old laptop to a Debian home server, and I was trying to set up duckdns.org and to enable port forwarding on my router. internet connection was working, I installed packages, docker, immich, etc, and then suddenly (I don’t know exactly when) it refuses to connect to the internet. It does...

0v0,

Try removing all the superfluous default routes.

0v0,

I think glider can do this, with -strategy rr (Round Robin mode). I have not used it in this way myself, so you might need to experiment a little. Proxychains can also do this, but it doesn’t present a socks5 interface itself (it uses https://stackoverflow.com/questions/426230/what-is-the-ld-preload-trick, so it won’t work everywhere).

EndeavourOS encrypted partition

I installed endeavourOS 2 days ago and then, the next day, there was a newnrelease of endeavourOS. It’s supposed to have better encryption. Is it possible to upgrade encryption on Linux? An unrelated question: is it possible to change the password of an encrypted partition? I’m a beginner, so please explain your magical...

0v0,

GRUB works just fine with LUKS2 these days. There is no need to switch bootloaders.

0v0,

Argon2id (cryptsetup default) and Argon2i PBKDFs are not supported (GRUB bug ), only PBKDF2 is.

There is this patch, although I have not tested it myself. There is always cryptsetup luksAddKey --pbkdf pbkdf2.

Sandra, to emacs

Why does replace-regexp backwards work so differently?

C-u - M-x replace-regexp w+

The - prefix arg replaces backwards but it hits one char at a time, as if the plus sign weren’t there. The same replacement forwards (without the prefix arg) does hit one word at a time. What’s going on, @emacs?

0v0,

Because once it hits the ultimate character of a word, w+ matches that (single) character, next time it matches the penultimate character, etc. You’d need Ww+ to make it look far enough back to the beginning of the word.

0v0,

The regexp itself always looks forward, the BACKWARD argument just determines which direction the point should move after a match.

0v0,

Consider the string abc. From the end, moving backwards, when does it match w+, and what does it match? When it reaches c, it matches c. And from the front, moving forwards? When it reaches a, it matches abc. This is why it acts differently.

BTRFS and moving /home to subvolume, in need of a sanity check.

So I installed Debian 12 with btrfs and apparently it only uses a single subvolume rootfs. I would like to have my /home in a separate subvolume (and possibly /var too I guess) and with a flat subvolume structure. I started figuring out on how to do it and I feel like I’m not entirely sure yet so I need a sanity check....

0v0,

This seems right and exactly the way I’ve set it up. On subvolid=5 I have subvolumes @ and @home, in /etc/fstab I mount / as subvol=@, and /home as subvol=@home.

0v0,

stackoverflow.com/…/how-does-user-js-work-in-fire…:

It just looks like a JavaScript file. Once upon a time in Netscape 3 and maybe 4 it actually was, but now it’s just a file with a .js extension and a very restricted syntax that’s parsed by a separate (non-JS) parser and not executed in any way.

Debian 12 install problem

Hey guys. Yesterday I tried installing Debian 12.2. with the easy graphical install since I was doing it first time but I got stuck on DHCP settings becaus It didnt connect to my wifi. So I ignored it for the time being but when I loaded in desktop enviroment I still saw no wifi to which I could connect to. The problem shouldnt...

0v0,

Could you run sudo lshw -C network and post the output for the wireless interface?

0v0,

Funny enough I arrive at this the most when I play the Triassic and my opponent goes for a Cretaceous game structure.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • kavyap
  • DreamBathrooms
  • tacticalgear
  • magazineikmin
  • khanakhh
  • everett
  • Youngstown
  • mdbf
  • slotface
  • rosin
  • ethstaker
  • InstantRegret
  • thenastyranch
  • JUstTest
  • ngwrru68w68
  • cisconetworking
  • cubers
  • osvaldo12
  • modclub
  • GTA5RPClips
  • tester
  • Durango
  • provamag3
  • anitta
  • Leos
  • normalnudes
  • lostlight
  • All magazines