python

Back Open Paginator
26.01.2026 21:55
guiadeti (@guiadeti@flipboard.social)

Curso Gratuito de Ciência da Computação de Harvard CC50 em Português: Inscreva-se Agora!

guiadeti.com.br/curso-ciencia-

#cc50 #computacao #cursogratuito #harvard #htmlcss #javascript #programacao #python
guiadeti.com.br/curso-ciencia-




Show Original Post


26.01.2026 21:44
philcowans (@philcowans@universeodon.com)

I've extracted the dependency graph for the #ctss #kernel, and I have to say it's not the most elegant #architecture I've seen. The graph is derived from the linking instructions (ENTRY and EXTERN statements) between each of the source files within the mit8c0 archive, exported to #dot via a small #python script.

MAIN8C at the top contains the startup entry point. CLOC8H to the left is the handler for the real-time clock interrupt, which is used to implement multitasking, and I think CTRL8F is the main 'take the next task off the queue and do it' routine.





Show Original Post


26.01.2026 21:42
guiadeti (@guiadeti@flipboard.social)

Curso de Ciência da Computação com Python Gratuito da USP: comece do zero hoje mesmo

guiadeti.com.br/curso-ciencia-

#cienciadacomputacao #computacao #cursoonline #logica #programacao #python #tecnologia #usp
guiadeti.com.br/curso-ciencia-




Show Original Post


26.01.2026 21:27
driscollis (@driscollis@mastodon.social)

And now for something completely different. I don't only write about

I have also started writing about one of my silly hobbies: reviewing root beers and related drinks.

Feel free to follow along if you like that sort of thing:

rootbrewreview.com/




Show Original Post


26.01.2026 21:26
andrea_navarro (@andrea_navarro@mastodon.social)

Sabías qué es el polimorfismo en programación orientada a objetos?

Sabés que en Python 🐍 se puede implementar con y sin herencia?

✨En este artículo veremos qué es el polimorfismo, para qué sirve, cómo implementarlo en Python, qué es el duck typing, y algunas buenas prácticas para evitar errores.

📚Leé la nota completa acá: 👇

🔗 juncotic.com/poo-polimorfismo-




Show Original Post


26.01.2026 21:16
reddit_tech_vn_bot (@reddit_tech_vn_bot@mastodon.maobui.com)

Tôi vừa phát triển một ứng dụng huấn luyện poker dành cho người mới bắt đầu: 👾 Sim preflop (miễn phí 100%), 💹 Sim equity (20 ván/ngày), 🤖 AI chơi đối kháng (20 ván/ngày). Ứng dụng dùng SwiftUI + backend Python FastAPI, giúp cải thiện kỹ năng mà không tốn kém. Hãy thử và cho mình phản hồi về UI nhé! #Poker #App #Training #SwiftUI #Python #AI #Game #ỨngDụng #HuấnLuyện #TròChơi #Vietnam #CôngNghệ

reddit.com/r/SideProject/comme




Show Original Post


26.01.2026 21:08
pnutzh4x0r (@pnutzh4x0r@social.ndlug.org)

For most of my courses, I provide some test scripts so students can verify that their solutions are correct. Usually, these scripts emit a score or grade at the end.

The issue I was facing was that if an assignment had multiple test scripts, the grader (normally a TA) would have to manually parse the output of the tests and add up the scores.

To automate this, I decided to... embed a Python script in the Makefile I provide students to do run the test suite. This embedded Python script runs all the individual test scripts, extracts the score and status, and then summarizes the overall grade based on different weights.

It's ugly and looks terrible, but it works :}

I have embedded Python in shell scripts before, but this was the first time I have done this in a Makefile. It works by defining the shell script as a macro in the Makefile and then exporting. For the recipe, simply run `python3 -c $$NAME_OF_MACRO`.

I would hazard to guess that there is a limit to how long the embedded script can be (ie. the max length of the command line arguments)... but this will do.

Shout out to this stackoverflow: stackoverflow.com/a/69272017

#python #make #stackoverflow





Show Original Post


26.01.2026 21:05
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

Pinterest is hiring Director of Data Science, Ads Measurement & Attribution

🔧 #python
🌎 San Francisco, California; Seattle, Washington
⏰ Full-time
🏢 Pinterest

Job details jobsfordevelopers.com/jobs/dir
#jobalert #jobsearch #hiring




Show Original Post


26.01.2026 20:49
madiko (@madiko@mastodon.green)

Hello scientists of the world, #Python needs you! ;-) Vote for your favorite programming language and the #ITWorldCup now. And spread the word. Every vote counts (and every minute, too). Thank you!

#DataViz #DataVisualisation #Panda #NumPy #mathematics #Mathematik #GeoPlotLib #MatPlotLib #SeaBorn #SciComm #DataVizualisation #Visualisierung #Science #Scientists




Show Original Post


26.01.2026 20:34
heiseonlineenglish (@heiseonlineenglish@social.heise.de)

Pandas 3.0 brings unified string type and performance optimization

With version 3.0, the Python library introduces a unified string type and improves the copy-on-write method.

heise.de/en/news/Pandas-3-0-br

#IT #Python #news




Show Original Post


26.01.2026 20:21
treyhunner (@treyhunner@mastodon.social)

Python Tip #26 (of 365):

When opening a file, use a "with" block... especially for writing!

Using a "with" block to open a file will close it automatically when the "with" block exits: pym.dev/creating-and-writing-f

So this:

with open("example.txt", mode="wt") as file:
file.write("An example file\n")

Is pretty much the same as this:

file = open("example.txt", mode="wt")
try:
file.write("An example file\n")
finally:
file.close()

🧵(1/4)




Show Original Post


26.01.2026 20:15
catalystcoop (@catalystcoop@mastodon.energy)

This Thurs (1/29) 2-5p Eastern we're piloting a hands-on workshop on analyzing messy energy data, aimed at grad students and other researchers who have touched #Python but want to learn more. If that's you, and you're up to give us feedback, register below!

Many thanks to @sloanfoundation for supporting our Open Energy Data for All workshops & seminars.

#OpenData #Energy

eventbrite.com/e/open-energy-d




Show Original Post


1 ...585 586 587 588 589 590 591 592 593 594 595 ...1586
UP