Egon Elbre
Egon Elbre
Currently finding logical races can be difficult, having something to fuzz different orderings in goroutine code could help. There is a recent paper https://lifeasageek.github.io/papers/jeong-razzer.pdf to show one of such approaches.
I'm using a table and I'm unable to get the "selection" binding working. Is there some other binding that should be used instead? `````` javascript uki({ id: 'tbl', view: 'Table',...
This test ``` type test struct { value string } func (t *test) get() string { return t.value } ``` Currently translates to: ``` function test(value) { this.value=value } test.prototype.get...
Example: ``` func test() { a := 5 fmt.Println(a) for i := 0; i < 1; i += 1 { a := 6 fmt.Println(a) } fmt.Println(a) } ``` Go and...
This code crashes the translator: ``` type let struct { this *this } type this struct { this []*this let } func (this *this) apply(function this, call let) { this.this...
When I open 9o in a separate tab it doesn't respond to 9o commands. Both views are useful. IMHO for cases where you either have multi-monitor setup or monitoring/editing process...
Currently I'm using go-rod in an environment where there are randomly chosen ports being used. So there's a slight chance that any given port will be used -- deadlocking the...
I was trying out the latest v0.6.0 (https://github.com/go-critic/go-critic/releases/tag/v0.6.0) on Windows and it failed with: ``` > gocritic ./... panic: load embedded ruleguard rules: rules/rules.go:13: can't load fmt goroutine 1 [running]:...