Shrikant Sharat Kandula
Shrikant Sharat Kandula
For anyone coming here looking for the same thing, here's how I did this: First, add a canvas with a wrapper to your page's body like this: ```html ``` Next,...
You're not focusing the element. You're only selecting it. Try the following code: ``` document.getElementById('nav_search_input').focus(); ```
Keyboard-fu's shortcuts won't work on Google search page. Google hijacks keys in a way keyboard-fu cannot detect any keypresses. But you're right, the code doesn't work on non-google websites too...
@abhvsn, do we need to be on MongoDB v4.4 before this PR can go in? Or is it harmless on MongoDB v4.2?
@abhvsn, prod DB is at v4.4 now. :)
Hey @tlaukkanen, you are right, and I've ended up with a _similar_ workaround based on a cron job. I just hoped there could be just a CLI flag to just...
Hey @tlaukkanen, also, just coming back to this, that curl command will actually delete all emails, including those that were received just moments ago. That's not really a practical solution...
I'm currently using the following Python script as a cron job to achieve this: ```python import http.client import datetime from base64 import b64encode import json headers = {"Authorization": b"Basic "...
Hey! Thanks for reaching out. Yes, this is something I do have on my roadmap 😃. That sounds like a fine plan. To confirm we're on the same page, what...
Ah interesting. I didn't realize we'd have a separate Dockerfile for development. Yeah that would require NodeJS to run Parcel. For production, you are right. It's just a bunch of...