This all assumes that your AMP install is under the amp user.
cd ~/
# Install Git: Pick the one that suite your system
#sudo apt install git| package main | |
| import "core:fmt" | |
| import "core:sync" | |
| import "core:sys/linux" | |
| import "core:time" | |
| running := true | |
| sigint_caught: b32 |
Making breaking changes to the project is currently allowed, but it is recommended to avoid doing so unless necessary. If breaking changes are made, they should be clearly documented in the commit messages and in the documentation to ensure that users are aware of the changes and can update their code accordingly. It is important to maintain clear communication with users and contributors about any changes that may affect them, especially if those changes are breaking.
$HOME/Odin/base| RADV_PERFTEST=nosched VKD3D_CONFIG=no_upload_hvv %command% |
| # This script will allow a console to control the | |
| # pumping of V and NO2 from their respective tanks | |
| # into the rocket. It reads pressures from the | |
| # tanks(via pipe analyzers) and rocket, and allows | |
| # the user to control pumps and valves via | |
| # console switches. | |
| # Device Definitions | |
| define TurboPump 1310794736 | |
| define PipeAnalyzer 435685051 |
| // InventoryComponent.cpp | |
| #include "InventoryComponent.h" | |
| UInventoryComponent::UInventoryComponent() | |
| { | |
| PrimaryComponentTick.bCanEverTick = false; | |
| } | |
| void UInventoryComponent::BeginPlay() |
| #!/usr/bin/env bash | |
| # Get-KernelTaint.sh | |
| # | |
| # This script checks the kernel taint status by reading the value from | |
| # /proc/sys/kernel/tainted. It interprets the taint flags and prints | |
| # corresponding messages to indicate the reason for the taint. | |
| # It also provides a summary of the taint status. | |
| # | |
| # License: MIT |
| #!/bin/bash | |
| # License: MIT | |
| # Author: Quonic/Spyingwind | |
| # Description: This script installs or updates Discord on Linux. | |
| # Version: 1.1 | |
| # Usage: ./update_discord.sh | |
| # Dependencies: wget, tar | |
| # Script to install or update Discord on Linux |
| { | |
| "monitor.alsa.rules": [ | |
| { | |
| "actions": { | |
| "update-props": { | |
| "alsa.card_name": "RODECaster Duo Chat", | |
| "alsa.long_card_name": "RODECaster Duo Chat", | |
| "device.description": "RODECaster Duo Chat", | |
| "device.name": "RODECaster Duo Chat", | |
| "node.description": "RODECaster Duo Chat", |
| #!/usr/bin/env bash | |
| # This script will update a Factorio server mods that where installed via git | |
| # and update the Factorio server via LinuxGSM if updates are available | |
| # Requirements: | |
| # * jq, git, and curl packages | |
| # * Factorio server installed via LinuxGSM or web-lgsm | |
| # * Change the factorio_dir variable to your Factorio server directory | |
| # * Run as the same user that runs the Factorio server |