• 3 Posts
  • 25 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle








  • As mentioned in the article, this concerns release mode, which already does not have symbols by default for user code. It does have symbols for the standard library code, however, due to how the binaries for the standard library are shipped (i.e. with symbols only). This change simply also removes standard library symbols.

    If you need symbols, you can use default debugging build, or if you need both compiler optimizations and debugging symbols you can create a custom profile that inherets from release with debug = true. The second you already need to do to get full debugging symbols right now, so this isn’t really much of a change from a workflow standpoint.




  • Honest question, not being catty or anything. Why is this news, exactly? This is a nearly every winter occurrence to get below -50C in Yakutsk, the average winter day is -42C. (It also gets up into the 90s during the summer, Yakutsk is a wild place.)

    This would be roughly equivalent to a news article saying Detroit is down to 10F today, i.e. colder than normal, sure, but not really beyond the pale for a December day.

    Honestly asking because I’m just wondering if this is the start of the “there can’t be global warming because it’s cold somewhere” coverage for this winter season, or if this is intended to be a fun TIL article for the lucky 10000.





  • If the streching is so small as to be unnoticable (and I agree it’s pretty subtle) then I also don’t really understand the benefit.

    Typically, the idea behind this sort of design is that it should be unnoticeable. The motivation is that, with other monospace fonts, the differences in character width, along with the inconsistent spacing and line thicknesses are both noticable and distracting. Some of this badness is avoidable, and this is what this font attempts.

    and yeah that height difference is really weird. That almost seems like a bug.

    I’ve been informed, (and had to double check because I didn’t believe it,) that the two "i"s are actually the exact same height. The first looking larger than the second is an optical illusion. Font design is hard.





  • Or sometimes even just an array. The first time I thought I wanted to do this was 2003 and I was writing a perl script, and I was trying to loop through some sort of array, and write the outputs of some calculations to $val0 $val1 and so on, and I was neck deep into some horrible dark constructs like ${"val" . $i} before I actually realized that I really just wanted an array, you know, like the one I was already using.

    It took me forever to understand map (the metafunction).