Month: July 2018
-
Roundup running on Python 3
Following last week’s upgrade of my Roundup instance to 1.6.0, I have now applied the Python 3 patches from issue2550960 with a few more fixes available in my py3-cmeerw branch and now have both wg21.cmeerw.net as well as issues.cmeerw.org working with…
-
Roundup running on Python 3
Following last week’s upgrade of my Roundup instance to 1.6.0, I have now applied the Python 3 patches from issue2550960 with a few more fixes available in my py3-cmeerw branch and now have both wg21.cmeerw.net as well as issues.cmeerw.org working with…
-
Roundup Updated for wg21.cmeerw.net
wg21.cmeerw.net got a major update with Roundup being updated to 1.6.0 and the template converted to being based on jinja2 which should make it more friendly to mobile devices.
-
Roundup Updated for wg21.cmeerw.net
wg21.cmeerw.net got a major update with Roundup being updated to 1.6.0 and the template converted to being based on jinja2 which should make it more friendly to mobile devices.
-
Allow drag-to-side, but not drag-to-top in Ubuntu MATE (Marco)
I love the “tiling” feature in many window managers including Marco that means I can drag windows to the side of the screen and get them covering one half. However, I never use the similar feature that allows dragging a window to the top, and it often …
-
Super Simple Named Boolean Parameters
Quite often we come across interfaces with multiple boolean parameters, like this: cake make_cake (bool with_dairy, bool chocolate_sauce, bool poison); A call to this function might look like: auto c = make_cake(true, true, false); Unfortunately,…