• 72 Posts
  • 4.41K Comments
Joined 2 years ago
cake
Cake day: June 6th, 2023

help-circle
  • I guess related to the MPV post. From what I understand wp_color_manager_v1 essentially tells a window manager what colorspace its outputting (via dbus?) so that the window manager can make realtime color corrections.

    Trying to think of a use case… maybe if you have a really red video scene, your window manager can normalise that so you can see the different shades of red better. Am I even close?





  • cd ~/repos/work-project27
    git checkout dev
    git branch new_feature
    ### code for a few hours, close laptop, go to sleep, next morning
    git checkout dev
    ### code for a few more hours, close laptop go to sleep, next morning
    ## "oh fuck, I already implemented this in new_feature but differently"
    git checkout dev
    git diff new_feature
    ## "oh no. oh no no no. oh fuck. I can't merge any of this upstream and my history is borked."
    git clone git@workhub:work/work-project work-project28
    cd ~/repos/work-project28