[-] SoleInvictus 17 points 2 days ago

If only the author included some sort of way to learn more, like an article or something.

[-] SoleInvictus 1 points 6 days ago* (last edited 6 days ago)

It really depends on a lot of factors, including water quality, substrate composition, and the extent of the digging. The majority of microbial activity in most waterways isn't in the water, but instead in a region called the hyporheic zone, a surprisingly thin layer of sediment at the interface between surface and ground water.

Digging and dredging both are fantastic ways to disrupt this layer. Microbial communities will redevelop rapidly, but their composition will be different. The makeup of the stream/riverbed will have significantly changed; different types of microbes reproduce at different rates, with fast reproducers initially crowding out slower growers; and the products of the activity of some microbes provide the conditions under which other types of microbes can flourish. The composition will change over time and may take months or even years to return to a steady state, and even then that state may be quite different than before digging or dredging.

106
submitted 1 week ago by SoleInvictus to c/goodoffmychest@lemmy.world

We've been together for well over a decade. She has ADHD and CPTSD and that makes our relationship difficult, but she won't take accountability for the difficulty it causes. I'm just supposed to deal with it on my own.

There's the DARVO (Deny, attack, reverse victim and offender). The fucking DARVO. Yesterday, I went to her for emotional support about something that was frustrating me. Her response was to tell me what to do to fix it. When I explained it was more about frustration than needing a fix, she said nothing and walked out of the room. I later expressed how I felt dismissed and asked her please not to leave the room without saying anything when I'm talking , especially when asking for support. Her response was a lengthy explanation about how she left because she felt the conversation was over. I told her that I felt conversations tend to have a close, not just walking away without another word, so I was confused and hurt. So her response shifted: suddenly, despite her lengthy justification of why her actions were actually okay, it was actually ME who left the room. WTF. It was clear she was being defensive, so I asked that we take a break and discuss later. Later, she didn't want to discuss it at all. I was told this was my fault because I asked to put the conversation on hold, so we could discuss again when she was ready, after work the next day. Given her MO is postponing conversations for days until I simply give up, that is unlikely to happen. We're at four conversations where "we'll talk about it tomorrow, I promise!" from just the last two weeks. I told her my feelings were hurt and I was feeling unimportant, so she told me she needed space, didn't want to talk, and wanted me to leave. Ouch.

When we do talk about difficult topics, we just can't seem to have normal conversations. I'll ask her a question, but she'll answer by talking about something else entirely. I'll acknowledge what she said but explain it doesn't answer my question, but she'll again change the topic to something else. Eventually I get frustrated trying to pin her down, so we agree to talk about it later, but later never comes because she's nearly always too tired. Skimming my diary, we have literally over three dozen indefinitely postponed important conversations since January, all because she's consistently too tired to talk.

We've been separated for nine months now, with me living with a friend. We're in couples and individual therapy, and a consistent issue is her lack of capacity. She just doesn't have the time or energy, ever. Two weeks ago I brought up how she is still consistently avoiding talking about our relationship issues outside of therapy, so I wanted to separate if she was unable to make the time to do the work. She agreed to make time during her week for us to talk, plus she suggested we start a sort of relationship charter, where we outline what we want in the relationship and how we'll get there. Great fucking idea and I felt so much relief that we had a path forward.

But none of this happened. No time was made and no charter was even started, despite her repeatedly promising to create a document for us to share. I keep all We agreed to be finished with a rough draft by Wednesday and she can't take 30s to make an empty document file.

I love her so much, but she hasn't had the time or energy to be present in the relationship for years. She has promised repeatedly it'll be better after "the next big hurdle" passes, but there's always a new one to take its place, so the improvement never comes. When I'm at our home, she naps and watches TV by herself in the back bedroom while I do things by myself around the house. We don't go out - she's too tired because she works 9-10 hour days straight without breaks and has chronic insomnia she refuses to see a doctor about.

