Thanks to /u/zpoo32 for reporting several issues in this list!
- deemix: just the cli and the library
- deemix-pyweb: the app with a GUI
- deemix-server: just the server part of deemix-pyweb
Thanks to /u/zpoo32 for reporting several issues in this list!
using Microsoft.AspNetCore.Hosting; | |
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.Http; | |
using Microsoft.Extensions.Hosting; | |
public class Program | |
{ | |
public static void Main(string[] args) => | |
Host.CreateDefaultBuilder(args) | |
.ConfigureWebHostDefaults(webBuilder => |
using BenchmarkDotNet.Running; | |
using BenchmarkDotNet.Attributes; | |
using System.Reflection; | |
using System; | |
using Sigil; | |
BenchmarkRunner.Run<MyTests>(); | |
[MemoryDiagnoser] | |
public class MyTests |
additionalArguments: | |
- --serverstransport.insecureskipverify | |
- --providers.file.filename=/data/traefik-config.yaml | |
- --entrypoints.web.http.redirections.entrypoint.to=:443 | |
- --entrypoints.web.http.redirections.entrypoint.permanent=true | |
- --entrypoints.websecure.http.tls.certresolver=cloudflare | |
- --entrypoints.websecure.http.middlewares=headers-default@file | |
- --certificatesresolvers.cloudflare.acme.dnschallenge.provider=cloudflare | |
- --certificatesresolvers.cloudflare.acme.email=YOUREMAIL | |
- --certificatesresolvers.cloudflare.acme.dnschallenge.resolvers=1.1.1.1 |
Located in alphabetical order (not prefer)
C
ab
), also designed as a more modern replacement, written in C
golang
)golang
)https://linuxconfig.org/how-to-install-the-nvidia-drivers-on-manjaro-18-linux | |
https://github.com/dglt1/optimus-switch-gdm | |
https://forum.manjaro.org/t/hdmi-monitor-not-working/94301/2 | |
https://www.unixmen.com/install-oh-zsh-ubuntu-arch-linux-fedora/ | |
https://starship.rs/guide/#%F0%9F%9A%80-installation | |
https://gist.github.com/tomgco/d08fcf551b5e3157173d2f0701b50b46 | |
https://wiki.archlinux.org/index.php/VirtualBox |
REM Delete eval folder with licence key and options.xml which contains a reference to it | |
for %%I in ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") do ( | |
for /d %%a in ("%USERPROFILE%\.%%I*") do ( | |
rd /s /q "%%a/config/eval" | |
del /q "%%a\config\options\other.xml" | |
) | |
) | |
REM Delete registry key and jetbrains folder (not sure if needet but however) | |
rmdir /s /q "%APPDATA%\JetBrains" |
http://cronus.allowed.org works for me, 2018.1.6 |
#!/bin/sh | |
branch=$1 | |
if [ ! -z "$1" ] | |
then | |
git branch -D $branch | |
git push -d origin $branch | |
else | |
echo "Branch name is not specified" |
//Look for other responsivevoice instances | |
/*if (window.parent != null) { | |
var iframes = window.parent.document.getElementsByTagName('iframe'); | |
for (var i = 0; i < iframes.length; i++) { | |
//iframes[i].style.width = "300px" | |
} | |
}*/ | |
if (typeof responsiveVoice != 'undefined') { | |
console.log('ResponsiveVoice already loaded'); |