Yeah, this is super! Woohoo!
{ "a":1 }
module Tree exposing (..) | |
import Html exposing (text) | |
import Json.Decode exposing (..) | |
import Json.Decode.Extra exposing (lazy) | |
type BST | |
= Branch BST Int BST | |
| Leaf |
package main | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"os" | |
"sort" | |
"sync" | |
"time" |
package rpc | |
import ( | |
"context" | |
"log" | |
"net" | |
"net/http" | |
"golang.org/x/sync/errgroup" |
// ensure that all of a resources dependencies have already run successfully | |
func checkDeps(graph *Graph, id string, results []*ApplyResult) (failed []string) { | |
for _, dep := range graph.Depends(id) { // not a huge fan of that name but it's consistent. | |
for _, result := range results { | |
if result.Path == dep && !result.Success { | |
failed = append(failed, result.Path) | |
} | |
} | |
} | |
"wソ\xdc<<070005000\n" | |
"ソ\xdc<<7005000\n" | |
"f\x94<<ȅ00ȅ\n" | |
"w\xbfソ\xdc<<0000\n" | |
"ソ\xdc<<7000\n" | |
"w\xbfソ\xdc<<7000000\n" | |
"w\xbfソ\xdc<<070000\n" | |
"wソ\xdc<<0700000\n" | |
"wソ\xdc<<000000\n" | |
"w\xbfソ\xdc<<20000000\n" |
"t\"\\40005\"{}" | |
"t\"\\400n\"{}" | |
"v=\"\\5551115123125782" + | |
"702118158\x1f4045410150" + | |
"000\"" | |
"t\"\\400200\"{}" | |
"\"\\5010\"{}" | |
"t\"\\4000\"{}" | |
"\"\\405\"{}" | |
"\"\\4005\"{}" |
"\0 |
# collectd | |
FQDNLookup false | |
Interval 10 | |
Include "/etc/collectd.d/" | |
TypesDB "/usr/share/collectd/types.db" | |
LoadPlugin "cpu" | |
LoadPlugin "disk" | |
LoadPlugin "df" |
all: public | |
static/css/asteris.css: scss/*.scss scss/**/*.scss | |
sass -t compressed --scss scss/asteris.scss static/css/asteris.css | |
public: config.yaml archetypes/**/* content/**/* layouts/**/* static/**/* static/css/asteris.css | |
hugo | |
uncss -C public/css -H public $$(find public -name '*.html') | cleancss > public/css/asteris.min.css | |
mv public/css/asteris.min.css public/css/asteris.css |