AZAdam Zhangindatawithadam.hashnode.dev·Jan 5, 2024 · 7 min readGeospatial data in a nutshellMotivation Happy new year everyone! Took a little break and back at it. The goal of this post is to introduce the extension of Postgres called PostGIS for those who interested in knowing more geospatial data. We will be covering the following topics:...00
AZAdam Zhangindatawithadam.hashnode.dev·Nov 29, 2023 · 4 min readModern Python SetupPython setup is very painful since it has millions of ways to do the same thing. You can install Python via, install python from their official site Install Python via homebrew or another package manager install via third-party tools like pyenv ...00
AZAdam Zhangindatawithadam.hashnode.dev·Nov 13, 2023 · 4 min readpathlib in PythonPathlib vs OS in Python Motivation When i was listening to real python podcast on new features of python 3.12 including Path.walk(), it's the time i realize that there is a built-in library pathlib in Python (sorry, it took me this long to know this....00
AZAdam Zhangindatawithadam.hashnode.dev·Oct 31, 2023 · 3 min readTmux and VimI have changed my workflow to tmux and vim lately. I'd like to share my experience with adopting these tools and focus on tmux and later post on vim. It's also in memory of Bram Moolenaar, the creator of vim, who passed away recently. Perspetive on t...00
AZAdam Zhangindatawithadam.hashnode.dev·Oct 19, 2023 · 4 min readPrivate Name ManglingIntroduction Came across this post on DE subreddit. This post is about private name mangling in Python, the link is here. Python doesn't support strict private variables like other languages such as C++. However, python has a way to "implement" priva...00