oney

Results 62 comments of oney

Please see "Issue1" frame in https://www.figma.com/file/EyQ0Dck1wzPfg0thNeBnAM/Sharing?node-id=35%3A8 ```html ``` Here it is ```html ``` ----- BTW, I found another problem about absolute positioning. Please see "Issue2" frame in the same Figma...

For Issue2, I might find a easy solution Now it generates ```html ``` First, fix `class="Issue2"`'s `align-items: flex-end; justify-content: flex-end;` to be `align-items: flex-start; justify-content: flex-start;` And add `margin-left: 44px;`...

On backend, it's important that i18n should **NOT** be handled in message function directly ```typescript class Post { @Length(10, 20, { message: (args: ValidationArguments) => i18n.t("LengthTranslation", args), }) title!: string;...

This actually is pretty easy to solve. @iPotaje 's gist https://gist.github.com/iPotaje/89f48328c682b8a4f6f0b6e3874a6902 should be work. But for me, because I cannot import `sql.js` in my react project, I have to import...

I faced the same issue with [stable_diffusion_1_5_webui_colab stable colab](https://colab.research.google.com/github/camenduru/stable-diffusion-webui-colab/blob/main/stable/stable_diffusion_1_5_webui_colab.ipynb), and I changed `!git clone -b v2.4 https://github.com/camenduru/stable-diffusion-webui` to `!git clone -b v2.7 https://github.com/camenduru/stable-diffusion-webui` to use the latest version. Then it's...

If you ever converted codes of Locksmith to Swift 3, change back to original codes. In `Locksmith.swift`, change ``` swift extension CreateableSecureStorable { func updateInSecureStore(_ query: [String: Any]) throws {...

Not perfect solution. https://github.com/oney/DBCamera/commit/ddf44f469d5e86597e5fd04b2c47ff9a0b342774 Unlock the file, and add these codes

My current solution focuses on having a unified type for emitting and subscribing to events. Please check out [this gist](https://gist.github.com/oney/d3fc4186941667ebdcae489360447e94). In router: ```typescript import newMessage from "./newMessage"; export const chatRouter...

Thanks! - Can you try using origin google-services.json(not replace to yours) to see if the error happens? - What device do you test?

Did you restart react native packager?