tricoder42

Results 19 comments of tricoder42

@mapes911 You could also set it outside constructor. I'm using this workaround to set authenticated user: ```python communicator = WebsocketCommunicator(Consumer, "/") communicator.scope['user'] = user ``` Feels a bit fragile, but...

Here's a [gist](https://gist.github.com/tricoder42/af3d0337c1b33d82c1b32d12bd0265ec) with my solution using django-channels. It's a working proof of concept. Next task is optimize it for production environment. Feedback welcome!

Yep, I've started my parser, but it's abandoned as well https://github.com/rst-js/rst-js

Hey everyone, thanks @thisguychris for mention. I read the thread briefly and I have few suggestions if you don't mind: > (Having said that, the examples on https://www.i18njs.com point towards...

Hey @MirzayevFarid! Good to hear you find this project useful 👍 Feel free to add your project to the documentation and send a PR (like #750)

Hey @tolunayakbulut! Glad to hear you use and like LinguiJS! Feel free to send PR directly like #806

If you import polyfill using ES6 syntax, you must call imported function: ``` js // require('es6-promise').polyfill(); // polyfill is called import { polyfill } from 's6-promise'; polyfill(); ```

I still have this issue. My default system language is **Czech** and fonts aren't available. After I switch to **English**, I can use FontAwesome fonts in Keynote. FontAwesome Pro for...

1. The `format` prop allows you to customize formatting of number passed to plural/selectOrdinal. It's used here https://github.com/lingui/js-lingui/blob/main/packages/core/src/context.ts#L22. `Trans` component doesn't need it because it doesn't formats any values. 2....