Our favourite Python tools for research
https://blog.esciencecenter.nl/our-favourite-python-tools-for-research-4647e6cc0681
https://blog.esciencecenter.nl/our-favourite-python-tools-for-research-4647e6cc0681
Medium
Our favourite Python tools for research
Ah, summer. A time to relax, go on holiday, and learn new things. At the eScience Center, we love summer. And we love Python. So, for…
Web Scraping Google Finance Markets in Python
https://dimitryzub.medium.com/web-scraping-google-finance-markets-in-python-a657da42a7d
https://dimitryzub.medium.com/web-scraping-google-finance-markets-in-python-a657da42a7d
Medium
Web Scraping Google Finance Markets in Python
A step-by-step tutorial about scraping market trends along with stocks and news data from Google Finance Markets in Python 🐍
Tensorflow 1.x Nesne Tespit API’si ile Nesne Tespit-Tanıma
https://medium.com/@zeynepkoyun/tensorflow-1-x-nesne-tespit-apisi-nesne-tespit-tan%C4%B1ma-e616cef7bc9a
https://medium.com/@zeynepkoyun/tensorflow-1-x-nesne-tespit-apisi-nesne-tespit-tan%C4%B1ma-e616cef7bc9a
Medium
Tensorflow 1.x Nesne Tespit API’si ile Nesne Tespit-Tanıma
Bilgisayarlı görünin temel çalışma konularından biri her zaman nesne tespit ve tanıma olmaktadır. Nesne tespiti, görüntülerdeki nesnelerin…
O que eu aprendi resolvendo um problema de Classificação utilizando técnica de Learning to Ranking.
https://medium.com/@marcusbragion/o-que-eu-aprendi-resolvendo-um-problema-de-classifica%C3%A7%C3%A3o-utilizando-t%C3%A9cnica-de-learning-to-ranking-4bfa6f55e3c8
https://medium.com/@marcusbragion/o-que-eu-aprendi-resolvendo-um-problema-de-classifica%C3%A7%C3%A3o-utilizando-t%C3%A9cnica-de-learning-to-ranking-4bfa6f55e3c8
Medium
O que eu aprendi resolvendo um problema de Classificação utilizando técnica de Learning to Ranking.
Disclaimer: Como eu resolvi um problema de negócio utilizando algoritmos de modelo de machine-learning supervisionado utilizando técnicas…
4 Magic Usages of Underscore “_” in Python
https://richard-dev.medium.com/magic-usages-of-underscore-in-python-f44ce39027f5
https://richard-dev.medium.com/magic-usages-of-underscore-in-python-f44ce39027f5
Medium
4 Magic Usages of Underscore “_” in Python
Underscore has many different uses in Python. It’s powerful and easy to confuse. Here I will summarize its usage, I hope it will be useful…
Introducing Sidekick’s Python Support
https://medium.com/runsidekick/introducing-sidekicks-python-support-87e3b6f153cb
https://medium.com/runsidekick/introducing-sidekicks-python-support-87e3b6f153cb
Medium
Introducing Sidekick’s Python Support
We are happy to announce support for Python runtime for Thundra Sidekick. Now, with Thundra’s latest release, developers can live debug…
Leetcode 162. Find Peak Element
https://medium.com/@pritul.dave/leetcode-162-find-peak-element-282ab0abe9db
https://medium.com/@pritul.dave/leetcode-162-find-peak-element-282ab0abe9db
Medium
Leetcode 162. Find Peak Element
Given a 0-indexed integer array nums, find a peak element, and return its index. If the array contains multiple peaks, return the index to any of the peaks. You may imagine that nums[-1] = nums[n] =…
IT career path you can quickly start to self-learn right now:
https://annaikoki.medium.com/it-career-path-you-can-quickly-start-to-self-learn-right-now-753d6b7ad4da
https://annaikoki.medium.com/it-career-path-you-can-quickly-start-to-self-learn-right-now-753d6b7ad4da
Medium
IT career path you can quickly start to self-learn right now:
Cool factor: solve IT problems and automate solutions and work with Operating Systems and OS Support using Python.
[Backend] 這次一定要搞懂 SQLAlchemy
https://medium.com/@v0220225/backend-%E9%80%99%E6%AC%A1%E4%B8%80%E5%AE%9A%E8%A6%81%E6%90%9E%E6%87%82-sqlalchemy-f624bb7835e3
https://medium.com/@v0220225/backend-%E9%80%99%E6%AC%A1%E4%B8%80%E5%AE%9A%E8%A6%81%E6%90%9E%E6%87%82-sqlalchemy-f624bb7835e3
Medium
[Backend] 這次一定要搞懂 SQLAlchemy
當初接觸 SQLAlchemy 是因為工作的專案使用 Starlette 框架,他所搭配的 DB ORM 為 SQLAlchemy,開啟一連串的奇幻之旅。雖然使用 ORM 來取得資料或 CRUD 沒什麼問題,但總覺得仍有些模糊的地帶,像是系統上線後,在執行 session query 時會有 SQL 連線中斷的問題。 首先,要先了解 SQLAlchemy 在 python service…
Recipes and Tricks for Effective Structural Pattern Matching in Python
https://python.plainenglish.io/recipes-and-tricks-for-effective-structural-pattern-matching-in-python-852ddf498fa2
https://python.plainenglish.io/recipes-and-tricks-for-effective-structural-pattern-matching-in-python-852ddf498fa2
Medium
Recipes and Tricks for Effective Structural Pattern Matching in Python
Python’s match/case syntax looks like a basic switch statement, but it’s much more powerful than that.
How to Convert an Image to ASCII Art With Python in 5 Steps
https://levelup.gitconnected.com/how-to-convert-an-image-to-ascii-art-with-python-in-5-steps-efbac8996d5e
https://levelup.gitconnected.com/how-to-convert-an-image-to-ascii-art-with-python-in-5-steps-efbac8996d5e
Medium
How to Convert an Image to ASCII Art With Python in 5 Steps
Fun and hands-on exercise for junior developers.
Getting useful data from the internet: A quickstart guide to Scrapy
https://levelup.gitconnected.com/getting-useful-data-from-the-internet-a-quickstart-guide-to-scrapy-4a284a61501a
https://levelup.gitconnected.com/getting-useful-data-from-the-internet-a-quickstart-guide-to-scrapy-4a284a61501a
Medium
Getting useful data from the internet: A quickstart guide to Scrapy
A use case in gathering Amazon product data
Running Queries in python using MultiProcessing
https://medium.com/@sudheerpailu/this-article-is-a-brief-yet-concise-introduction-to-running-queries-in-python-using-multiprocessing-1c2e0699c7f7
https://medium.com/@sudheerpailu/this-article-is-a-brief-yet-concise-introduction-to-running-queries-in-python-using-multiprocessing-1c2e0699c7f7
Medium
Running Queries in python using MultiProcessing
This article is a brief yet concise introduction to running queries in python using multiprocessing.
Predicting Survival on the Titanic using Alteryx and Python
https://avi-patel.medium.com/predicting-survival-on-the-titanic-using-alteryx-and-python-cd0867a1dffd
https://avi-patel.medium.com/predicting-survival-on-the-titanic-using-alteryx-and-python-cd0867a1dffd
Medium
Predicting Survival on the Titanic using Alteryx and Python
Tackling Kaggle’s popular Machine Learning Challenge