Install .NET via the following script:
I advise to first do a dry run and to enable verbose mode to review if envvar DOTNET_INSTALL_DIR
is set correctly:
Install .NET via the following script:
I advise to first do a dry run and to enable verbose mode to review if envvar DOTNET_INSTALL_DIR
is set correctly:
DISCLAIMER: I am not an expert on UE4SS or lua modding. In fact, Palworld is the first game I've done any UE4SS modding. I self-taught myself from the UE4 docs, discord convos and brute force. I might not always do things the best way. But I have made a handful of mods and I think I have at least a decent understanding of the basics and overall process, and that's what I'm going to try and cover in this guide.
Hi, so I'm Teh, as some of you might know me from Nexus, or also im.null
on Discord.
Lets set some ground rules so you don't complain about me wasting your time:
reshadeTexturePath = /home/tacokoneko/.local/share/reshade/Textures | |
reshadeIncludePath = /home/tacokoneko/.local/share/reshade/Shaders | |
3DToElse = /home/tacokoneko/.local/share/reshade/Shaders/3DToElse.fx | |
toggleKey = Home | |
effects = 3DToElse |
""" | |
WeightedMultiparameterHyperOptLoss.py V 0.3 | |
-by Cybergrany | |
A loss function for Freqtrade's hyperopt feature, which allowes the user | |
to choose weights, which influence how much each parameter affects the objective. | |
For example, if I want quick trades and don't care too much about risk, I would | |
give more weight to trades and less to the sortino. | |
Most of the code here is based on existing freqtrade code, namely the sortino | |
function and max drawdown calculations. I've just added a way to incorporate |
<?php | |
// ------------------------------------------------------------------------------------- | |
// Add your JSON in the $input to generate Swagger-PHP annotation | |
// Inspired by: https://github.com/Roger13/SwagDefGen | |
// HOWTO: | |
// php -S localhost:8888 -t . | |
// http://localhost:8888/swagit.php | |
// ------------------------------------------------------------------------------------- |
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Http\Request; | |
class DuskConfigOverride | |
{ | |
/** |
In this section, we are going to show how to run a python script as a systemd service, allowing you to boot it at the start of a Linux machine and to maintain it alive.
We are going to use a very basic Telegram bot in order to test that our script will:
$userPath = $env:USERPROFILE | |
$pathExclusions = New-Object System.Collections.ArrayList | |
$processExclusions = New-Object System.Collections.ArrayList | |
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null | |
$pathExclusions.Add('C:\Windows\assembly') > $null | |
$pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio') > $null | |
$pathExclusions.Add('C:\ProgramData\Microsoft\VisualStudio\Packages') > $null | |
$pathExclusions.Add('C:\Program Files (x86)\MSBuild') > $null | |
$pathExclusions.Add('C:\Program Files (x86)\Microsoft Visual Studio 14.0') > $null |
##################### | |
# | |
# Use this with or without the .gitattributes snippet with this Gist | |
# create a fixle.sh file, paste this in and run it. | |
# Why do you want this ? Because Git will see diffs between files shared between Linux and Windows due to differences in line ending handling ( Windows uses CRLF and Unix LF) | |
# This Gist normalizes handling by forcing everything to use Unix style. | |
##################### | |
# Fix Line Endings - Force All Line Endings to LF and Not Windows Default CR or CRLF |
Tested on a standard $5/mo DigitalOcean VPS running Ubuntu 16.04.