• 1 Post
  • 29 Comments
Joined 1 year ago
cake
Cake day: June 7th, 2023

help-circle
rss

  • Also if you want a domain but dont care about the actual address, a .xyz domain composed entirely of numbers with less than 10 digits is $1-2 + same as renewal fee per year. $1.22 for me on porkbun

    Just be sure to redact the whois information bc you will get a call from scammers trying to get you to register your domain on some “internet map” for a small fee acting as if its some step in your setup process you havent done yet



  • Paint used for the images on the side of the glass had heavy metals (e.g. cadmium). As the paint flaked it became possible to ingest it. A mom who for some reason had an XRF gun (x-ray fluorescence, allows identifying element makeup of things. Useful for identifying material or ore content) and saw a ton of cadmium then went and reported it






  • @jjagaimo@lemmy.catoLemmy Shitpost@lemmy.worldSunday
    link
    fedilink
    English
    10
    edit-2
    2 months ago

    Probably something to do with the great depression and needing to make cheap foods interesting

    Something to do with women having to make things look less lazy/not just serving ready made things, and like they put work into making food in the post ww1 period. Recipe books tended to have the crazier stuff trying to get you to use more of their other products










  • It depends on if the problem is recursive or iterative, and how much it needs to be optimized.

    For example, you may use a for loop for a simple find and replace scheme for characters in a string, where you check each character one by one until you find one which matches the target, and then substitute that.

    There are certainly recursive ways to do string replacement in strings which might be faster than an iterative search depending on implementation, but that’s more optimization than I might need 99.9999% of the time

    A recursive problem that’s difficult to solve iteratively is browsing all the files in a folder and it’s subfolders. Each folder may have several subfolders, which you then need to search, but then each of those folders can have subfolders. This problem can be solved fairly easily recursively but not as easily iteratively.

    That’s not to say it can’t be solved that way, but the implementation may be easier to write

    Recursive code, however, is more frequently prone to bugs which causes infinite recursion leading to crashes, as it is not a tool which is often used and requires several more fences to prevent issues. For example, in the folder example, if one were to encounter a shortcut to another folder and implement code to follow that shortcut as if it were a directory as well, then placing a shortcut to a folder within itself might cause the code to recurse infinitely without having a maximum recursion depth and or checking for previously seen folders.