Ian Denhardt
Ian Denhardt
Given main.fo: ``` package main type Foo[T] struct{ Field []Foo[[]T] } func main(){ } ``` The generated go is: ``` package main type Foo____T struct { Field []Foo______T } func...
It would be nice to convert the two messages in the output .spk into capnproto [canonical form][1]. This would reduce the number of things that might cause a package to...
We will want some base docker images that folks can work from when developing apps; probably something that comes with sandstorm-http-bridge, and we may want to try to replicate vagrant-spk's...
Steps to reproduce: 1. Create a new davros grain 2. Create a directory with a space in its name, e.g. `A Directory`. 3. Enter that directory. 4. Drop some files...
I just discovered that if you try to add a directory to Davros by dragging & dropping it from the file manager, Davros creates an empty, regular file by the...
If I have a plaintext file (.txt extension) in a davros folder, the "preview" seems to render it as html, which has the effect of destroying all formatting, plus using...
It would be nice if FileDrop displayed modification times for files. Use case: I currently have a filedrop [grain][1] that contains the latest spk for [sandcal][2], but @ocdtrekkie mentioned the...
Given this visrc.lua: ```lua require("vis") vis.events.subscribe(vis.events.FILE_SAVE_PRE, function(file, path) vis:command(",|cat") end) ``` I get frequent memory-corruption related errors after saving a file; sometimes double-free assertions, sometimes segfaults. I originally hit this...
This came up when @lthibault and I were discussing flow control; `.Ack()` is confusing in that it's not sending an acknowledgement or anything like it; rather, it spawns a goroutine...
@lthibault, I started playing with my own ideas about how to clean up process lifecycle management. I'm curious to your thoughts, particularly regarding. - Whether you think the proc package...