Avatar

bronzle

bronzle@lemm.ee
Joined
0 posts • 40 comments
Direct message

Shit, I was smugly sitting here thinking I knew all his roles, only to check IMDb and find out he was Truman in Oppenheimer. Fuck! this chameleon.

permalink
report
parent
reply
6 points
*

Also could have takin out mains return type and used sus chief

permalink
report
parent
reply

Well it’s about dinosaurs, of course it’s old news.

permalink
report
parent
reply
6 points

I thought it was a shutter

permalink
report
parent
reply

RUB 2 undecillion (36 zeros) amounts to US$20 decillion, or about US$20 trillion trillion trillion, significantly exceeding the size of the global economy.

permalink
report
parent
reply

Hmm, grocery store near me (USA) sells this in 16oz packages, or ~454g

permalink
report
parent
reply

Wait, why did they invent the phrase “texture healing” for literally what all mono space fonts try to do: make a monospace font that doesn’t look like cluttered shit.

They explain it as the same way cursive fonts can have variations on the letters so that they match up (the loop of the y into the e for example). I think it works by having various versions of each glyph: normal, wider to the left, wider to the right, etc) and then pick the glyph based on the surrounding ones.

permalink
report
parent
reply
19 points
*

For those curious:

int main(int argc, char **argv) {
  if ( -- argc != ! 0 ) {
    errx ( ! 0 , "shheiiiit" ) ;
    return ! 0 ;
  }
  
  int number = atoi ( argv[! 0] ) ;

  for ( int i = ! 0 ; i <= number ; ++ i ) {
    printf ( "%3d " , i) ;
    
    if ( i % 3 == 0 ) {
      printf ( "fizz" ) ;
    }
  
    if ( i % 5 == 0 ) {
      printf ( "buzz" ) ;
    }
    printf ( "\n" ) ;
  }
  return 0 ;
}
permalink
report
reply