Playwright doesn't support Fedora distribution. Following is a description how to run the tests using Ubuntu 22.04 image using distrobox which is fairy supported on various Linux distributions.
sudo dnf install distrobox podmanPlaywright doesn't support Fedora distribution. Following is a description how to run the tests using Ubuntu 22.04 image using distrobox which is fairy supported on various Linux distributions.
sudo dnf install distrobox podman| # .bashrc | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi | |
| # User specific aliases and functions | |
| # Return immediately if not an interactive shell |
| #!/bin/bash | |
| # NAME | |
| # deps_to_classpath - resolve dependencies and print classpath | |
| # | |
| # SYNOPSIS | |
| # deps_to_classpath [OPTIONS] DEP... | |
| # | |
| # EXAMPLE | |
| # Suppose you are evaluating different HTML parsers to use with saxon. You |
The versions-maven-plugin, by default, does not ignore versions ending with qualifier strings when searching for the latest version of an artifact.
For example, versions ending with -alpha.14, -beta3, -M-2, and -RC1 will be considered as valid upgrade candidates.
Suppose your project depends on version 3.2.1 of a certain artifact and then 3.3.0-beta is released.
The versions-maven-plugin will, by default, consider that to be a valid upgrade.
| Checking for existence of jq command ..... Y | |
| Checking for existence of rpm2cpio command ..... Y | |
| Checking for existence of cpio command ..... Y | |
| You are running Fedora 38 | |
| You are running Gnome 44 | |
| There are 43 packages matching the pattern 'gnome-shell-extension-*' | |
| 1 gnome-shell-extension-appindicator-0:53-1.fc38.noarch | |
| 2 gnome-shell-extension-apps-menu-0:44.0-1.fc38.noarch | |
| 3 gnome-shell-extension-argos-0:3^20220712git1180568-2.fc38.noarch | |
| 4 gnome-shell-extension-auto-move-windows-0:44.0-1.fc38.noarch |
| /main.js | |
| /node_modules | |
| /package-lock.json |
| // SDL2 Hello, World! | |
| // This should display a white screen for 2 seconds | |
| // with the text 'Hello World!' | |
| // Prerequisites (Fedora): | |
| // sudo dnf install SDL2-static | |
| // sudo dnf install SDL2-devel (Actually, this gets installed as a dependency of SDL2-static) | |
| // sudo dnf install SDL2_ttf-devel | |
| // Compile: | |
| // gcc -g sdl2hello.cc -o sdl2hello -lSDL2 -lSDL2main -lSDL2_ttf | |
| // Run: |
| #!/bin/sh | |
| AMOUNT=5 | |
| WHAT=paras | |
| START=false | |
| MARKDOWN_PARAGRAPHS= # Insert a blank line between paragraphs, like Markdown | |
| HARD_WRAP= | |
| WIDTH=78 | |
| while getopts ":n:wpblsmhW:" opt; do |
| #!/bin/perl | |
| #!/bin/perl -CSDA # Try this variation | |
| use v5.16.3; | |
| use warnings; | |
| use File::Temp qw(tempfile tempdir); | |
| my @layers; | |
| print 'tmp layers: '; |