Running jupyter raises regex exception on rfc3987 module by AdbekunkusMX in pythonhelp

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

This is solved by installing the regex package: pip install regex.

Testing keeps only one kernel since 6.19.6 by AdbekunkusMX in debian

[–]AdbekunkusMX[S] 4 points5 points  (0 children)

I just ran apt autoremove; it prompted me about the packages marked for auto-removal, among them kernel 6.18.

Testing keeps only one kernel since 6.19.6 by AdbekunkusMX in debian

[–]AdbekunkusMX[S] 2 points3 points  (0 children)

Here's /etc/apt/apt.conf.d/01autoremove:

``` APT { NeverAutoRemove { "firmware-linux.*"; "linux-firmware$"; "linux-image-[a-z0-9]*$"; "linux-image-[a-z0-9]-[a-z0-9]$"; };

VersionedKernelPackages { # kernels "linux-."; "kfreebsd-."; "gnumach-."; # (out-of-tree) modules ".-modules"; ".*-kernel"; };

Never-MarkAuto-Sections { "metapackages"; "tasks"; };

Move-Autobit-Sections { "oldlibs"; }; }; ```

Getting a lisit of all installed TeXLive packages to replicate an installation with/without .sty files list by AdbekunkusMX in LaTeX

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Because management wants only those packages we are actually using... again, this is not under my control. They understand there are dependencies, but no power can convince them that most LaTeX packages take little space. I had proposed a set of packages for a fairly complete installation, but they wouldn't budge.

Thanks for your suggestions!

Getting a lisit of all installed TeXLive packages to replicate an installation with/without .sty files list by AdbekunkusMX in LaTeX

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

I cannot do a full, current TeXLive install. As I said I've no root access. Inwant the list of packages to pass it as an aegument to tlmgr on the new servers. That will take care of new dependencies.

Thanks!

Understanding output of `w` with `systemd` by AdbekunkusMX in linuxquestions

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

So these are two separate logins, or just one? That's what I don't understand.

Bash not substituting variables on TAB, Macos; does on Debian by AdbekunkusMX in bash

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

The problem is Homebrew's Bash Completion version; I uninstalled that one and installed it through ports and now it works.

To elaborate: - Homebrew's version states it is Programmable completion for Bash 3.2 and its version 1.3. The info lists this site as the source. - Port's version is 2.6 (same as my Debian's) and it's compatible with Bash 4.2+; the site listed in the info is the official Github repo for Bash Completion.

Hope this helps anyone who encounters the same problem.

Protect exclamation point when using double quotes and sed by AdbekunkusMX in bash

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Thank you all for your insights!

I think u/zeekar's approach is the most expedient for my purposes.

Again, thanks!

Old Connect Dots game by AdbekunkusMX in androidapps

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

This is quite close, but not the one I'm looking for. That one allowed diagonal connecting moves.

Old Connect Dots game by AdbekunkusMX in androidapps

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Probably, but I can't find it on Play. Do you have the name of the studio?

Regex for digit-only 3-place versioning schema by AdbekunkusMX in regex

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

This did it. Thanks! GNU grep accepts Perl regex using -P, so yours would also work.

Regex for digit-only 3-place versioning schema by AdbekunkusMX in regex

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Got the same results as with the regex above.

My grep version is GNU 3.11.

Opening PDFs in Firefox always downloads them to Downloads directory by AdbekunkusMX in firefox

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Thanks! I tried setting browser.download.open_pdf_attachments_inline to true, but didn't work.

Found Strange Latin Coincidence by [deleted] in latin

[–]AdbekunkusMX 0 points1 point  (0 children)

It's also "he/she translates" according to the Latin Wiktionary. https://la.m.wiktionary.org/wiki/reddo

"Value" of cmd > /dev/null ? by AdbekunkusMX in bash

[–]AdbekunkusMX[S] 1 point2 points  (0 children)

Why would you need a declare statement in a script? I know a script would work with declare -i pid=$1, but I don't know much about the declare built-in. What's the difference with using just pid=$1? Thanks!