Anyone know a web framework for Python? :-)

I work with a 40" monitor, and I still am annoyed by the waste of real estate by the Code Snippets frame.

One (ugly) workaround is to press F12 and type this in the console:

  • Hide the Code Snippets frame:

    $(".main-panel").css({"right":"0"})
    
  • Show the Code Snippets frame:

    $(".main-panel").css({"right":"33%"})
    

I don’t know if this will have any side effect, I hope not.

1 Like