This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "preset": "empty", | |
| "notPath": [ | |
| "tests/TestCase.php" | |
| ], | |
| "rules": { | |
| "array_syntax": true, | |
| "assign_null_coalescing_to_coalesce_equal": true, | |
| "clean_namespace": true, | |
| "heredoc_indentation": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # vim: ft=sh ts=2 sw=2 et: | |
| # ---------------------------------------------------------------------------- | |
| # | |
| # qemu - libvirt hook script | |
| # | |
| # ---------------------------------------------------------------------------- | |
| # | |
| # This script is called by libvirt when a guest is started or stopped. | |
| # It will look for a script in the qemu.d directory with the same name as the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # vim: set ts=2 sw=2 sts=2 et: | |
| # | |
| # ---------------------------------------------------------------------------- | |
| # | |
| # archive-dl.sh - Download files from archive.org | |
| # | |
| # Author : Lucas Vasconcelos <[email protected]> | |
| # Date ..: 2024-05-25 | |
| # URL ...: https://gist.github.com/lucasvscn/a8e8dcc4908a92c01dd0af0bed54219a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <domain type="kvm"> | |
| <name>win11-real</name> | |
| <uuid>30d10fdf-4453-4928-b25d-049ef66a578e</uuid> | |
| <metadata> | |
| <libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0"> | |
| <libosinfo:os id="http://microsoft.com/win/11"/> | |
| </libosinfo:libosinfo> | |
| </metadata> | |
| <memory unit="KiB">16777216</memory> | |
| <currentMemory unit="KiB">16777216</currentMemory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <domain type='kvm'> | |
| <name>win11-real</name> | |
| <uuid>45768371-b871-4937-b7c2-60ed835011de</uuid> | |
| <metadata> | |
| <libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0"> | |
| <libosinfo:os id="http://microsoft.com/win/10"/> | |
| </libosinfo:libosinfo> | |
| </metadata> | |
| <memory unit='KiB'>33554432</memory> | |
| <currentMemory unit='KiB'>33554432</currentMemory> |