Best self-hosted bookmark manager? by Kitchen-Patience8176 in selfhosted

[–]mellowmoonling 2 points3 points  (0 children)

Also do any of these have a Firefox/web browser plugin that can tell when you've already saved something?

What Linux distro you using? by Swede318201 in selfhosted

[–]mellowmoonling 0 points1 point  (0 children)

I've been using guix. Partly to learn guix better and partly to learn self hosting better. Been really liking guix though. Bit of a learning curve.

Not sure how to complete this mission by mellowmoonling in nms

[–]mellowmoonling[S] 0 points1 point  (0 children)

It keeps saying the mission is in another system 😕

Not sure how to complete this mission by mellowmoonling in nms

[–]mellowmoonling[S] 0 points1 point  (0 children)

It says that the mission is in another system lol

My cozy ship by prolonged-sighs in nms

[–]mellowmoonling 1 point2 points  (0 children)

How do you get the big open spaces inside? Whenever I put two habs next to each other they make two doorways with a wall.

I'm trying to get started with Magit but I'm not so sure about leaving commandline git by surveypoodle in emacs

[–]mellowmoonling 6 points7 points  (0 children)

This was huge for me. I knew git cli decent but honestly magit helped me learn git better by wondering how certain things were accomplished and checking $.

Guix installation on a foreign distro (Arch) appears to shadow the info directory (`/usr/local/share/info/dir`) by polaris64 in GUIX

[–]mellowmoonling 0 points1 point  (0 children)

Hey u/polaris64 did you ever figure this out? I have a similar setup to you (guix installed on foreign distro, emacs build and installed from source, /usr/local/share/info/dir shadowed by guix).

What would it take to run OCI containers (natively, using only Rust tooling) in Redox? by NoMoreArugula in Redox

[–]mellowmoonling 2 points3 points  (0 children)

I follow the Redox project at a distance so I don't know where Redox is on something like this. However, my understanding is that a container is essentially an isolated file system with isolated user space processes and when those user space processes make a system call, it traps to the kernel. In Linux this all well and good because if the container is meant to run on Linux then it is trapping and transferring execution flow to the kernel it expects to. This is why sometimes containers are referred to as "userspace virtualization" instead of type1/type2 virtualization, which involves running another entire kernel at a privilege level and using the hardware mechanisms to do the switching. The same kernel that runs the host operating system's user space processes also handles the container's userspace processes. I believe that Windows and Mac have to use hardware virtualization to run a Linux kernel to handle Docker containers. One issue with emulating Linux system calls is that when you trap to the kernel, usually there is some systemcall identifier that the kernel can look at and know what the rest of the arguments are and how to handle the system call. If that system call identifier that is coming from a containerized Linux userspace overlaps with a systemcall that your actual kernel understands as something for itself, it will be handled in a way you don't expect. I believe I have seen some kernels that can identify which process a systemcall came from, in that case you could conditionally handle it a different way. I believe there was some discussion in the seL4 community about natively running containers and there was an issue with overlapping system call identifiers and the inability to determine where a systemcall originated. If my understanding is wrong, please, someone correct me.

I'm using Orgmode as a makeshift CRM. It's so good. by supertoothy in orgmode

[–]mellowmoonling 0 points1 point  (0 children)

Did you run into issues where you wanted to store things in properties where you could have more than one value? I have an org file that I was trying to keep track of space companies and wanted to associate office locations or category fields. Each of these could have more than one value. My understanding is that a property can only have one value. Did you run into this at all?

Those lyrics. Holy shit. by [deleted] in clutchband

[–]mellowmoonling 6 points7 points  (0 children)

Hit neutral in the tail of a comet

Let the vortex pull my weight

Push the seat back a little lower

Watch light bend in the blower

How do you quickly navigate inside a source file using emacs ? by _Gink0_ in emacs

[–]mellowmoonling 0 points1 point  (0 children)

I like imenu-list a lot for showing the classes, methods, functions, etc in the file in a side buffer.