Jamie Wong

Results 39 issues of Jamie Wong

``` python def foo(): @line_profile def foo_inner(): pass ``` This won't work because the reference to foo changes (local variable I believe)

All of the `[` and `]` are dropped in the display: ``` coffee> [1,2,3] 1,2,3 coffee> [[1,2,3]] 1,2,3 coffee> [[1,2,3],[4,5,6]] 1,2,3,4,5,6 coffee> [1,[2,[3,4,5,6]]] 1,2,3,4,5,6 ```

**Repro Script**: ``` js // test.js phantom.onError = function(err) { console.log('onError: ' + err); phantom.exit(1); }; console.log('pre'); setTimeout(function() { x(); }, 0); ``` **Expected behaviour**: ``` $ slimerjs test.js pre...

bug
PhantomJS parity
internals

I think this: https://github.com/mapbox/flamebearer/blob/a8d4d5c0061ed439660783c613c43ab28b751219/index.js#L72-L73 should be `i = tick.s.length - 1`, otherwise this is going to consistently access something out of bounds in the `tick.s` array. Possibly you want it...

bug

See https://github.com/evanw/uint8array-json-parser/pull/1#issuecomment-1129213211

https://github.com/brendangregg/flamegraph#dtrace

import source

While #82 refers to the ability to import profiles with multiple tracks at all, this issue refers to the ability to view multiple profiles on the screen at the same...

feature request

![image](https://user-images.githubusercontent.com/150329/112745151-2cb83e00-8f5b-11eb-97be-ed29d62f5785.png)

There are a bunch of different things that don't work well with hot reloading at the moment. The most noticeable is you can get stuck in a state where the...