Smooth Operator

Results 138 comments of Smooth Operator

[Languist is a framework for analysis of both the static and the run-time properties of programs written in a growing list of supported dynamically typed programming languages. It also supports...

[AWSome is an unofficial AWS SDK for the Nim programming language.](https://gitlab.com/dailyprog/awsome)

AWSome was seemingly abandoned and incomplete, so I started with [an OpenAPI code generator](https://github.com/disruptek/openapi) that makes Nim-native APIs for **literally thousands** of REST APIs. Thanks to @genotrance for pushing me...

@treeform gave me some signing code, so now we have [the Google APIs for Nim](https://github.com/disruptek/gcplat) with signing. You may need to [use his version of jwt on Windows](https://github.com/treeform/jwt). I had...

Wow, your shell package is pretty cool! I will definitely try it out; thanks for the link. :smile:

@Araq There's apparently no way to add source code filters to Nim unless you want to maintain your own fork of the compiler, so I'd say that's hardly a reasonable...

I can port Golden's system for this if you want. It handles the buffering without any problems AFAIK, but it will be good to give it more testing.

Golden is a poor-man's [hyperfine](https://github.com/sharkdp/hyperfine) that I wanted for monitoring compilation performance and the code I'm thinking of looks like this: https://github.com/disruptek/golden/blob/master/src/golden/invoke.nim It calls `startProcess` and then uses the `selectors`...

Can you explain how `asyncproc` is insufficient to meet the requirement? Does it merely need to be copied and massaged into Chronos?