- Make sure the isort extension is installed in VSCode
The latest VSCode update brought the requirement to use a python environment 3.8+ for isort:
2025-04-24 13:28:29.888 [info] No interpreter found from setting isort.interpreterThe latest VSCode update brought the requirement to use a python environment 3.8+ for isort:
2025-04-24 13:28:29.888 [info] No interpreter found from setting isort.interpreterPiano Covers of Pop Songs: https://open.spotify.com/user/henryecker/playlist/4SBOdi7IMfCrYKZqCqtuXA?si=FL1axIJTTTqYWXYqS6QICw
Extreme focus coding music: Primarily EDM with little to no vocals https://open.spotify.com/user/nebosite/playlist/0hy2h4wf2A3JWvMzK48REE?si=KlMRgPm8QfiC6N9Z-A6jAQ
High Energy programming mix: Most songs have vocals but good for brainstorming portions. https://open.spotify.com/user/jhardinee/playlist/022CloUnijfD00ziUEXJ66?si=WCKBLFEbQmmym-0DNgFLRA
Dubstep study: Dubstep with no vocals
| [merge] | |
| tool = vimdiff | |
| [mergetool] | |
| keepBackup = false | |
| [mergetool "vimdiff"] | |
| cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J' |
| # Run the following command to create Jupyter-lab config file under | |
| # ~/.jupyter/jupyter_notebook_config.py | |
| # $ jupyter-lab --generate-config | |
| # | |
| ############################ | |
| ### Some custom settings ### | |
| ############################ | |
| # Make it accessible from localhost only |
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
| " Background colors for active vs inactive windows | |
| hi ActiveWindow guibg=#17252c | |
| hi InactiveWindow guibg=#0D1B22 | |
| " Call method on window enter | |
| augroup WindowManagement | |
| autocmd! | |
| autocmd WinEnter * call Handle_Win_Enter() | |
| augroup END |
an outline for talks to be submitted to PaperCall.io
This document is a collection of resources and helpful information for writing a good CFP. Many of the notes and tips are direct quotes from the resources listed below. They are mostly notes I took as I read. The outline itself is formatted for PaperCall.io, and the italicized notes are from their site as well.
| # Instruct the interpreter to create a network request and create an object representing the request state. This can be done using the urllib module. | |
| import urllib.request | |
| import tarfile | |
| thetarfile = "http://file.tar.gz" | |
| ftpstream = urllib.request.urlopen(thetarfile) | |
| thetarfile = tarfile.open(fileobj=ftpstream, mode="r|gz") | |
| thetarfile.extractall() | |
| # The ftpstream object is a file-like that represents the connection to the ftp server. Then the tarfile module can access this stream. Since we do not pass the filename, we have to specify the compression in the mode parameter. |
| # -*- coding: utf-8 -*- | |
| """Example Google style docstrings. | |
| This module demonstrates documentation as specified by the `Google Python | |
| Style Guide`_. Docstrings may extend over multiple lines. Sections are created | |
| with a section header and a colon followed by a block of indented text. | |
| Example: | |
| Examples can be given using either the ``Example`` or ``Examples`` | |
| sections. Sections support any reStructuredText formatting, including |