So... I'm just done and it breaks my fucking heart. I saw such a great future for us, but I need a partner who is present, not someone with a neverending list of excuses about why they're not here today, but they'll sure be there tomorrow, and that's what the work will start. I've been waiting for years for tomorrow to come. I'm done.

[-] SoleInvictus 127 points 8 months ago

Defend the homeland? That's some Nazi shit.

74
submitted 9 months ago* (last edited 9 months ago) by SoleInvictus to c/linux@lemmy.ml

Edit: holy shit, I did it! The install media is booting off a little SSD partition! It was ultimately quite simple. Will update with instructions once done, for posterity.

Edit 2: I did it...and you can too! Here's what I did to install Linux from a disk partition on a gen 1 Surface Go with no functioning USB ports. I don't know if it's the ideal process, but it worked for me. Suggestions for refinements are gratefully accepted.

Prep Step: Make enough room for your partition and empty space for Linux by shrinking your Windows system partition. I made a 6 GB partition and left 30 GB free for Linux. If diskmgmt is being an asshole about it, turn off your page file and hibernate, then reboot to clear both files. Windows is now struggling along with a ~22 GB partition, 4 GB of free space, all visual enhancements turned off, and no page file. Tough shit, Windows: you exist to install Linux now.

Hot tip: you may have rebooted Windows a bajillion times already. If you're logged into a microsoft account, those jackanapes will lock your system down for two hours for excessive booting. It happened to me twice. Just select "forgot my password/pin", reset it, and you should get back in. Fuck you, Bill Gates!

  1. Download the install ISO for your desired Linux (or whatever, you're an adult) distro.
  2. Create a FAT32 partition with enough size for the contents of your install media.
    2.1 Optional: Name it something silly to blow off steam.
  3. Copy contents of ISO to new partition.
  4. Turn off secure boot in UEFI settngs since Grub2Win is NOT "secure" in the eyes of UEFI.
  5. Download and install Grub2Win.
  6. In Grub2Win, click "view partition list". Save the UUID of the partition you made for the install files for later use. It'll say it's not a legitimate EFI. Just ignore it - you don't need its validation.
  7. Click "Manage Boot Menu", then add a boot entry. I selected the template for Linux Mint, the distro I was installing, and used the example code to start. Don't save it yet, you need to fill in more info.
  8. Examine the boot.cfg file present in the distro install media for required parameters, then find the location of the linux kernel (vmlinuz) and initial ramdisk image (often initrd.lz or initrd.img) files. I literally just copied the "linux /casper/vmlinuz..." line to get my parameters.
  9. Update your code in the boot entry. Here's what mine ended up looking like:
set rootuuid=9889-99F1
getpartition  uuid  $rootuuid  root
g2wsetprefix
linux   /casper/vmlinuz    root=UUID=$rootuuid persistent boot=casper username=mint hostname=mint iso-scan/filename=${iso_path} quiet splash --
initrd  /casper/initrd.lz
if [ $? -ne 0 ] ; then g2werror Linux load error ; fi
  1. Save the boot entry. Reboot your system, then select your shiny new boot entry. Linux should start. Be patient, it's slow AF. Select the installation shortcut to get started. Everything proceeded smoothly for me.
    Note: I left my Windows install as ANY perturbations to UEFI settings end up with it reverting to the Windows boot manager, which points at the Windows install only. If I didn't have Windows to run Grub2Win, I'd be out of luck.
  2. After installation, I found the boot manager went back to the default Windows one and updating through Grub2Win did exactly nothing. I ended up uninstalling, then reinstalling Grub2Win, then it was fixed. Mostly. It still didn't have a Linux boot entry.
  3. Manually add your Linux boot entry. Similar to the install media, you need to tack on some paramaters. Here's what I ended up with, with the UUID being that of the new Linux install partition:
set rootuuid=4d23295b-03db-49d4-858b-e7403d983269
getpartition  uuid  $rootuuid  root
g2wsetprefix
echo Boot disk address is  $root
echo The boot mode is      Partition UUID
linux   $pathprefix/vmlinuz    root=UUID=$rootuuid    verbose
initrd  $pathprefix/initrd.img
if [ $? -ne 0 ] ; then g2werror Linux load error ; fi

And that should do it! Secure boot remains off as Win2Grub's EFI isn't signed by Microsoft, so turning it back on will revert the system to the Windows boot manager. Just to tie things up: Fuck you, Bill Gates!

Hope that helps, and good luck!

Original:
This is a weird one. My partner was gifted a Surface Go model 1824 (gen 1) by their best friend, who unexpectedly died a couple of weeks back. It's nearing the Windows 10 end of support date, so my plan was to install Mint, but there's a hitch: the only goddamned USB port on the system is shot. It's the USB controller, which I've given up on trying to fix as it looks like a hardware issue.

I still want to install Linux because this thing now has super sentimental value. I've freed up 16 gb on the SSD, so I have some space to work with. There's a micro SD slot that still functions, but the stupid system doesn't support booting from it (although a Reddit post suggested you can still do so if you set it up in Grub, which I don't know how to do properly at all). The only thing I can think of is installing something on a partition or partitions that acts as install media, but I have no idea how to do that.

