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

TGINSIGHT SIMILAR POSTS

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

Изходен канал @clockstackwheels · Post #174 · 21.01

Раз я пишу про гаджеты для гиков, то вот ещё один. Как и многие гики, я ленюсь готовить. Но при этом люблю всё мясное. Так что, посмотрев на пример двоих друзей, я купил гриль и делаю на нем мясо без масла. По сути это две ребристые сковородки с быстрым нагревом и таймером, прижатые друг к другу. Комбинация формы поверхностей и температуры позволяет делать мясо быстро, но не сжигать его. Электроника позволяет запускать этот процесс нажатиями двух кнопок: - первым нажатием выбрал тип блюда (эта настройка задаёт температуру и отсечки по времени), устройство начинает греться и сигналит, когда можно выкладывать - положил мясо и вторым нажатием выбрал желаемую степень прожарки, устройство отключится и просигналит, когда готово Всё. Панели можно снять и помыть в посудомойке. Очень рекомендую. Конкретно у меня модель от русского производителя GFGRIL GF-2000, она наилучшим образом подошла по сумме всех нужных мне параметров, но рынок обширен, и предложений масса, на любой вкус. #gadgets

Hashtags

Резултати

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

Търсене: #gevent

当前筛选 #gevent清除筛选
djangoproject

@djangoproject · Post #439 · 13.09.2017 г., 03:57

Evented Django part one: Socket.IO and gevent #Socket.IO was developed with a #Node.JS server implementation, but work is being done to add server implementations to a variety of languages. Two such servers exist for Python, tornadio and #gevent-socketio. I'm a big fan of gevent, so I will use gevent-socketio, but tornadio looks well-written and very promising. http://codysoyland.com/2011/feb/6/evented-django-part-one-socketio-and-gevent/

djangoproject

@djangoproject · Post #170 · 22.09.2016 г., 14:27

https://pypi.python.org/pypi/uvloop #uvloop is a fast, drop-in replacement of the built-in #asyncio event loop. uvloop is released under the MIT license. uvloop and asyncio, combined with the power of async/await in Python 3.5, makes it easier than ever to write high-performance #networking code in Python. uvloop makes asyncio fast. In fact, it is at least 2x faster than #nodejs, #gevent, as well as any other Python #asynchronous framework. The performance of uvloop-based asyncio is close to that of Go programs.

djangoproject

@djangoproject · Post #270 · 26.02.2017 г., 08:08

https://www.obeythetestinggoat.com/testing-async-asyncio-and-performance.html #Testing, #async, #asyncio, and #performance Sun 27 December 2015 By Harry I recently did some experimenting with asyncio, and wanted to report back on how I got on with writing tests for it. While I was at it I was also able to compare its performance with a couple of other approaches to #mutlitasking in Python, namely #threads and #gevent, so I'll report on that here too. (tl;dr: it's much of a muchness).