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| // 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 |