• 0 Posts
  • 268 Comments
Joined 2 years ago
cake
Cake day: February 1st, 2024

help-circle

  • At this point, they no longer obey the laws of classical physics, and the resulting quantum phenomena — known as relativistic effects…

    This is…not how I would word things. Atomic physics is usually not in a classical (Newtonian) regime, and a quantum treatment is standard.

    Adding relativistic effects to the quantum treatment is also standard, but many aspects of e.g. the hydrogen atom are reasonably well described without relativistic effects, though of course relativistic effects do matter.

    Nitpicking aside, neat stuff!





  • qjkxbmwvz@startrek.websitetoScience Memes@mander.xyzi need sleep
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    2
    ·
    1 month ago

    High frequency is generally bad for transmission line losses, so getting power from A to B is better at lower frequency — DC is a great option here.

    If we switched to DC, many things would still flicker though as they would presumably use switching power supplies, but those could be relatively high frequency like you said.

    Interestingly, airplanes use 400Hz, as transmission over distance doesn’t matter, and transformers can be made much smaller/lighter.








  • qjkxbmwvz@startrek.websitetoScience Memes@mander.xyzOn Venus.
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    1
    ·
    2 months ago

    Not a historian, but folks on The Internet have characterized the Soviet program as a series of milestones, with the US program a series of stepping stones in support of a single goal.

    This makes sense with the cartoon, where the Soviets were first in basically everything except walking on the moon.

    Not sure how much merit it has, but it’s kinda interesting.






  • nc is useful. For example: if you have a disk image downloaded on computer A but want to write it to an SD card on computer B, you can run something like

    user@B: nc -l 1234 | pv > /dev/$sdcard

    And

    user@A: nc B.local 1234 < /path/to/image.img

    (I may have syntax messed up–also don’t transfer sensitive information this way!)

    Similarly, no need to store a compressed file if you’re going to uncompress it as soon as you download it—just pipe wget or curl to tar or xz or whatever.

    I once burnt a CD of a Linux ISO by wgeting directly to cdrecord. It was actually kinda useful because it was on a laptop that was running out of HD space. Luckily the University Internet was fast and the CD was successfully burnt :)