This file contains 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
[ | |
{ | |
"id": "bmewburn.vscode-intelephense-client", | |
"name": "vscode-intelephense-client", | |
"publisher": "bmewburn", | |
"version": "1.14.3" | |
}, | |
{ | |
"id": "christian-kohler.npm-intellisense", | |
"name": "npm-intellisense", |
This file contains 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
""" | |
cx_Freeze | |
see https://cx-freeze.readthedocs.io/en/latest/distutils.html | |
Build a executeable App for everything. | |
Windows: python setup_cx.py build_exe | |
""" | |
import sys | |
import os | |
from cx_Freeze import setup, Executable | |
from distutils.dir_util import copy_tree |
This file contains 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
plugins { | |
id 'java' | |
id 'jacoco' | |
id 'application' | |
id 'org.openjfx.javafxplugin' version '0.0.9' | |
id 'org.beryx.runtime' version '1.12.5' | |
id "edu.sc.seis.launch4j" version "2.5.0" | |
} | |
/* Variables ---------------------------------------------------------------- */ | |
sourceCompatibility = 1.8 |
This file contains 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
//see https://github.com/openjfx/javafx-gradle-plugin | |
buildscript { | |
repositories { | |
maven { | |
url "https://plugins.gradle.org/m2/" | |
} | |
} | |
dependencies { | |
classpath 'org.openjfx:javafx-plugin:0.0.8' | |
} |
This file contains 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
@echo off | |
echo Generating PNG Files | |
java -jar plantuml.1.2019.13.jar "./uml/*.txt" -tpng -progress | |
echo. | |
echo. | |
echo Generating SVG Files | |
java -jar plantuml.1.2019.13.jar "./uml/*.txt" -tsvg -progress | |
echo. | |
echo done |
This file contains 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
[Main] | |
Format=mp4 | |
ExtName=mp4 | |
ZoomDefault=fittoscreen | |
V1Codec=hevc_nvenc | |
V1MaxBitrate=10000 | |
V1FrameRateDefault=50 | |
V1Bitrate=4000 |