Compare commits
4 commits
e2fc15ed9b
...
367e4c43a6
Author | SHA1 | Date | |
---|---|---|---|
|
367e4c43a6 | ||
|
0757ec58a8 | ||
|
051a4bec94 | ||
|
ecca05a7e3 |
|
@ -51,16 +51,6 @@ td > span {
|
||||||
.logo > img {
|
.logo > img {
|
||||||
height: 10em;
|
height: 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-grid {
|
|
||||||
margin: 2em;
|
|
||||||
clear: both;
|
|
||||||
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(50em, 1fr));
|
|
||||||
column-gap: 2em;
|
|
||||||
row-gap: 2em;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div class="logo"><img src="/favicon.png" /></div>
|
<div class="logo"><img src="/favicon.png" /></div>
|
||||||
|
@ -68,7 +58,7 @@ td > span {
|
||||||
<h1>succd</h1>
|
<h1>succd</h1>
|
||||||
<h2>nothing more permanent than a temporary solution</h2>
|
<h2>nothing more permanent than a temporary solution</h2>
|
||||||
|
|
||||||
<div class="main-grid">
|
<div style="margin: 2em; clear: both; display: grid; grid-template-columns: repeat(auto-fit, minmax(50em, 1fr)); column-gap: 2em; row-gap: 2em;">
|
||||||
<table class="status">
|
<table class="status">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Thresholds</th>
|
<th>Thresholds</th>
|
||||||
|
|
|
@ -14,9 +14,9 @@ var (
|
||||||
flagFake bool
|
flagFake bool
|
||||||
flagListenHTTP string
|
flagListenHTTP string
|
||||||
flagPressureThresholdRough = ScientificNotationValue(1e-1)
|
flagPressureThresholdRough = ScientificNotationValue(1e-1)
|
||||||
flagPressureThresholdRoughHysteresis = ScientificNotationValue(2e-2)
|
flagPressureThresholdRoughHysteresis = ScientificNotationValue(5e-2)
|
||||||
flagPressureThresholdHigh = ScientificNotationValue(1e-4)
|
flagPressureThresholdHigh = ScientificNotationValue(1e-4)
|
||||||
flagPressureThresholdHighHysteresis = ScientificNotationValue(2e-5)
|
flagPressureThresholdHighHysteresis = ScientificNotationValue(5e-5)
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
Loading…
Reference in a new issue