Neszt Tibor

Results 15 issues of Neszt Tibor

```bash $ uname -a Linux test 4.19.0-10-amd64 #1 SMP Debian 4.19.132-1 (2020-07-24) x86_64 GNU/Linux ``` ```bash $ docker version Client: Version: 18.09.1 API version: 1.39 Go version: go1.11.6 Git commit:...

``` $ uname -a Linux test 5.3.9-sunxi #5.99.191113 SMP Wed Nov 13 08:12:49 CET 2019 armv7l GNU/Linux ``` ``` $ go version go version go1.11.6 linux/arm ``` ``` $ go...

bug

Dockerfile: ADD conf-examples/* /data/graphite/ Directory removed in commit 4910bff81d71e47a39f1aa69669d608a7139b411

bug

$ pg_format --version pg_format version 4.4 Reproduced also on [live demo page](http://sqlformat.darold.net/). Command: ``` $ pg_format --keyword-case 2 --tabs --comma-start --no-extra-line --inplace input.sql ``` Input: ``` CREATE OR REPLACE VIEW...

Xen has a live HA support, remus: - https://wiki.xenproject.org/wiki/Remus - https://wiki.xenproject.org/wiki/Getting_Started_with_Remus Are there any plans for Ganeti to support this?

I'm not sure this problem is related to udpxy, but it could be. On a weak internet connection, I set a 30 second buffered time in the vlc (the stream...

The existing policy `Perl::Critic::Policy::Variables::ProhibitUnusedVariables` should consider a variable unused even if there are values assigned, including scalar, array, hash and references. ```perl sub foo { my $bar = 1; $bar...

Enhancement

A new policy could find always true / false conditions. The if is always true here: ```perl sub foo { my $bar = 1; if ( $bar ) { ......

Suggested policy

A new policy could find variable values whose values have not been used. `$bar` 0 value is not used: ```perl sub foo { my $bar = 0; if ( 1...

Suggested policy

A new policy could find variables whose scope can be reduced. `$bar` can be declared inside if: ```perl sub foo { my $bar; if ( 1 ) { $bar =...

Suggested policy