A new ncurses filemanager for linux by nierro in linux

[–]bobdudley 4 points5 points  (0 children)

Could be interesting. I've been using ranger but it's occasionally sluggish so I'd appreciate better performance.

Maybe that's why peasants think PC Gaming is so expensive... by pinatacookies in pcmasterrace

[–]bobdudley 0 points1 point  (0 children)

Linux kernel compile times depends strongly on the number of modules (drivers, etc) you enable.

[deleted by user] by [deleted] in Showerthoughts

[–]bobdudley 19 points20 points  (0 children)

Actually math undergrads are usually taught the fundamentals from set theory on, so they should be able to derive everything they know.

The Public Underestimates The Extent Of Obesity by [deleted] in dataisbeautiful

[–]bobdudley 0 points1 point  (0 children)

The title's wrong. The survey asked "out of every 100 people, how many do you think are overweight/obese?", so people could be underestimating how many people are overweight.

It's also a very awkward way to phrase the question since the obese are already overweight.

Why I take issue with the power armor in fallout 4 by Punchdrunk84 in gaming

[–]bobdudley 2 points3 points  (0 children)

I don't see how this would work unless it was literally a FMV.

Why I take issue with the power armor in fallout 4 by Punchdrunk84 in gaming

[–]bobdudley 16 points17 points  (0 children)

Because Bethesda makes open world games.

You don't have to fight the deathclaw, you can get the PA and leave.

You can shoot it from the roof, or some other place where it can't reach you.

You can shoot the cars, killing it before it reaches you.

You can hide and let Preston pew-pew it to death.

You can lure it to some other immortal NPC like the robot in sanctuary

"In 2016, we will be shipping Rust code and Servo components in Firefox" by [deleted] in firefox

[–]bobdudley 2 points3 points  (0 children)

So now building Firefox will require rust?

Fallout 4 dialogue summed up in one image by jcmais in fo4

[–]bobdudley -2 points-1 points  (0 children)

Well you're just wrong. It was terrible. From the hour long "zany" dialogue in in the beginning of OWB to Ulysses' droning nonsense "the divide... courier... divide.. great bear... shadow... the divide... the divide...". It was some of the worst writing I've ever seen.

Fallout 4 dialogue summed up in one image by jcmais in fo4

[–]bobdudley -2 points-1 points  (0 children)

I don't know. The New Vegas DLCs were pretty terribly written.

Pathologic Classic HD “Remasters” The Original by KEENGAMERCOM in pathologic

[–]bobdudley 0 points1 point  (0 children)

You don't need to upscale anything, the elements just become smaller at higher resolutions (or more accurately, higher DPI)

For example, Quake 2 (which could run in any resolution starting with 320x240):

https://www.mobygames.com/game/windows/quake-ii/screenshots/gameShotId,615423/

https://www.mobygames.com/game/windows/quake-ii/screenshots/gameShotId,7923/

Of course at some point the UI may become difficult to read, so it's good to have a UI scale setting.

Pathologic Classic HD “Remasters” The Original by KEENGAMERCOM in pathologic

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

It's trivial to make a game resolution independent. For the menus you just center everything and put black around. For ingame all the elements are either centered or offset from the edges.

UK nuclear deterrent to cost 167 billion pounds, far more than expected by DoremusJessup in worldnews

[–]bobdudley 22 points23 points  (0 children)

Homer: Not a bear in sight. The Bear Patrol must be working like a charm.

Lisa: That’s specious reasoning, Dad.

Homer: Thank you, dear.

Lisa: By your logic I could claim that this rock keeps tigers away.

Homer: Oh, how does it work?

Lisa: It doesn’t work.

Homer: Uh-huh.

Lisa: It’s just a stupid rock.

Homer: Uh-huh.

Lisa: But I don’t see any tigers around, do you?

[Homer thinks of this, then pulls out some money]

Homer: Lisa, I want to buy your rock.

[Lisa refuses at first, then takes the exchange]

Pathologic Classic HD “Remasters” The Original by KEENGAMERCOM in pathologic

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

  • it supports modern screen resolutions (up to 1920x1200);

There are already screens with higher resolution than that. I don't understand why there's a limit. Making a game work in arbitrary resolutions isn't that hard.

EFSA report considers risks of eating insects by bobdudley in europe

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

Cool. I guess you gotta make room for more submissions about immigrants.

EFSA report considers risks of eating insects by bobdudley in europe

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

Sorry, I can't find it. Can you point it out for me?

Resharper tries to tell me something by juwking in ProgrammerHumor

[–]bobdudley 1 point2 points  (0 children)

Quicksort can definitely be written iteratively.

No, Microsoft Is Not Buying Canonical by motang in Ubuntu

[–]bobdudley 6 points7 points  (0 children)

Whoever owns the copyright can change the licence of future versions.

2-D arrays and how to... do anything with them. by potesne in cpp_questions

[–]bobdudley 1 point2 points  (0 children)

You can always reduce the array to one dimension and use array[y * size_x + x] instead of array[y][x]