padinko

Results 12 comments of padinko

my workaround for now is `nuxt.config.js` ```js build: { splitChunks: { layouts: true } } ``` and then reload page beafore each layout change, mixin in all layouts: ```js beforeCreate()...

> None of the suggsested solutions found here and elsewhere have worked for me. Removing the HMR plugin leads to ` Invalid HMR message` errors in the frontend. The only...

I have same issue migrating from docker mysql:8.0.22 to postgresql 13.2 with pgloader v3.6.7 in docker i am migrating thousands of tables and some (not all) auto increments are not...

I found a problém: mysql column signed int (or signed int4) **without** defined precision with auto_increment have no mapping to serial in default casting there is definition only for int...

Hi, I downgraded 3 servers today because of #453 i just need to comment in config this line: ``` replica-weighting-factor 2 ``` because it does not exists in 6.2.2 I...

I figured out, that every persistance save (from config SAVE) will open 25 new files (for me) and never close them until OS limit for open files will reach. **EDIT:**...

@SalkiDixit you will need to destroy flatpickr and create new one with updated settings

PGOapi allow using proxy: https://github.com/keyphact/pgoapi/pull/66 can you add this?

is possible to get version of 6.2 for ubuntu jammy? because of this bug https://github.com/Snapchat/KeyDB/issues/453 it is impossible to use on production version 6.3 Sorry 6.3 isn't working well for...

if you use moment, you can do: ```js moment(date).utcOffset(0, true) ``` to get same date and time in UTC time zone