Skip Navigation
kogasa Kogasa @programming.dev
Posts 0
Comments 859
you just got downsized, sucka!
  • Keycaps are expensive but you can easily spend $500 on a keyboard chassis/plate/pcb alone

  • fuckery
  • Yes, OP only gets you to Q[i]

  • To appease a Steam user's demands for straight representation, Webfishing added a 'Straight' title that costs 9,999 fish bucks
  • No, I stand by it. People who cry about straight representation are goblins at best. That's who's being mocked, not straight people.

  • Thorin is very proud of his new PC case.
  • Fractal makes a few good cases, OP's being one of them. The Define series is more about low volume + high capacity than airflow. All of their cases should have GPU clearance specs so you can tell if you have enough space before buying

  • Time is a circle
  • If a line-following robot bumps into a 3 year old, it might knock them over. It's a different situation with high speed 2 ton death machines

  • Which is better: Aura or Paru?
  • Paru was at one point a rewrite of yay in Rust, and has since continued development as a pseudo parallel fork. It's good. Dunno if it's worth switching, you'd have to see if there's any specific features you might happen to want, but they're both fine

  • What would you put in the bowl?
  • Yeah. Normal whoppers are crunchy. 1 in 4 whoppers is soggy and chewy and hard to eat

  • What would you put in the bowl?
  • Whoppers are good but the risk of getting a bad one is not worth it. Ech

  • Proof by fucking obviousness
  • It depends on what you mean by well defined. At a fundamental level, we need to agree on basic definitions in order to communicate. Principia Mathematica aimed to set a formal logical foundation for all of mathematics, so it needed to be as rigid and unambiguous as possible. The proof that 1+1=2 is just slightly more verbose when using their language.

  • Proof by fucking obviousness
  • It's not a 360 page proof, it just appears that many pages into the book. That's the whole proof.

  • Infinite Suffering
  • It can be, usually for college credit though

  • Infinite Suffering
  • At the universities I went to, Calc 2 was integration, sequences and series, then Calc 3 was multivariable. They really pack all the harder parts into 2.

  • Toy overload
  • I got that banana for my cat. I think the catnip wears off or something but he still likes to have it near him.

  • The return
  • It's called speed of lobsters

  • World Incarceration Rates If Every U.S. State Were A Country (No other country even makes the first page)
  • No other country even makes the first page

    If every state in America were only 1% worse than every other country, then again the first 50 entries would be the American states. This is barely saying more than "America has the highest incarceration rate," so it shouldn't be a surprise.

  • What is your preferred API error response and why?
  • Status 200 for errors is common for non-REST HTTP APIs. An application error isn't an HTTP error, the request and response were both handled successfully.

  • What is your preferred API error response and why?
  • There may be a need for additional information, there just isn't any in these responses. Using a basic JSON schema like the Problem Details RFC provides a standard way to add that information if necessary. Error codes are also often too general to have an application specific meaning. For example, is a "400 bad request" response caused by a malformed payload, a syntactically valid but semantically invalid payload, or what? Hence you put some data in the response body.