Jevon Wright
Jevon Wright
I got this error on a fresh Ubuntu 12.04.2 install, in particular "ImportError: No module named web.server". The solution was to `sudo apt-get install python-twisted-web`.
I'd love, love to see something like this in Eclipse, particularly the autocomplete functionality based on a schema: https://developers.redhat.com/blog/2020/11/25/how-to-configure-yaml-schema-to-make-editing-files-easier As far as I can tell no other Eclipse YAML editor...
Update: WWD (Wild Web Developer) supports YAML validation but it's a bit awkward to setup: https://github.com/eclipse/wildwebdeveloper/issues/705
OK, that's good to know! I'm creating a 2D game so I don't need the cursor position to be reset. Maybe a separate `setCursorCaptured()` would be better, although I'm sure...
Could this be related to glfw not supporting captured cursor mode on Cocoa? see: https://github.com/glfw/glfw/issues/58
(This is hopefully irrelevant to the issue but in the example, my fake method `getFirstDisplayModeWithTheSameMonitorDimensionsAs()` is to allow players to maintain the same fullscreen resolution while switching between monitors, as...
This has fallen out of my mind a little but but I'm pretty sure it would have been on an x64 Macbook, built-in screen, Mac OS 10.15.7, dock at the...
Yes! I had to do a bit of `chown`ing first, otherwise the directory couldn't be deleted (it's created by `root:root`?) but this is my workaround: ```yaml - name: Deploy to...
With some debugging I stripped my init code to: ```java private PointerBuffer fmodStudioSystemCreate() { try { log.info("loading libraries..."); // is logged SharedLibrary jemallocLibrary = JEmalloc.getLibrary(); log.info("loaded jemalloc %s", jemallocLibrary); //...
I ended up using my workaround instead, so I don't have a reproducible setup anymore - but I'll see if it turns up again!