TGTGInsightтелеграм анализLIVE / telegram public index
← Такты, стеки, два колеса

TGINSIGHT SIMILAR POSTS

Намери подобно съдържание

Изходен канал @clockstackwheels · Post #914 · 22.11

34. За прошедший год я лишился двух основных хобби: мототехнику продал, а дроны теперь вне закона под угрозой приличного штрафа. Но, честно признаться, даже останься эти хобби у меня, уделять им время почти не было бы возможности: в августе у нас с Юлей родился сын — Роман :) Обычно в таких постах пишут что-то про "жизнь до и после", ответственность, ощущение себя взрослым и так далее. Я же хочу сказать, что за развитием ребёнка очень интересно наблюдать. Человек — самая сложная система из существующих. Сложнее атомной станции, микропроцессора или нейросети. И развивается он в детстве очень быстро и многопланово — это кайфово, если ребёнок желанный. Из остальных обновлений за год: сделали очень серьёзный ремонт, который я заканчивал уже впритык, параллельно катаясь в роддом. Съездил в 8 командировок по работе. Посетил 5 крупных IT-конференций, где набрал кучу мерча, а на двух даже выступил. Побывал в жюри на огромном чемпионате профессионального мастерства. В становой тяге дошёл до рабочего веса 130кг. Значительно увеличил коллекцию настолок (в которые даже удаётся иногда собраться поиграть). В общем, всё хорошо. Люблю семью, люблю друзей, люблю работу :) #life

Hashtags

Резултати

Намерени 4 подобни публикации

Търсене: #processes

当前筛选 #processes清除筛选
Amazing Geography 🌍

@amazingeo · Post #647 · 25.02.2026 г., 20:31

🌍 Submarine hydrothermal vents on the ocean floor release superheated water and minerals, fueling unique ecosystems powered by chemical energy instead of sunlight. ✨ #processes⚡#ocean⚡#ecosystems⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #39 · 13.08.2025 г., 00:12

🌍 Earth's crust is in constant motion due to convection currents—slow, swirling movement of hot rock deep below the surface. This drives plate movement, causing earthquakes and forming new land. ✨ #processes⚡#plate⚡#tectonics⚡#geology⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍

djangoproject

@djangoproject · Post #290 · 04.04.2017 г., 21:36

https://pymotw.com/3/asyncio/executors.html Combining Coroutines with Threads and Processes A lot of existing libraries are not ready to be used with #asyncio natively. They may block, or depend on concurrency features not available through the module. It is still possible to use those libraries in an application based on asyncio by using an #executor from #concurrent.futures to run the code either in a separate thread or a separate process. #Threads The #run_in_executor() method of the event loop takes an executor instance, a regular callable to invoke, and any arguments to be passed to the callable. It returns a Future that can be used to wait for the function to finish its work and return something. If no executor is passed in, a #ThreadPoolExecutor is created. This example explicitly creates an executor to limit the number of worker threads it will have available. #Processes A ProcessPoolExecutor works in much the same way, creating a set of worker #processes instead of threads. Using separate processes requires more system resources, but for computationally-intensive operations it can make sense to run a separate task on each CPU core. #learn