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
| module Tree.Ours exposing (Tree, children, find, get, insert, parents, singleton) | |
| import Dict exposing (Dict) | |
| import List.Extra as List | |
| import Maybe.Extra as Maybe | |
| type Tree a | |
| = Tree | |
| { key : String |
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
| [Unit] | |
| Description=Service to mount and sync a network drive for Steam games | |
| [Service] | |
| User=deck | |
| Type=notify | |
| WorkingDirectory=/home/deck/.remote-steam-drive | |
| Restart=on-failure | |
| RestartSec=5s | |
| ExecStart=rclone -v mount wasabi:/steamdeck ./mount \ |
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
| configure | |
| set service dns dynamic interface eth0 service namecheap host-name <host> | |
| set service dns dynamic interface eth0 service namecheap login <username> | |
| set service dns dynamic interface eth0 service namecheap password <password> | |
| commit | |
| save | |
| exit |
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
| runcmd: | |
| - "curl -fsSL https://get.docker.com | sh" | |
| - "usermod -aG docker ubuntu" |
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
| { | |
| "version": "2.0.0", | |
| "options": { | |
| "shell": { | |
| "executable": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" | |
| } | |
| }, | |
| "tasks": [ | |
| { | |
| "label": "NuGet Restore", |