BREAKING NEWS
LATEST POSTS
-
Sleeping patterns By Stephanie Hegarty
http://www.bbc.co.uk/news/magazine-16964783
Stages of sleep
Every 60-100 minutes we go through a cycle of four stages of sleep
Stage 1 is a drowsy, relaxed state between being awake and sleeping – breathing slows, muscles relax, heart rate drops
Stage 2 is slightly deeper sleep – you may feel awake and this means that, on many nights, you may be asleep and not know it
Stage 3 and Stage 4, or Deep Sleep – it is very hard to wake up from Deep Sleep because this is when there is the lowest amount of activity in your body
After Deep Sleep, we go back to Stage 2 for a few minutes, and then enter Dream Sleep – also called REM (rapid eye movement) sleep – which, as its name suggests, is when you dream
In a full sleep cycle, a person goes through all the stages of sleep from one to four, then back down through stages three and two, before entering dream sleep Source: Gregg Jacobs
-
The Most Expensive Places To Live In The VFX Industry
(vfxsoldier.wordpress.com)
VFX Artist Aruna Inversin has a great post on Vancouver’s skyrocketing real estate prices:
FEATURED POSTS
-
Comfy-Org comfy-cli – A Command Line Tool for ComfyUI
https://github.com/Comfy-Org/comfy-cli
comfy-cli is a command line tool that helps users easily install and manage ComfyUI, a powerful open-source machine learning framework. With comfy-cli, you can quickly set up ComfyUI, install packages, and manage custom nodes, all from the convenience of your terminal.
C:\<PATH_TO>\python.exe -m venv C:\comfyUI_cli_install cd C:\comfyUI_env C:\comfyUI_env\Scripts\activate.bat C:\<PATH_TO>\python.exe -m pip install comfy-cli comfy --workspace=C:\comfyUI_env\ComfyUI install # then comfy launch # or comfy launch -- --cpu --listen 0.0.0.0
If you are trying to clone a different install, pip freeze it first. Then run those requirements.
# from the original env python.exe -m pip freeze > M:\requirements.txt # under the new venv env pip install -r M:\requirements.txt