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