Petra Jaros
Petra Jaros
@dlongley I hear what you're saying. I'm not clear what you think the pragmatic, short term solution is, though? Just…don't just `jsonld.js` at all for a year or two? Keep...
~Oh, hang on, I think I see the problem! This `import()` isn't in an ESM module at all: it's in [a _CommonJS_ file](https://unpkg.com/@digitalbazaar/[email protected]/dist/cjs/index.cjs). I think that's throwing off downstream tools...
Aha! I think I've found the actual issue now. First, you need to run with `NODE_OPTIONS=--experimental-vm-modules`, [as Jest says to](https://jestjs.io/docs/ecmascript-modules) (and as mentioned above). But that still was giving me:...
Also, a QMK board (or another similarly reprogrammable machine), could be configured to automatically send the refresh command keystroke when initially powered or when entering a serial steno mode.
I think @puckipedia is right. A list within a list looks like: ``` { "http://example.com/list-of-lists": { "@list": [ { "@list": ["foo", "bar"] }, { "@list": ["baz", "quux"] } ] }...
@melvincarvalho [Your Possibility 2 seems to work just fine.](https://json-ld.org/playground/#startTab=tab-expanded&json-ld=%7B%22%40context%22%3A%7B%22%40vocab%22%3A%22http%3A%2F%2Fexample.org%2F%22%2C%22tags%22%3A%7B%22%40container%22%3A%22%40list%22%7D%7D%2C%22tags%22%3A%5B%5B%22A%22%2C%22B%22%2C%22C%22%5D%2C%5B%22D%22%2C%22E%22%2C%22F%22%5D%2C%5B%22G%22%2C%22H%22%2C%22I%22%5D%5D%7D&context=%7B%7D) That models it as a list of lists. If you'd prefer to model them as a JSON array of JSON arrays,...
@felixhageloh Could you subclass the WebView to override [`hitTest:`](https://developer.apple.com/documentation/appkit/nsview/1483364-hittest?language=objc), then implement it using [`bitmapImageRepForCachingDisplayInRect`](https://developer.apple.com/documentation/appkit/nsview/1483440-bitmapimagerepforcachingdisplayi?language=objc) / [`cacheDisplayInRect:toBitmapImageRep:`](https://developer.apple.com/documentation/appkit/nsview/1483552-cachedisplayinrect?language=objc) to render the pixel being clicked and check its alpha?
@felixhageloh Cheers, looking forward to it! 🎉
Also, the other `:B*` commands follow the same pattern. If the command would `:lcd` (e.g., `:Bsplit`), then the no-argument version opens the `Gemfile`. If the command would _not_ `:lcd` (e.g.,...
What's lacking in autoclose is that it won't break open the ``` $('bleh').click(function() {|}) ``` into ``` $('bleh').click(function() { | }) ``` I've been working on a way to do...