Skip to content

Instantly share code, notes, and snippets.

View Logianer's full-sized avatar

Marius Henker Logianer

  • Germany
  • 10:42 (UTC +02:00)
View GitHub Profile
@Logianer
Logianer / main.py
Last active June 7, 2025 20:58
CarSim normal distribution
import numpy as np
import matplotlib.pyplot as plt
import random
random.seed()
def get_parking_duration():
durations = [15, 20, 30, 35, 40, 45, 55, 60, 120, 180]
# return 60
return durations[random.randint(0, len(durations)-1)]
def n_dist(x, mu, sigma):
@Logianer
Logianer / schema.json
Created October 28, 2024 14:09
authentik blueprint schema
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://goauthentik.io/blueprints/schema.json",
"type": "object",
"title": "authentik 2024.8.3 Blueprint schema",
"required": [
"version",
"entries"
],
"properties": {