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
| #!/bin/ash | |
| # MQTT SETTINGS | |
| host="<mqtt_broker_url>" | |
| user="<user>" | |
| password="<password>" | |
| port=1883 | |
| topic="<topic>" | |
| #ONION OMEGA2 GPIO PID SETTING | |
| io_pid=6 |
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
| välta koner | |
| https://www.youtube.com/watch?v=041_Rmr2JvU | |
| vulkan | |
| https://www.youtube.com/watch?v=JI9eHcBAYK4 | |
| blandade övningar | |
| https://www.youtube.com/watch?v=Yr_AqMLGD4s | |
| tips |
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
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| _ "github.com/mattn/go-sqlite3" | |
| "log" | |
| "context" | |
| "time" | |
| "os" |
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
| package main | |
| import ( | |
| "fmt" | |
| "errors" | |
| sqldriver "database/sql" | |
| "github.com/hallgren/eventsourcing" | |
| "github.com/davecgh/go-spew/spew" | |
| "github.com/hallgren/eventsourcing/eventstore/sql" | |
| "github.com/hallgren/eventsourcing/serializer/unsafe" |
OlderNewer