Peter Bittner

Results 526 comments of Peter Bittner
trafficstars

> Great work. @bittner How can we add this to our CI setup? (And hopefully with the HTML report that the coverage module generates.) Simply - add a `[testenv:coverage]` section...

Bots are en vogue. Let's reflect a bit, though, what the cases are where they're meant to be used: * When there are **external circumstances** or events that infer change...

Well, software development is about frustration, learning and a few happy moments of success. How about a solution that looks like this? ```console $ tox -e authors New author(s) added....

An appropriate command to extract the authors information from the repository would be: ```bash git log --format="%aN " --reverse | sort --uniq ``` This wouldn't work on Windows, though, I...

There is a `pdk validate` command now for linting file formats present in Puppet modules. See [Validating and testing modules](https://puppet.com/docs/pdk/1.x/pdk_testing.html#ariaid-title2) using the [Puppet Development Kit](https://puppet.com/docs/pdk/latest/pdk.html).

What the is technical reason for root permissions? Sentry doesn't have to deal with privileged ports, in privileged parts of the network layer or the kernel, does it? :thinking:

To me the window, even if it's cut in half, is still somewhat "maximized". Therefore it may make sense to keep the Close/Minimize/Maximize buttons in the "global menu" title bar....

@alumni The [Gnome Tweak Tool](https://wiki.gnome.org/Apps/GnomeTweakTool) sports a "Titlebar Buttons" > "Placement" option (Left)|(Right). Does this fix the problem you want to solve? Together with the [Hide Activities Button extension](https://extensions.gnome.org/extension/744/) and...

I stumbled upon the same issue. The reason why local imports don't work is that the "hook" script you write is meant to be executed as a standalone script, because...

@michaeljoseph Manipulating the `PYTHONPATH` only makes sense for a _generated_ version of the `hooks` directory. In other words, we still must consider creating some temporary folder. Then again, we need...