Fundamentos de Visão Computacional com Python: Curso Gratuito da Samsung Ocean com Certificado
https://guiadeti.com.br/curso-visao-computacional-python-samsung-ocean/
#cursoonline #inteligenciaartificial #opencv #python #samsungocean #visaocomputacional
https://guiadeti.com.br/curso-visao-computacional-python-samsung-ocean/?fsp_sid=488
Are you part of an org that believes in doing well and doing good? Do you have software engineering needs and are you looking for someone with both hands-on-keys maintenance + delivery as well as management experience to support your team and org in it's journey?
Well you're in luck! I have some availability (8~12 hours/wk) for consulting starting in Q2 2026!
For the last ~6 years I've been "The Most Senior Staff Member" growing an org from high-6 to lower-mid 7 figures. And now it's time for me to take a step back so it can develop to its full potential.
My #programming experience is mostly #WebDevelopment (#Ruby / #JavaScript / #Python / #Clojure / #Rust / #Java in descending order of fluency).
My #management experience is in purpose-driven, for profit organizations with an emphasis on building mutually beneficial, enthusiastically consensual commercial relationships between workers and customers where I've held #finance, #operations and #engineering roles.
#Cooperatives #GetFediHired #Solidarity
Circle is hiring Director, Data Engineering
🔧 #python #aws #sql
🌎 Remote; Chicago, Illinois; United States
⏰ Full-time
🏢 Circle
Job details https://jobsfordevelopers.com/jobs/director-data-engineering-at-circle-com-sep-20-2024-7e7b5f?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
#Python type hint experts: do we like
foo: Optional[str] = None # or str | None = None
or do we like
foo: str = ""
?
Having None stand in for "literally no value" can be useful sometimes, but I find type checkers require irritating extra hoops downstream of a func/whatever call in that scenario, and find myself sometimes reaching for the empty string as a good-enough stand-in.
because most of the time it /is/ good enough and my use case is a binary "empty string vs non-empty string" question.
I kept forgetting how to assert exception messages in PyTest, so I finally checked the docs.
Here’s a reference snippet 🐍
#TIL #DailyPythonista #PyTest #TDD #Python #programming
https://borutzki.github.io/2026/03/30/how-to-assert-exception-message-in-pytest.html

Python Tip #89 (of 365):
Avoid string methods for number validation
Avoid the str class's isdigit(), isdecimal(), and isnumeric() methods.
Instead use an explicit regular expression or convert the string to a number.
Of these 3 strings:
>>> a = "5"
>>> b = "5.0"
>>> c = "-5"
Which of them will each of the 3 isnumeric(), isdecimal(), and isdigit() methods return True for?
If you have no idea, don't worry... it's a bit confusing.
🧵 (1/6)
PyClean v3.6.0 released! Fixes the ignore flag to be considered when used in combination with erase. Try it with #conda or #uv now! `uvx pyclean`. https://pypi.org/project/pyclean/ #python #bytecode #debris #cleanup #development #python3 #cpython #pypy #Linux #macOS #Windows
#GetFediHired Still have some open roles for Senior Quality Engineers who know #Linux #Kubernetes , #Cloud hosted apps, and bonus for #Kafka and #Python
Some are in the Czech Republic, others are in the US. Fully remote work in the US and Canada, full benefits, bonus targets, and LGBTQIA folks in leadership, so we're definitely on the progressive side.
DM me for deets. ![]()
Dnes jsem jen tak cvičně vyrobil #python #fastfastapi openrest api a webui nad #llamacpp a #translategemma #LLM. Musel jsem trochu ohýbat, ale nakonec mi to funguje a musím přiznat, se kvalita překladu je celkem dobrá tedy minimálně 12b verze translategemma.

So it's not based on standard type hints. Pydantic is a huge dependency. If they are advertising for the user to do things with standard type hints, then I don't understand it either: You get pydantic through the rear, as a dependency of FastAPI and I can use standard type hints by default, if I am not doing something very bad. What is the positive point here?
Compare that with Falcon, which has zero dependencies.
[2/2]
@Armavica ah found it: https://peps.python.org/pep-0771/