Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)A
a2800276 @lemmy.world
Posts 0
Comments 11
What are your top three favourite podcasts?
  • Five to Four : "a podcast about how much the Supreme Court sucks" with Peter from If Books Could Kill which got quite a few mentions

    Embedded.fm : best tech podcast I know, nominally about embedded programming, but also a lot of peripheral topics, origami comes to mind. Few tech podcasts manage to discuss deeply technical issues in an interesting manner.

    Conversations with Tyler: general interest podcast with long conversations with a diverse cast of sometimes very high profile guests. Just came across it a couple of days ago and was surprised I never heard of it. Tyler has had folks like Daniel Kahnemann, Noam Chomsky, Neil Stephenson but also has great lesser known people. A recent podcast was about the history of Chinese cuisine...

  • Congress told AI firms should pay for copyrighted content
  • Doesn't that argument apply to any instance of ignoring intellectual property. Books, records and movies will also be cheaper in countries that let companies do what they want. Medicine would be more accessible, ignoring patients will greatly accelerate innovation in countries where permitted...

  • How to Write Function-Like Preprocessor Macros
  • Sure. So? If the compiler feels it's more efficient not to inline, who am I to judge? As far as I know there's nothing keeping the compiler from recognizing repetitive code generated by macros and factoring out into a single assembly routine...

  • What's a feature you'd like to see in Calibre?
  • I don't feel it's missing much feature-wise. It could use some polish in the HMI department, though. Not for me personally, but I can imaging the Windows NT theme could be a bit off-putting for the average user.

  • Do you think the guys on the titanic submarine will be rescued?
  • whether they have enough water for 3+ days

    I'm sure they have a couple of cases of Fiji Water in there. Even if not, three days without water shouldn't kill someone who passes a physical I'm sure everyone on board had to take ...

  • How to Write Function-Like Preprocessor Macros
  • I think it depends, trivial min() and max() style functions are very common and considered acceptable, though I guess you could have been using inline for the last two decades...

    The only time I got any serious usage out of preproc functions was writing a driver for an AT-command set cellular modem which involved writing a ton of repetitive code for each AT command.

    I think I would prefer this sort of content in wrtten form though, cause I do it so seldom, I always need to look up syntactic specials like 'stringizing' where I even tend to forget the names of the concepts :)