openpgp4fpr:892c0804e0a0e07773fb35b443df282cd257ad64
🏳️⚧️
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
import sys | |
import os | |
import threading | |
import subprocess | |
import logging | |
import socket | |
import asyncio | |
import requests | |
import paramiko |
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
steps: | |
container: | |
image: codeberg.org/gameplayer-8/gitio | |
commands: | |
- export CONTAINERTAGGING="$(basename "$CICOMMIT_REF")" | |
- gitio container OUTPUTIMAGENAME:$CIREPONAME:"$CONTAINER_TAGGING" | |
secrets: | |
- OCI_TOKEN |
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
[ 0.000000] Linux version 6.5.5-artix1-1 (linux@artixlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.41.0) #1 SMP PREEMPT_DYNAMIC Sun, 24 Sep 2023 21:04:56 +0000 | |
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=eca8f344-c8db-4762-a451-43905717477c rw net.ifnames=0 splash quiet cryptdevice=UUID=53d848d9-865e-4a43-bfe0-12c8bdea4785:luks-53d848d9-865e-4a43-bfe0-12c8bdea4785 root=/dev/mapper/luks-53d848d9-865e-4a43-bfe0-12c8bdea4785 | |
[ 0.000000] BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable | |
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000beeabfff] usable | |
[ 0.000000] BIOS-e820: [mem 0x00000000beeac000-0x00000000beebbfff] ACPI data | |
[ 0.000000] BIOS-e820: [mem 0x00000000beebc000-0x00000000bf30efff] usable | |
[ 0.000000] BIOS-e820: [mem 0x0000000 |
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
ChromeOS Device Firmware Utility Script [2023-10-13] | |
(c) Mr Chromebox <[email protected]> | |
********************************************************* | |
** Device: HP Chromebook 11A G6 EE (BARLA) | |
** Platform: AMD StoneyRidge | |
** Fw Type: Stock ChromeOS w/RW_LEGACY | |
** Fw Ver: Google_Grunt.11031.169.0 (06/24/2021) | |
** Fw WP: Disabled | |
********************************************************* |
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
ChromeOS Device Firmware Utility Script [2023-10-13] | |
(c) Mr Chromebox <[email protected]> | |
********************************************************* | |
** Device: HP Chromebook 11A G6 EE (BARLA) | |
** Platform: AMD StoneyRidge | |
** Fw Type: Stock ChromeOS w/RW_LEGACY | |
** Fw Ver: Google_Grunt.11031.169.0 (06/24/2021) | |
** Fw WP: Disabled | |
********************************************************* | |
** 1) Install/Update RW_LEGACY Firmware |
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
-- put user settings here | |
-- this module will be loaded after everything else when the application starts | |
-- it will be automatically reloaded when saved | |
local core = require "core" | |
local keymap = require "core.keymap" | |
local config = require "core.config" | |
local style = require "core.style" | |
------------------------------ Themes ---------------------------------------- |
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
export GITHUB_REF="refs/heads/main" | |
export GITHUB_TOKEN="token" | |
export GITHUB_NAME="git-test" | |
export GITHUB_OWNER="GamePlayer-8" | |
export GITHUB_REPO="GamePlayer-8/git-test" |
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/sh | |
VM_NAME="${VM_NAME:-$1}" | |
VM_NAME="${VM_NAME:-'Ventura'}" | |
VBoxManage modifyvm "$VM_NAME" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac19,3" | |
VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" |
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
# Maintainer: Chimmie Firefly <gameplayer2019pl (at) tutamail (dot) com> | |
pkgname=cubic-server-git | |
_pkgname=cubic-server-git | |
pkgver=r1442.efa5d7d4 | |
pkgrel=1 | |
pkgdesc='A fast and extensible C++ implementation of Minecraft is server.' | |
arch=( | |
'i686' | |
'x86_64' |