Ive tried using Grub2Win's ISOboot function with the Mint install ISO and I can get it to start, but it stalls out waiting ad nauseum for DHCP. I think it thinks it's a PXE install. Maybe my parameters are set wrong? Actual PXE is a no-go because no network adapter. I tried intently staring at the Mint ISO, then staring at the tablet; no data was transferred, but I did develop a headache.

I'm so, so stumped. Any ideas, anyone?___**-

[-] SoleInvictus 164 points 10 months ago

I got fired for this! Even though it was my lunch break, I was off the clock, and I have a chronic illness that makes working an 8-10 hour day exhausting, I was fired since I was "setting a bad example for the junior staff".

Guess who got an EEOC/disability settlement.

40
submitted 10 months ago* (last edited 10 months ago) by SoleInvictus to c/adhd@lemmy.world

Hey everyone, I'm hoping to get some advice for my partner.

She and I both have ADHD. She consistently has great difficulty communicating clearly and neither of us is sure what to do about it. Where an ideal narrative could be mapped in a straight line, hers would look like a series of loops, whorls, and jagged deviations as she frequently repeats herself, relays events out of order, changes topics inappropriately and without warning, omits entire parts of sentences, etc.

I love her so much so it pains me to say that it's bad. It's really, really bad, and I see how it frustrates her. It's interfering with our relationship as it makes even low stakes conversations agonizing and higher stakes topics often impossible. It holds her back in her personal and professional life. I used to have the same issue, but what helped me isn't really applicable for her.

Does anyone have any resources, ADHD specific or not, that might help her get started in basic, effective communication? She's such a wonderful, intelligent person, and I just want to help her succeed in being able to share that with others.

22
submitted 10 months ago by SoleInvictus to c/retrocomputing@lemmy.sdf.org

I've been going through some of my late father's possessions and found a stash of VIC-20 cassettes. Some are more well known games, while others are more niche, possibly made by local programmers. Like Pet Frog. I can't find that one anywhere! Those I'll definitely extract and upload to archive.org.

What I'm not sure about is some of the utility software. For example, I have cassettes for programmable character set and game graphics editor, loan/mortgage calculator, home inventory, personal finance, VIC typewriter (word processor), space math, biorhythm compatibility, etc.

Are these worth extracting and uploading?

25
submitted 10 months ago by SoleInvictus to c/linux@lemmy.ml

Hey all! The primary issue is in the title - Dolphin doesn't play nice w/ files on my home server. I'm able to view, copy, move, or delete them just fine via SMB, but Dolphin acts as if there is no associated software for any file type. Nemo works without issue, but I prefer Dolphin's customization and feature set.

