Maksim Fedorov
Maksim Fedorov
Codeception can read the environment variables. Put in `codeception.yml`: ``` params: - env ``` And you can use it in tester yml: ``` - MailHog: url: '%MAILHOG_HOST%' port: '%MAILHOG_PORT%' ```
@DanielJefferson1990 ``` editor. onDidChangeCursorSelection(ev => { if (ev.reason === CursorChangeReason.ContentFlush) { // true if setValue call } else { // false if user input } } ```
@stof, I have the same problem. https://www.youtube.com/watch?v=-ekdLOpbLM0
I provided provideAppLangScope() in NotFound component and it's working! Temporal solution for me
If you run code: ```ts const old = console.log console.log = (...data: any[]): void => { old(`[${Date.now()}]`, ...data) } console.log("Start!") setTimeout(() => console.log("End!"), 3000) console.log("running!") ``` [172743869 **2** 260] Start!...
Sometimes it's clickable, sometimes not, for example open/close Devtools change behavior
I think (I'm not Judge developer!) it's possible. Judge provide API for store results, if you not need it you can replace DB layer
Yep, you can modify [judje0/compilers ](https://github.com/judge0/compilers/blob/master/Dockerfile) add your language, release it in your Docker Hub then you should build with it in https://github.com/judge0/judge0/blob/9253bcc87748c196c2e0599b2ed23a9a9e6c36a7/Dockerfile#L1 It seems Judge0 is only flexible to...
@Acconut thanks, https://github.com/jnovack/flag seems good compromise!