slidenerd

Results 43 comments of slidenerd

@twm are any of those steps necessary if you are using aiohttp to do the requests? ``` async with session.get(url) as response: text = await response.text() feed = feedparser.parse(text) ```...

SOLVED https://stackoverflow.com/questions/61746471/how-to-send-an-etag-or-last-modified-while-making-a-request-with-aiohttp-session

ahan finally caught the issue here, so separate prettyify cannot be applied to from and to values eh?

``` .vue-recycle-scroller__item-view .hover { background: none; } ``` does not work **UPDATE** ``` .hover .news-item { background: $warning-light; color: $black; } ``` I am able to change the colors but...

And what about the .bandit file? It cant read the configuration from that either inside .pre-commit-config.yaml It gives this error ``` [config] ERROR expected '', but found '' in ".bandit",...

``` @import '~bulma/sass/utilities/_all'; // Set your colors $primary: #0075f2; $primary-invert: findColorInvert($primary); $twitter: #4099ff; $twitter-invert: findColorInvert($twitter); $danger: #ff595e; $danger-invert: findColorInvert($danger); $success: #8ac926; $success-invert: findColorInvert($success); $warning: #ffca3a; $warning-invert: findColorInvert(#ffca3a); // Setup $colors...

thank you for replying, you are right, core lib should not be modified to add anything, is it possible to add a slot or something or let custom content inside...

Yes a cron job that fetches 1000 urls every 15 mins should always work even when we have 1000 emails to send to the user, as the email one receives...

so what is the status now

**2021 updated question** There are 3 libraries https://github.com/nuxt-community/google-gtag-module/ https://github.com/nuxt-community/gtm-module https://github.com/nuxt-community/google-analytics-module I see google-analytics-modules is using vue-analytics which is deprecated, that leaves with 2 more which one to use if -...