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
| // Demonstrate bug: spacer doesn't render its background color. | |
| package main | |
| import ( | |
| "log" | |
| "github.com/marcusolsson/tui-go" | |
| ) | |
| func Theme() *tui.Theme { |
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
| digraph G { | |
| start -> v [label="Ctrl+X"] ; | |
| start -> PRINT [label="Z"]; | |
| v -> QUIT [label="Ctrl+C"]; | |
| v -> start [label="ε"]; | |
| } |
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" | |
| ) | |
| type FooBar struct {} | |
| func (f *FooBar) Foo() string { | |
| return "Foo" |
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
| var inputs = { | |
| swatch: { | |
| stitches: 20, | |
| length: 4 # Really any unit, as long as it's the same as target_length | |
| }, | |
| pattern: { | |
| multiple: 6, | |
| plus: 2 | |
| }, | |
| target_length: 21 # Really any unit, as long as it's the same as swatch.length |
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/sh | |
| # | |
| # Original: https://github.com/cceckman/homelab/blob/main/helpers/rm2-tailscale.sh | |
| # I am the original author of this document and release it into the public domain. | |
| # Go wild. | |
| # | |
| # This script enables [Tailscale] on a [reMarkable 2] tablet. | |
| # | |
| # Tailscale is run in [userspace networking] mode, so any outbound applications | |
| # will need to be configured to proxy via tailscaled. |
OlderNewer