Engine | Contact |
---|---|
360 | [email protected] |
Abusix | [email protected], https://lookup.abusix.com/ |
Acronis | [email protected] |
ADMINUSLabs | [email protected], [email protected], [email protected] |
AegisLab | [email protected] |
Ahnlab | [email protected], [email protected] |
AILabs (Monitorapp) | [email protected] |
Alibaba | [email protected] |
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
# You can get the profile id with flatpak run --command=gsettings app.devsuite.Ptyxis get org.gnome.Ptyxis default-profile-uuid | |
export uuid=<PASTE YOUR PROFILE ID HERE> | |
flatpak run --command=gsettings app.devsuite.Ptyxis set org.gnome.Ptyxis.Profile:/org/gnome/Ptyxis/Profiles/${uuid}/ opacity 0.85 |
Shamelessly copied from https://forum.proxmox.com/threads/gpu-passthrough-hp-elitedesk-800-35w-g2-core-i5-vpro-6500t.135888/ with some adjustments and reported for posterity/self history.
First make sure all virtualization stuff, includint VT-d are enabled in the BIOS
Install ProxMox, then login into the console as root
vi /etc/default/grub
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
options hid_apple fnmode=2 | |
options hid_apple swap_opt_cmd=1 |
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 | |
# Check if a file was provided | |
if [ $# -lt 1 ] || [ $# -gt 3 ]; then | |
echo "Usage: $0 <logfile> [start_time] [end_time]" | |
echo "Example: $0 logfile.log '2023-01-01 00' '2023-01-02 23'" | |
echo "Note: If start_time and end_time are not provided, they will be automatically" | |
echo " extracted from the first and last lines of the log file." | |
exit 1 | |
fi |
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
chflags nohidden ~/Library | |
defaults write com.apple.loginwindow LoginwindowLaunchesRelaunchApps -bool false | |
defaults write com.apple.finder AppleShowAllFiles true | |
defaults write com.apple.finder QLEnableTextSelection -bool true | |
defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true | |
defaults write com.apple.DiskUtility advanced-image-options -bool true | |
defaults write com.apple.helpviewer DevMode -bool true | |
sudo nvram SystemAudioVolume=%80 |
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
{ | |
"\UF729" = moveToBeginningOfParagraph:; // home | |
"\UF72B" = moveToEndOfParagraph:; // end | |
"$\UF729" = moveToBeginningOfParagraphAndModifySelection:; // shift-home | |
"$\UF72B" = moveToEndOfParagraphAndModifySelection:; // shift-end | |
"#," = ("insertText:", "."); // keypad comma to dot | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using API; | |
namespace Assets.Code.Anubi.Levels | |
{ | |
class D04 : LevelScript | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using API; | |
using Assets.Code.Anubi.DefPresets; | |
using UnityEngine; | |
namespace Assets.Code.Anubi.Levels | |
{ |
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
/** | |
* writetga: A zero dependencies writer for the TGA file format. | |
* | |
* Copyright 2020 Marco Mastropaolo <marco@mastropaolo.com> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
NewerOlder