Jim Avera
Jim Avera
Ubuntu 18.10 gnome-shell version 3.30.2 xorg Workspaces to Doc version 49 for gnome-shell 3.30 When any window is set to "Always on Visible Workspace", the session freezes instantly. The only...
If STDOUT is redirected to an in-memory scalar, then in a subsequent subprocess created with `open(my $from_kid, "-|")` STDOUT does not refer to the pipe, but to something with fileno==-1....
From the docs: > -q, --quiet Suppress the final statistics report. If no verbose > output is asked beside this option, **nothing is dis‐ > played if the operation succeeds**....
Module: File::Find 1.43 (in Perl v5.37.10) **Description** With `follow => 1` if a symlink to a directory contains a trailing slash, and *that* directory contains a relative symlink to a...
Running the latest "daily" build (dated March 27, 2024, 3:07 p.m.): Several times openshot froze and a popup asked whether to wait or force-quit. "Wait" never worked and zero CPU...
The Linux AppImage (3.1.1) won't run on Ubuntu 23.10, dying with ``` ImportError: /tmp/.mount_OpenShy1nBVK/usr/bin/libm.so.6: version `GLIBC_2.35' not found (required by /lib/x86_64-linux-gnu/libharfbuzz.so.0) ``` Ubuntu 23.10 comes with GLIBC 2.38. I tried...
The install script at http://install.perlbrew.pl starts with #!/bin/sh but actually requires bash. It could start with #!/usr/bin/env bash However, there is no good reason to require bash, so the following...
[Edit: See next comment for a related problem where refs-to-refs aren't readonly] If the thing being `Readonly::Clone`d is a ref-to-scalar, you get back the scalar, without the reference: ``` #!/usr/bin/perl...
Currently the Clone deep-walkers abort the search if any non-tied variable is found. This makes cases like the following fail: Readonly::Hash my %rodata => (topkey => [ {x=>1}, {x=>2}, {x=>3}...
Using Readonly.pm version 2.05 with perl v5.26.1 `@ary = Readonly::Clone @roary` returns a single reference to the copied data instead of a list of values. As a result, the cloned...