5 Awesome PyCharm Tricks / Features

preview_player
Показать описание
Today we will look at five awesome PyCharm features that can make your coding life easier.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚

🌐 Social Media & Contact 🌐

Timestamps:
(0:00) Intro
(0:20) 1 - Finding Actions
(2:42) 2 - Injecting Languages
(5:21) 3 - RegEx Checking
(6:52) 4 - Live Templates / Code Snippets
(11:19) 5 - Local File History
(12:34) Outro
Рекомендации по теме
Комментарии
Автор

Tips 3 and 4 are life changers, thank you so much

justaplayer
Автор

Thank you for your videos. They are often very useful and you have a great teaching style. I think it would be great if you would expand to cover Clojure. There are many Clojure talks online but almost no 'how to do it' or 'how to do it well' videos.

leostantontowne
Автор

Can you create an updte on this video?

VypeReaper
Автор

Last 4 years I use Pycharm 2022
I face a major which no one is talking about.
It doesn't warn for any major or minor mistakes on the code.
Really pathetic.
Eg,
1) I wrote a function and called from another function. All went well.
Later on I moved that function to a class and forgotten to that class name where I called that function.
This toy doesn't warn. After one week when user press a button to call that function it fails.

2) Same with variables.
IsInternetPresent = GetInternetState()
If(IsInternetPresent):
Do something...
Now I have commented the
#IsInternetPresent = Get... Line

Even then this toy doesn't warn.

Rarely a thin grey text on the consol may appear which can't be noticed at all.
For this I use a code scanner 3rd party tool.

How come no one talking about this major issue ?

Note:
I use remote ssh projects mostly

StartNight-dfsv