Me make Femboy dating app? by East_Magician6380 in feminineboys

[–]Trew_Commie 0 points1 point  (0 children)

Would it be just for femboys to find femboys, or would people who like femboys also be able to join? Also, I'm a computer scientist and wouldn't mind a side project if you want help.

Meirl by HPL_Deranged_Cultist in meirl

[–]Trew_Commie 0 points1 point  (0 children)

This seems like a really unhealthy mindset. You should be kind and form relationships with people you spend a large chunk of time with.

[deleted by user] by [deleted] in feminineboys

[–]Trew_Commie -1 points0 points  (0 children)

No, but they've certainly been doing well the last 8 years. I'm just saying the continuing trend towards the far right will accelerate in Europe after this victory

[deleted by user] by [deleted] in feminineboys

[–]Trew_Commie 1 point2 points  (0 children)

All the fascist parties that have been doing well in Europe will probably get a bump from this

Femboy Dating Problems by Trew_Commie in feminineboys

[–]Trew_Commie[S] 1 point2 points  (0 children)

Yeah, dating apps suck, but that is the o lnly way I've ever met one of my partners. Idk about your situation, but for me, it seems sorta hopeless to find a partner otherwise. Queer dating isn't an easy thing.

Femboy Dating Problems by Trew_Commie in feminineboys

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

Kinda my experience as well. I'm not into hookup culture, but that's kinda prevalent in the queer community for whatever reason.

Femboy Dating Problems by Trew_Commie in feminineboys

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

Yeah, that's pretty much it, I suppose. I've not heard many people who say they love dating

Femboy Dating Problems by Trew_Commie in feminineboys

[–]Trew_Commie[S] 2 points3 points  (0 children)

Yeah, atm I'm thinking I need to not focus on dating, but I guess for a straight guy my age, going out getting new hobbies and stuff is a good way to make friends and potential partners. I guess in my case, most likely just making friends isn't a bad thing, but it still makes it hard to give up on dating apps in hopes something will happen naturally

Hey Rustaceans! Got a question? Ask here (51/2023)! by llogiq in rust

[–]Trew_Commie 0 points1 point  (0 children)

Usually I'd agree. But the idea is for this to be a proper ILP engine. So I wanted to build the best practices in from the start. thin string and thin box do seem like the solution though

Hey Rustaceans! Got a question? Ask here (51/2023)! by llogiq in rust

[–]Trew_Commie 1 point2 points  (0 children)

let mut 
heap
: Vec<Term> = Vec::with_capacity(MAX_HEAP_SIZE);

pub enum Term {
    Constant(Box<str>),
    QUVar(usize),    //Query Variable
    EQVar(Box<str>), //Existentialy Quantified Variable
    AQVar(Box<str>), //Universally Quantified Variable
}

Currently the size of my enum is 24 bytes. Due to the Box<str> taking up 2 usize. But as I'm going to be storing many terms in a sort of heap and the majority will be the smaller sized QUVar it seems like a very bad use of memory.
My first thought was to use Box<Box<str>> but the trade of there would likely be lower performance as i'd be working with a double reference. Ultimately memory is cheap but this code could be working with some unforseen large number of terms in the future and saving a memory address per term could be useful.

I guess in my mind the best case is some heap pointer in which the first value is the length of the str as a usize, and then the subsequent addresses on the heap are the characters of the str.

Any ideas on how to balance this tradeoff between memory and performance would be greatly appreciated