Tom
Tom
I would find this very useful combined with one of the in-browser terminal emulators for JavaScript, to get a simple, portable shell across many different systems. Something like `cash --port...
The current wstring is not entirely portable, since wchar_t is only 16 bits on Windows. Occurrences of wchar_t should be replaced with char32_t and occurrences of wstring with u32string
I'm the developer of WebDataset for PyTorch, a linearly scalable format, libraries, and server for PyTorch. WebDataset represents datasets as .tar archives of files on disk and allows access to...
Using `lsblk` to get host device information is not supported in all environments because it leaks host information into the container. It happens to work under docker right now, but...
Google and Azure both use essentially the S3 protocol. Could you please indicate whether s3git is compatible with those cloud services?
I'm looking to incorporate support for distributed file systems into some other tools I'm building. I'm having a hard time figuring out how well supported and adopted the datproject is....
I’m a member of organizations with many repositories. I’d like to limit notifications to just a few selected repositories. Is there any way of doing that? I didn’t see any...
Kubernetes is a powerful and full-features task queue system for containers. It can easily be run locally, on a local cluster, or in the cloud. It supports GPUs, resource selectors,...
Boolean options don't seem to work the way they should. Here is an example: ``` package main import ( "fmt" "github.com/docopt/docopt-go" ) var usage string = ` Mytest. Usage: mytest...
I'm on Ubuntu 22.04. I'm installing everything with the following Ansible script, including microk8s 1.24/edge. ``` --- - hosts: "{{ host | default('localhost')}}" become: yes become_method: sudo tasks: - name:...