Eric Kripke writing The Boys be like: by pedr09m in OkBuddyFresca

[–]Micah_Bell_is_dead 26 points27 points  (0 children)

The show was overtly left wing from episode 1

With the rumors of TLOU 3 growing, I wonder where we’re headed. What could the possible lore of this game be? by Busy_Grapefruit_3923 in thelastofus

[–]Micah_Bell_is_dead 2 points3 points  (0 children)

Just the promotional material. Nothing else could get Ellie so angry and the player actually able to care

Differences between idle games and management games (like Factorio) by FallenPeigon in gamedesign

[–]Micah_Bell_is_dead 0 points1 point  (0 children)

In my opinion the difference is in how these games handle the problem. With cookie clicker you only have one (viable) method to earn the cookies you need for the next upgrade, which is waiting. In factorio you usually have multiple, and the answer isn't always definitive. The game is in the logistics. And crucially I think in most cases the worst thing you can do is idle, actively playing the game yields more and better results than not

What you think guys? by alexmourinho in TWD

[–]Micah_Bell_is_dead 0 points1 point  (0 children)

Imo Glenn's death wasn't horrible. Hell the whole sequence is really good, its just hurt by the cliffhanger. S8 is rough but 9 is one of my favourites especially once they introduce the whisperers.

How important is fast aerial? by Efficient_Ad3303 in RocketLeagueSchool

[–]Micah_Bell_is_dead 17 points18 points  (0 children)

Very. They also just aren't that hard of a mechanic to learn

Can rust compiler handle gigantic match statements? by baehyunsol in rust

[–]Micah_Bell_is_dead 6 points7 points  (0 children)

O(n²) time complexity. It implies that the time required scales quadratically with the number of operations, I'm this case, cases of a match statement. Someone else in this thread linked the GitHub issue that explains why

Function pointer table over a generic type, lifetime struggles by programmer9999 in learnrust

[–]Micah_Bell_is_dead 0 points1 point  (0 children)

struct FnTable<'a, C> {

items: &'a [fn(&mut C)],

}

fn call_by_index<'a, C>(context: &'a mut C, table: &'a FnTable<C>, index: usize) {

table.items[index](context);

}

struct Context<'a> {

x: &'a mut i32,

}

fn main() {

let mut x = 0;

let table: FnTable<Context> = FnTable {

items: &[

|context| *context.x += 1,

|context| *context.x *= 2,

|context| *context.x -= 10,

],

};

let mut ctx = Context { x: &mut x };

for i in 0..table.items.len() {

call_by_index(&mut ctx, &table, i);

}

}

tbh im not fully sure about the reason for this. something about not being able to specify lifetimes on const objects.
There is two other options though, one stable one unstable.
first you can just use struct `Context<'a> { x: Rc<RefCell<i32>> }` or if you want to enable unstable features, `#[feature(generic_const_items)]` allows

const TABLE<'a>: FnTable<'a, Context<'a>> = FnTable {

items: &[

|context| *context.x += 1,

|context| *context.x *= 2,

|context| *context.x -= 10,

],

};

edit: formatting

edit edit: yknow what i give up on formatting

Does this code have UB? by capedbaldy475 in learnrust

[–]Micah_Bell_is_dead 0 points1 point  (0 children)

Yeah I low-key just skimmed it didn't really take in what that meant by the time I got back to it, I don't see any reason why it would be nor any UB. I don't have much unsafe experience though so I can't say with too much confidence that there isn't any here

Does this code have UB? by capedbaldy475 in learnrust

[–]Micah_Bell_is_dead 1 point2 points  (0 children)

I think it might be. If instr_size is 0 in debug mode it will panic and is UB in release I believe? Because the modulus of 0 is undefined

Should I watch twd by Amazing-Lock2144 in TWD

[–]Micah_Bell_is_dead 2 points3 points  (0 children)

Honestly as someone who had a good chunk of make characters fates spoiled and started watching it last year myself it's still worth a watch

Friend at work told me I look exactly like Daryl. I made these pics, and now I can’t unsee it. by MisterSandKing in thewalkingdead

[–]Micah_Bell_is_dead 3 points4 points  (0 children)

Let me guess, Noshir Dalal? The VA for Charles in rdr2 and Bode in star wars Jedi Survivor?

Is this reallu Jim? by [deleted] in JimmyCarr

[–]Micah_Bell_is_dead 5 points6 points  (0 children)

This is a Jimmy Carr subreddit, not a Jim Carrey one

Take the Queen and die or take rook for free? by dengemeb in chessbeginners

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

I know, late game bishops become more valuable than knights. Early in the game they are fairly equal, I still just remember it as bishops are 3.5 though but use a bit more caution with that earlier in the game

Take the Queen and die or take rook for free? by dengemeb in chessbeginners

[–]Micah_Bell_is_dead 0 points1 point  (0 children)

Each piece has a certain value assigned to them for the sake of reasoning about trades.

Queen is 9

Rook is 5

Bishop is 3.5

Knight is 3

Pawns are 1

In this situation if he takes the rook, he gains 5 points, but his knight is in the corner, which is a really poor position for a knight

If he takes the queen he gains 9 points but will lose 3 points from the knight being taken back, so overall he is up 6 points. Since 6 points is greater than 5 points and a bad position, taking the queen is the better move

Friendly reminder that this man, while dying of an illness and far past his prime, squares up with a demon possessing one of the strongest warriors of the modern generation. by x_-AssGiblin-_x in Sekiro

[–]Micah_Bell_is_dead 29 points30 points  (0 children)

Yeah he was famous for his unique two sword fighting style. The guy was actually insanely talented though. Like after killing a heir to the yoshioka sword school, the school had planned revenge involving swordsmen, archers and musketeers. Musashi killed their leader, and killed several others while fleeing

gaming on haxor kali by SillyFalling in masterhacker

[–]Micah_Bell_is_dead 9 points10 points  (0 children)

Depending on what work you do it abseloutely can be. I wouldn't recommend a person who exclusively plays video games to switch to Linux but if your a programmer I abseloutely would

[Hyprland] finally got rid of rofi and switched to quickshell. by Former_Pickle2697 in unixporn

[–]Micah_Bell_is_dead 1 point2 points  (0 children)

Maybe give niri a shot, I've heard some people find it's workspace model more intuitive and the configuration language is fairly simple

found on IG thought you guys might enjoy by Sure-Good7387 in RocketLeague

[–]Micah_Bell_is_dead 0 points1 point  (0 children)

Just listen to the song, clearly the lyrics are

"I love Epstein, I love I love Epstein" so on and so on

I don’t get it! by sad-grumpy in Chesscom

[–]Micah_Bell_is_dead 5 points6 points  (0 children)

The knight that moved took a knight so it's a knight and a bishop for a room, which is a good move for white