Skip to content

Instantly share code, notes, and snippets.

View 1-alex98's full-sized avatar
💥

Alexander von Trostorff 1-alex98

💥
View GitHub Profile
@1-alex98
1-alex98 / gist:e1fc11003cede4c2260cc8d384f6c646
Created May 28, 2024 15:27
Jenkins script to pause execution and manually execute commands
script {
def userInput = "start"
while (userInput != ""){
userInput = input(
message: 'Please enter the command to run:',
parameters: [
string(name: 'COMMAND', defaultValue: '', description: 'Command to execute')
]
)
// Execute the user-provided command
@1-alex98
1-alex98 / gist:0d26a800b5ee0b88ff8b2b550136f259
Last active February 25, 2024 14:11
v8 java script z3 math.floor and math.random predict next number
#!/usr/bin/python3
import math
import z3
import struct
import sys
import numpy
from decimal import Decimal
from z3 import Or
@1-alex98
1-alex98 / gist:9e85054a82da53285cd9e0d282db8f93
Created May 20, 2020 17:53
Build.gradle for javafx application java 11
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
repositories {
mavenCentral()
}
int javafxVersion=11
String javafxPlatform ="undefined"