TGTGInsightаналитика telegramLIVE / telegram public index
← DevOps

TGINSIGHT SIMILAR POSTS

Найти похожее

Источник @DevOPSitsec · Post #2113 · 1 апр.

💻 Какой язык программирования лучше для обучения? Многие школы используют Java, C#, C или C++, но всё больше образовательных программ переходят на Python. У Python есть очевидный плюс — на нём легче начать. Это помогает студентам быстрее увидеть результат и сохранять мотивацию. Но есть и минус. Python сильно абстрагирует низкоуровневые детали, поэтому студентам сложнее понять, как работают структуры данных, память и другие фундаментальные вещи. Лично я считаю, что программисты должны становиться polyglots — людьми, которые знают несколько языков. Фокусироваться на одном языке — стратегическая ошибка. Но влияет ли язык на результаты обучения? Исследование John R. Hott (ACM ICER 2025) показывает: почти никак. Студенты, которые выполняли задания: - только на Python - только на Java - на смеси языков показали статистически одинаковые результаты. Не было значимых различий: - в оценках за программирование - в письменных заданиях - в тестах и квизах - в уровне сложности, который испытывали студенты Вывод исследования простой: 👉 выбор языка программирования почти не влияет на результаты обучения. То есть преподавателям не стоит слишком переживать о том, какой язык выбрать для курса. Гораздо важнее другое. Вместо бесконечных споров *Python vs Java vs C++* стоит учить студентов: - как создавать продукты - как запускать проекты - как строить бизнес - как быть независимыми от технологических трендов Как пишет Zed Shaw в эссе “AI Didn't Kill Programming, You Did”: проблема не в AI и не в языках программирования — проблема в том, как люди учатся программированию. Главная мысль: 🚀 программирование можно выучить на любом языке. Начните с Logo. Попробуйте Ada. Изучите Python, Go, Rust или C. А ещё лучше — попробуйте придумать свой язык программирования. Именно так и начинается настоящее понимание компьютеров. Исследование https://engineering.virginia.edu/faculty/john-r-hott Эссе https://learncodethehardway.com/blog/39-ai-didnt-kill-programming-you-did/ #programming#education#python#java

Результаты

Найдено 2 похожих постов

Поиск: #multithreading

当前筛选 #multithreading清除筛选
djangoproject

@djangoproject · Post #95 · 11.07.2016, 12:14

https://docs.python.org/3/library/asyncio-dev.html#asyncio-multithreading 18.5.9.3. #Concurrency and #multithreading An event loop runs in a thread and executes all callbacks and tasks in the same thread. While a task is running in the event loop, no other task is running in the same thread. But when the task uses yield from, the task is suspended and the event loop executes the next task. To schedule a callback from a different thread, the BaseEventLoop.call_soon_threadsafe() method should be used. Example: loop.call_soon_threadsafe(callback, *args) Most asyncio objects are not thread safe. You should only worry if you access objects outside the event loop. For example, to cancel a future, don’t call directly its Future.cancel() method, but: loop.call_soon_threadsafe(fut.cancel) To handle signals and to execute subprocesses, the event loop must be run in the main thread. To schedule a coroutine object from a different thread, the run_coroutine_threadsafe() function should be used. It returns a concurrent.futures.Future to access the result: future = asyncio.run_coroutine_threadsafe(coro_func(), loop) result = future.result(timeout) # Wait for the result with a timeout The BaseEventLoop.run_in_executor() method can be used with a thread pool executor to execute a callback in different thread to not block the thread of the event loop. See also The Synchronization primitives section describes ways to synchronize tasks. The Subprocess and threads section lists asyncio limitations to run subprocesses from different threads.

GitHub Trends

@githubtrending · Post #14740 · 23.05.2025, 12:30

#python#async#asyncio#cross_platform#downloader#gui#multithreading#pyqt#pyside6#python#qt#software#streaming Ghost Downloader 3 is a fast, AI-powered download manager that works on Windows, Linux, and macOS. It speeds up downloads by splitting files into many parts and using multiple threads, dynamically adjusting to use your full bandwidth. It supports resuming downloads, proxy settings, SSL security, and clipboard monitoring for easy link capture. The interface is modern and user-friendly. This tool helps you download files more quickly and efficiently, with options to control speed and use proxies, making it ideal if you want faster, smarter, and more reliable downloads on your computer[1]. https://github.com/XiaoYouChR/Ghost-Downloader-3