• 4 Posts
  • 31 Comments
Joined 6 months ago
cake
Cake day: March 11th, 2024

help-circle

  • BlueKey@fedia.iotoScience Memes@mander.xyzOxygen
    link
    fedilink
    arrow-up
    2
    ·
    5 hours ago

    I have no serious knowledge about it, but for the thermic aspect I can’t imagine it working in any way.

    Your body will try its best to keep its core temperature constant. So you won’t really cool your cells down.
    In this process it will burn even more fuel to produce heat, so quite the opposide they want to archive.

















  • I’m new to Go and wanted to copy some text-data from a stream into the outputstream of the HTTP response. I was copying the data to and from a []byte with a single Read() and Write() call and expexted everything to be copied as the buffer is always the size of the while data. Turns out Read() sometimes fills the whole buffer and sometimes don’t.
    Now I’m using io.Copy().