General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Kantan Coding
freeCodeCamp.org
comments
Comments by "Kantan Coding" (@kantancoding) on "Data Structures For Python Developers (w/ Flask) - Course" video.
Thank you Beau and freeCodeCamp for having me on your channel! I hope that this video is helpful to you all! For those wondering how I configure my terminal, I use iTerm2 + zsh + oh-my-zsh. If you are into customizing things like I am you’ll love these :) For those wondering about my vim setup, I just made a tutorial on how to clone my .vimrc and install the necessary dependencies on my channel (link in the description). The repo with my .vimrc is linked in the description of the above mentioned video as well. Hope it helps!
28
For my vim setup and how I’m accessing the python module definitions and how my auto-completion is working, I’m using coc.nvim to go to definition. And the definitions for the modules that you install are usually located in /lib/python/site-packages in your Python folder(I’m not sure for Windows, sorry). I’m also using jedi for auto-completion for Python. As for the vim theme, I am using vim-monokai-tasty in this video. I switch between that and gruvbox. Sorry, I tried to post this comment earlier to answer people's questions about my setup but YouTube keeps removing my comment.
10
@karthickaravindan I just made a tutorial on how to clone my .vimrc and install the necessary dependencies on my channel. Hope it helps!
4
I’m using coc.nvim to go to definition. And the definitions for the modules that you install are usually located in /lib/python/site-packages in your Python folder(I’m not sure for Windows, sorry). I’m also using jedi for auto-completion for Python.
2
I use iTerm2 + zsh + oh-my-zsh. If you are really into customizing things like I am you'll love these :)
2
It sounds to me like in the to_list method you are appending node instead of node.data. Check the line of code that says l.append(node.data) and make sure it’s not l.append(node)
1
@phalycexEnima no problem :)
1