Ulyssa Mello
Ulyssa Mello
While looking through a node core, I had mdb segfault on me: ``` > 8093a3d1::findjsobjects -r *** mdb: received signal SEGV at: [1] libc.so.1`strlen+0xb() [2] mdb`mdb_iob_vprintf+0x22() [3] mdb`mdb_printf+0x18() [4] v8.so`dcmd_findjsobjects+0x58c()...
It would be nice if `triton` allowed filtering networks based on whether they're fabrics. Currently: ``` cpm@enlil ~ % triton networks fabric=true triton network list: error (Usage): invalid key: "fabric"...
The `sdc-listmachines` command has the `--tombstone` flag. It would be nice if `triton` had a similar command for helping list failed instances.
Because `cleanup()` calls `wtty.end()` and `rtty.end()`, the `wfd` and `rfd` file descriptors get closed before the following `mod_fs.closeSync()` calls. This results in `EBADF`, since there's no longer a valid file...
I noticed that the current command invocation was creating `*_dats.c` and `*_sats.c` files in my Vim's current working directory, despite the `-cleanaft` flag. Adding the `-tcats` file avoids generating the...
This PR adds support for additional ATS syntax and keywords to the `syntax/ats.vim` file, and adds an `example.dats` file which includes different syntax examples and keywords. I've grouped the changes...
This adds support for automatically entering a leading `*` character when typing multiline `/* */` and `(* *)` comments, similarly to how `c.vim` does it.
`javascriptlint` segfaults on the following file: ```javascript function a(err, data, data) { return data; } ``` On SmartOS with Python 2.6: ```shell % build/install/jsl foo.js JavaScript Lint Developed by Matthias...
The string `'use strict'` on its own line causes part of the program to enter into [strict mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode), and changes the semantics of some operations (usually making more things throw...
DTrace provides an array for userland processes, `fds[]`, which allows mapping file descriptors to a `fileinfo_t` structure, which can then be used to get information about that file. This does...