ffunenga
ffunenga
I installed mkdocs-bootswatch and tried several of the sub-themes, but the citations / block-quotes are not showing up in the web browser. For example, the following md: ``` Hello, this...
In the documentation (specifically, in the ["Coroutines and Tasks" page](https://docs.python.org/3/library/asyncio-task.html)), I am having trouble understanding what happens when `asyncio.create_task` is called. I have read the headings [Coroutines](https://docs.python.org/3/library/asyncio-task.html#coroutines) and [Creating tasks](https://docs.python.org/3/library/asyncio-task.html#creating-tasks),...
While following this: [1] https://github.com/vlang/v#installing-v---from-source-preferred-method The `git clone` command was taking too long, so I tried doing the installation process with: ``` git clone --depth=1 https://github.com/vlang/v cd v make.bat ```...
Something like this ``` python class Gmail: def __init__(self, username, password): self.username = username self.password = password def __enter__(self): # note: getpass might be better here, instead of keeping the...