didactic-drunk

Results 29 comments of didactic-drunk

@bcardiff What if I want to rename a file on the same filesystem without copying for an atomic update raising an error if the operation can't be completed? Would existing...

@anamba The raw stat structure is available. It's wrapped in Crystal::System::FileInfo. Try this: ```crystal struct Crystal::System::FileInfo def dev @stat.st_dev end end ``` Also see the following for how to implement...

Restructuring with output to files, queuing, additional pty's is all necessary to run tasks in parallel. If output directly to a file color information is lost.

Master has the [c functions available](https://github.com/didactic-drunk/sodium.cr/commit/9a164a0be0860cc0e4d9732802b550cf76710949) if you'd like to take a stab at implementing the class(es) and tests. Otherwise it will have to wait until I have time.

Try `master` for the time being. A new release will happen soon.

Leaking sockets is a real problem. See https://github.com/taylorfinnell/awscr-s3/issues/77. In this case the library could use a pool because all requests go to the same endpoint. The same isn't true for...

Most of the proposed high level API's seems to assume the program only wants to switch user's once for privilege dropping. Process.setresuid is intended to be used as the underlying...

`#groups` is missing. What should `groups` return if one or more group id's can't be resolved to a `System::Group`? ``` [Group, nil, Group] [Group, 123, Group] [Group, Group with missing...