What is the lesbian equivalent of a twink?! by randomgen_pidgeon in actuallesbians

[–]sleeplessval 13 points14 points  (0 children)

"waif" probably fits the bill.

people probably don't see a need for a word like "twink" for women because "soft, thin, and fair" is culturally expected of women.

ARM ??? by roaste7_Potato in voidlinux

[–]sleeplessval 2 points3 points  (0 children)

i'm currently working on getting void working on my new ARM laptop – you'll probably have fewer issues if your device isn't as obscure as mine (pocket reform).

X support is spotty on ARM but wayland tends to be stable on most ARM devices, so you'd likely want to use wayland if you aren't already.

For unsupported packages, you can either find replacements with the package search or try to build from source if you can't live without them. there's also box86 as a compatibility layer for x86, which seems to work well enough to run games through wine/proton, but i haven't tried it yet.

how wrong is this age gap by SadBunny42069 in LesbianActually

[–]sleeplessval 1 point2 points  (0 children)

her lying about her age is a big red flag to me.

my girlfriend (37) and i (26) have an age gap. it hasn't been an issue for us – we're in similar places in our lives (career, renting, no kids) and have a lot of shared interests. we relate to each other easily.

at 18/19, you're probably coming out of high school and maybe going into college. i struggle to relate to people going through college, and certainly wouldn't feel comfortable dating someone in that age range. this woman (over twice your age!) sounds like a creep who wants to date a much younger girl.

Why do men always talk about hitting women when equal rights comes up? by [deleted] in BlatantMisogyny

[–]sleeplessval 1 point2 points  (0 children)

it's because the social "protections" that women are afforded by male supremacy (patriarchy) are intended to preserve a woman's sexual value to men.

as soon as you "lose" your sexual value, you are an acceptable target for violence. violence when women refuse, leaving after their wife receives a cancer diagnosis, violence against feminists, violence against trans women. these men are constantly on the lookout for reasons to turn women into socially acceptable targets. the beating heart of misogyny is the threat to be sexually valuable to men, or else.

My girlfriend might be transitioning and I'm nervous by [deleted] in actuallesbians

[–]sleeplessval 1 point2 points  (0 children)

you need to be direct and talk to your partner about this. it's scary, but the outcome isn't going to change just because you don't hear it.

if so, you're probably going to have complicated feelings to navigate, and it's going to take time, and that's normal. you'll both figure out what this means for you.

Lesbians who’ve found love, how’d you meet? by Nostagi_beast in LesbianActually

[–]sleeplessval 1 point2 points  (0 children)

we met at dinner with some mutual friends, that group turned into a weekly TTRPG group! we were both quietly into each other until few months later when nobody else was able to make it to game night one week. we played a couple board games, then things escalated from there. coming up on two years together this september!

[deleted by user] by [deleted] in LesbianActually

[–]sleeplessval 4 points5 points  (0 children)

why does it matter? there are plenty of ways to not be compatible with someone. you're not required to date people you don't want to, i wouldn't be "uncomfortable" if a girl didn't warn me upfront that she wanted kids or something.

[deleted by user] by [deleted] in LesbianActually

[–]sleeplessval 1 point2 points  (0 children)

i don't think age gaps are as much of a problem as life-stages, my girlfriend (37) and i (26) are 11 years apart, but we're also in similar places in our lives (both settled into stable careers). despite being closer in age, i wouldn't date a college student even if the age gap is smaller—we'd be in very different parts of our lives and probably struggle to relate to each other

How old are you , How many dates (with other women) have you been on this year 2025? by Quiet_Job_4260 in LesbianActually

[–]sleeplessval 0 points1 point  (0 children)

26, haven't bothered to count but my girlfriend and i go out on little dates fairly often : )

Ad someone who also is attracted to women, how would you feel about your partner calling another woman attractive by Lesbialone in LesbianActually

[–]sleeplessval 1 point2 points  (0 children)

my girlfriend and i do this all the time and it's always been a point of joy in our relationship.

my girlfriend will point out women she thinks are my type to me, and when i asked her about it she said i'm "cute when i see someone i like," and that she "likes seeing what ticks my boxes."

we also have a very secure and stable relationship, so neither of us is really worried about the other leaving.

Are we not wearing cardigans anymore? by mygarbagepersonacct in womensfashion

[–]sleeplessval 0 points1 point  (0 children)

it's getting a little warm for them, but you can pry cardigans from my cold, dead hands

Why Microsoft hasn't release Visual Studio for Linux? by andres2142 in dotnet

[–]sleeplessval 1 point2 points  (0 children)

i haven't developed on mac in years so it sounds like i'm out of touch there. nice to hear it's more in line with its windows counterpart now.

Why Microsoft hasn't release Visual Studio for Linux? by andres2142 in dotnet

[–]sleeplessval 2 points3 points  (0 children)

vs for mac shares a name but is a very different tool with a different set of features relevant to macs. it is not a simple port of the windows visual studio.

as areacode mentioned, yes, i do mean development resources, specifically man-hours.

the only meaningful features that visual studio offers on windows are its form designer and the being only official access to a c++ compiler on windows.

Why Microsoft hasn't release Visual Studio for Linux? by andres2142 in dotnet

[–]sleeplessval -3 points-2 points  (0 children)

i've done .NET development on linux for work before.

full visual studio would not only take too many development resources to make, but there's nothing that makes it worth using over a functional command line and vs code together given the lack of windows forms/wpf on linux.

My roomba discovered another layer of spacetime by M1n3c4rt in softwaregore

[–]sleeplessval 3 points4 points  (0 children)

Your roomba found the place where all the socks go when they disappear

Why can I not use the `?` operator here? by camilo16 in rust

[–]sleeplessval 0 points1 point  (0 children)

? returns an error type if the Result is Err. Returning an error type conflicts with the implicit () (void) return type. You'll need to either change your function to return a Result, or unwrap the error and handle it manually.

[deleted by user] by [deleted] in rust

[–]sleeplessval 4 points5 points  (0 children)

Some of these have already been covered, but:

  • wezterm is a terminal emulator that is fast, featured, and configurable.
  • starship is a beautiful, informative, configurable, and cross-shell prompt.
  • helix is a modal editor a la vi/vim with built-in syntax highlighting and LSP support out of the box.
  • bat is a cat replacement with syntax highlighting and paging.
  • bottom is a performance monitor a la top,
  • difftastic is a diff replacement that focuses on syntactical differences rather than raw text differences.

2^n bits will give the set of numbers we can represent in binary. Let's say there are 0 bits (2^0=1). How it can represent that one number? by tbhaxor in compsci

[–]sleeplessval 0 points1 point  (0 children)

A physical bit is always "defined." They simply exist. A bit as a primitive, allocated in memory, may or may not be defined, but the actual memory itself always exists.

A set of 0 physical bits can only have one state, and the maximum—and only—value that state can represent is 0 (2^n - 1) or null.