This file contains hidden or 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
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): |
This file contains hidden or 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
{ | |
"$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": { |