Tips¶
- PyGetWindow does not support Linux currently.
Installation¶
pip3 install pyobjc-framework-quartz pygetwindow
Quickly Open a Directory in Terminal in Mac
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
OpenInTerminal
is a Finder Toolbar app for macOS
to open the current or selected directory in Terminal, iTerm, Hyper or Alacritty.
Installation and Configuration
-
Install OpenInTerminal
brew cask install openinterminal -
Launch …
Add New Document to Right-Click Menu in Mac
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Right Click to Create New File on macOS
Automator
This solution is stupid.
You must right click on a file/folder in order for Quick Action to show up in the …
Side Projects for Money
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
References
Hands on the datetime Module in Python
Comment¶
A Datetime object cannot be compared with a string directly.
However,
pandas Series of datetime objects can be compared with string date directly
(both by operators and methods).
The comparison is done by parsing the string to a datetime object.
An exception will be thrown if the string cannot be parsed into a datetime object.