Results 45 comments of Winnie

this was was fixed in https://github.com/spotify/luigi/pull/3281 but not yet released. @andresgomezfrr do you have a rough estimate on when the next version will be released?

I'm running into the same problem using Ubuntu: ``` $ ls -l emscripten/system/include/libc/bits ... emscripten/system/include/libc/bits -> ../arch/emscripten/bits ``` ...and arch does not exist. @TannerRogalsky What should arch contain?

https://github.com/kripken/emscripten/commit/784fb28bd7fd30ecf5a4bfb975ac06a2a0204d89 seems to fix it, so a newer emscripten version is necessary

@ivanpopelyshev I have started writing Kotlin interfaces for PixiJS (https://gitlab.com/pixikt/pixikt/tree/master/src/main/kotlin/PIXI) and porting the examples to Kotlin (https://gitlab.com/pixikt/pixikt.gitlab.io/tree/master/src/main/kotlin/examples). Maybe that would be a good intermediate step before rewriting PixiJS in Kotlin?

> Please look at https://github.com/pixijs/pixi-typescript I did but passing it to https://github.com/Kotlin/ts2kt didn't result in anything usable for me. :disappointed: > The idea is to make Pixi-like thing that will...

I would suggest the following database change to make it happen: - remove `entry_author` from `entry` table - create new `entry_author` table with the following fields - `entry_id` - `user_id`...

@liambaloh Thank you for the feedback! If we go without normalization, we could already just use the existing `entry_author` field which would avoid a database migration. What do you think?

Should we have a restriction on who can be added as a co-author? For example LDJAM requires you to be "friends" (follower in both directions) first.

In my earlier comment I ignored that even to the denormalized version we need a database migration because we are switching from user names to user IDs in `entry_author(s)`. Also...