Nils Kuhnhenn
Nils Kuhnhenn
Exiftool can output in JSON, probably should use that: ``` $ exiftool -j Images/test.jpg [{ "SourceFile": "Images/test.jpg", "ExifToolVersion": 10.55, "FileName": "193762.jpg", "Directory": "Images", "FileSize": "2.9 MB", "FileModifyDate": "2017:09:28 19:34:19+02:00", "FileAccessDate":...
On Nest application shutdown, ``close()`` is called on the socket.io server [here](https://github.com/nestjs/nest/blob/e4b07eb06b406183e708269e0439f442a1dadb1c/packages/websockets/adapters/ws-adapter.ts#L39). Internally *socket.io* will now disconnect all sockets handled by itself, **then calls close() on the underlying http server**...
If the ``nvim`` folder in ``~/.cache/`` doesn't exist yet, the download in ``tiktoken.lua`` will fail. It should be created if it doesn't exist. Maybe put a ``vim.fn.mkdir(vim.fn.stdpath('cache'), 'p')`` somewhere appropriate.
I realize you're probably not very interested in changes to the v7 version with v8 likely being on your mind, but here are some changes that were useful to me...
### Description There seems to be a lack of example code / documentation around setting up up a basic mesh with a shader + uniforms. The ``resources`` entry being a...
### Description Currently there doesn't seem to be a way to hook into the rendering *after* transforms were updated, but before the actual rendering happens. This means that if you...
### Description The automatic detach on ``removeChild`` is more confusing than useful. Not only doesn't it automatically recursively detach children, which makes it near useless, but it is also asymmetric,...