Installing tensorflow natively on mac-M1 in 2022
https://medium.com/dive-into-ml-ai/installing-tensorflow-natively-on-mac-m1-in-2022-1357e9b7a201
https://medium.com/dive-into-ml-ai/installing-tensorflow-natively-on-mac-m1-in-2022-1357e9b7a201
Medium
Installing tensorflow natively on mac-M1 in 2022
As things stand on May 2022
Quick Tips to Improve your Python Code Quality
https://medium.com/@Hong_Tang/quick-tips-to-improve-your-python-code-quality-3a8e6354ccf4
https://medium.com/@Hong_Tang/quick-tips-to-improve-your-python-code-quality-3a8e6354ccf4
Medium
Quick Tips to Improve your Python Code Quality
In the data science world, people do not judge you by your age, gender, religion, or appearance. But people do judge you by your code…
How to check if a field of a model is changed in Django?
https://medium.com/@aman_adastra/how-to-check-if-a-field-of-a-model-is-changed-in-django-c9552168fb11
https://medium.com/@aman_adastra/how-to-check-if-a-field-of-a-model-is-changed-in-django-c9552168fb11
Medium
How to check if a field of a model is changed in Django?
Hi there 👋, recently I stumbled over a Notification System in which I have to send a notification when the status of Product is change to…
Create Delta Live Tables(DLT) Dynamically
https://medium.com/@chaobioz/create-delta-live-tables-dlt-dynamically-with-pyspark-e06a718199c8
https://medium.com/@chaobioz/create-delta-live-tables-dlt-dynamically-with-pyspark-e06a718199c8
Medium
Create Delta Live Tables(DLT) Dynamically
Delta Live Tables (DLT)is a ETL pipeline build by Databricks that enables data engineer to build a production ready pipeline with a few…
The Blind 75 Leetcode Series: Search in Rotated Sorted Array
https://jonathan-ck-chao.medium.com/the-blind-75-leetcode-series-search-in-rotated-sorted-array-81b91c921a92
https://jonathan-ck-chao.medium.com/the-blind-75-leetcode-series-search-in-rotated-sorted-array-81b91c921a92
Medium
The Blind 75 Leetcode Series: Search in Rotated Sorted Array
Today, we will be working on Search in Rotated Sorted Array.
Solving the 1D Advection Equation — Python Implementation
https://vitalitylearning.medium.com/solving-the-1d-advection-equation-python-implementation-6942629fb08d
https://vitalitylearning.medium.com/solving-the-1d-advection-equation-python-implementation-6942629fb08d
Medium
Solving the 1D Advection Equation — Python Implementation
Before proceeding further, please take a look at the theory in the story: Solving the 1D Advection Equation — Numerical Discretization —…
Non-overlapping Intervals: Leetcode Medium — Blind 75 (Intervals)
https://medium.com/@ektadhobley/non-overlapping-intervals-leetcode-medium-blind-75-intervals-edba189b97c
https://medium.com/@ektadhobley/non-overlapping-intervals-leetcode-medium-blind-75-intervals-edba189b97c
Medium
Non-overlapping Intervals: Leetcode Medium — Blind 75 (Intervals)
Question Link
Visualising photo geolocation data using Python
https://medium.com/@pavelcherepansky/visualising-photo-geolocation-data-using-python-73ac47059112
https://medium.com/@pavelcherepansky/visualising-photo-geolocation-data-using-python-73ac47059112
Medium
Visualising photo geolocation data using Python
Most modern GPS-enabled cameras and mobile phones record geolocation information when a photo is taken and this information is stored along…
Monte Carlo Simulations may help you save a lot of money!
https://blog.prateekja.in/monte-carlo-simulations-may-help-you-save-a-lot-of-money-9d24132fe6f7
https://blog.prateekja.in/monte-carlo-simulations-may-help-you-save-a-lot-of-money-9d24132fe6f7
Medium
Monte Carlo Simulations may help you save a lot of money!
Understanding what Monte Carlo Simulations are and how they may be applied by Analysts for a variety of business problems using Python
Image and Bounding Box Rotation Using OpenCV (Python)
https://medium.com/@pokomaru/image-and-bounding-box-rotation-using-opencv-python-2def6c39453
https://medium.com/@pokomaru/image-and-bounding-box-rotation-using-opencv-python-2def6c39453
Medium
Image and Bounding Box Rotation Using OpenCV (Python)
Use python OpenCV to rotate images and bounding boxes without corners and sides being cropped!
7 Python Advanced Project with Source Code
https://medium.com/@technologynous/7-python-advanced-project-with-source-code-926eb7e5a57
https://medium.com/@technologynous/7-python-advanced-project-with-source-code-926eb7e5a57
Medium
7 Python Advanced Project with Source Code
Here is the list of the top 10 advanced python projects with source code in 2022. 1. Facial Recognition Employee Attendance System
MicroPython 如此簡單: 計時與計次器
https://yungger.medium.com/micropython-%E5%A6%82%E6%AD%A4%E7%B0%A1%E5%96%AE-%E8%A8%88%E6%99%82%E8%88%87%E8%A8%88%E6%AC%A1%E5%99%A8-b7b3c3275a13
https://yungger.medium.com/micropython-%E5%A6%82%E6%AD%A4%E7%B0%A1%E5%96%AE-%E8%A8%88%E6%99%82%E8%88%87%E8%A8%88%E6%AC%A1%E5%99%A8-b7b3c3275a13
Medium
MicroPython 如此簡單: 計時與計次器
雖然 MicroPython 內建有個 Timer 的模組, 雖然呼叫的方式很簡單, 但個人卻覺得用途有限與功能被限制而不夠彈性。使用時需要 init(), 使用後又需要 deinit() 來避免佔用太多的記憶體, 而且宣告上更有數量上的限制。