Any idea what could be wrong? I'm a big Linux newb, so I'm still figuring this all out.

[-] SoleInvictus 139 points 11 months ago

It depends - are their arms broken?

[-] SoleInvictus 117 points 1 year ago

Habitual consumption of even small amounts of processed meat, sugary drinks, and trans fatty acids...

Followed by

The data showed that people who ate as little as one hot dog a day ...

As little as one hot dog a day? I eat like one every few months. How many hot dogs is the average American eating daily?

215
[-] SoleInvictus 207 points 1 year ago

I need to do chores today, so I instead used my procrastination energy here! It's the molar of a herbivore. Here's what I have:

Definitely not beaver. Beaver incisors are orange and shaped very differently and it's far too large to be a beaver premolar or molar. Wrong morphology anyhow - beaver pre/molars are plicated and this is not. It's also not from a muskrat based on all the same criteria but the plication.

It's definitely from a bovid, not from a caprid or equid. Equids tend to have these bizarre columnar molars, and caprid molars are too small and the wrong shape. Since you're in Germany, that leaves us with cows and European bison.

It's the first or second molar from one of those based on the two cusps; if it had three cusps, it'd be the third molar. What clinches it is the asymmetrical gap in the roots (called a furcation area). Cows have a gap right in the middle of their first and second molars, whereas bison have an off-center gap in their first molar.

Congratulations, you have a bison M1!

Cow X-ray

Bison X-ray

15
submitted 1 year ago by SoleInvictus to c/asklemmy@lemmy.ml

I just had three "very special" Craigslist experiences in a row and wondered what everyone else deals with when selling things online.

123
Manul Rule (lemmy.blahaj.zone)
submitted 1 year ago by SoleInvictus to c/onehundredninetysix

Manul

18
Manul (lemmy.blahaj.zone)
submitted 1 year ago by SoleInvictus to c/manul

Manul 1-9.

151
How I (barely) got through college (sub.wetshaving.social)
submitted 1 year ago by SoleInvictus to c/adhd@lemmy.world

cross-posted from: https://sub.wetshaving.social/post/2498731

Deadlines

210
submitted 1 year ago by SoleInvictus to c/adhd@lemmy.world

cross-posted from: https://lemm.ee/post/60653809

me_irl

151
Isopod Power! (mander.xyz)
submitted 1 year ago by SoleInvictus to c/onehundredninetysix

cross-posted from: https://mander.xyz/post/25795394

LIVE!

[-] SoleInvictus 117 points 1 year ago

And wait for an answer. Don't just knock then immediately walk in. I'm nearly fifty and I'm still traumatized by this.

[-] SoleInvictus 105 points 2 years ago

I know it'll never happen, I hope she wins and the court awards her one round each in the ring with each of these assholes.

[-] SoleInvictus 115 points 2 years ago

Supply-side Jesus is the worst Jesus.

[-] SoleInvictus 104 points 2 years ago

I'm a man and I endorse this message.

One thing about being a man is other men drop their guards around you and say the things they believe about their roles regarding women and masculinity. In my experience, most men are fine. Many are confused about who they are and their place in the world but do their best to be good people. Other men are just rotten, selfish, and/or broken people for many reasons. They're often victims of abuse who perpetuate that abuse.

Some, though, are also confused and do their best, but what their best looks like is informed by people like Andrew Tate and Jordan Peterson. They believe women are somehow subhuman and that treating them as such is natural, right, and good. They believe in a social hierarchy and that might makes right. These are the men to worry about. The bad men I mentioned before generally know they're bad or are broken enough that one can notice. These guys, though, appear normal but will absolutely fuck you over to get what they believe they deserve, all the while patting themselves on the back for being such an upstanding person who is "just enforcing the natural order".

That's why I'd also choose the bear.

view more: next ›

SoleInvictus

joined 2 years ago
MODERATOR OF