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
| require "open3" | |
| require "json" | |
| class ShellCommand | |
| attr_reader :line, :stdin, :binmode, :stdout, :stderr, :status | |
| def initialize(line, stdin, binmode, stdout, stderr, status) | |
| @line = line | |
| @stdin = stdin |
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
| #r "nuget: FsToolkit.ErrorHandling" | |
| open FsToolkit.ErrorHandling | |
| open System | |
| type SensorReadings = int | |
| module RegularApproach = |
OlderNewer