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

TGINSIGHT SIMILAR POSTS

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

Изходен канал @clockstackwheels · Post #632 · 6.11

Посмотрел уже четыре серии нового научно-фантастического сериала Peripheral: в недалёком будущем героям попадается VR-гарнитура, которая перемещает их в супер реалистичный симулятор Лондона на сто лет вперёд, но всё, конечно же, оказывается не так просто. Смотрю вполне с удовольствием. Не сказал бы, что хочу бросить или перемотать. Но вот подметил такую вещь: и здесь, и во многих других фантастических проектах последних лет авторы очень круто смоделировали мир (либо домоделировали уже существующий мир: например, в сериалах по Звёздным Войнам). Офигенная работа с деталями, дорогая картинка, интересные особенности вымышленной вселенной. А вот с сюжетами как-то не очень клеится. Если убрать интересный мир, за которым хочется наблюдать, то сам по себе сюжет что здесь, что в других проектах, очень средненький. Даже в киноадаптации Азимовского "Основания" в итоге выкинули реально классный книжный сюжет и придумали свой унылый, лишь бы повесточку показать. Пожалуй, за событиями и персонажами хочется следить только в каком-нибудь Андоре (на удивление неплохо вышел, лично для меня даже интереснее Мандалорца). Вот там и без ЗВ-атрибутики было бы захватывающе. Ну и, конечно, первый сезон Westworld вполне тащил (остальные не тащили: мир всё ещё цепляет, а сюжет уже нет). С Игрой Престолов вон тоже: пока был книжный первоисточник, было интересно, а когда стали писать свой Дом Дракона, то (судя по отзывам) картинка классная, но следить скучно. Я не думаю, что это связано с каким-то кризисом идей или недостатком хороших писателей/сценаристов. Видимо, рынок и общественное мнение становятся своеобразной цензурой: то же "Основание" упростили и сделали более примитивным наверняка для расширения потенциальной аудитории. Expanse едва не закрылся из-за падения рейтингов, и был спасён практически лично Безосом, как одним из фанатов, поэтому смог до конца остаться достаточно умным. Но не знаю, увидим ли мы в наше время что-то уровня Battlestar Galactica или Firefly. #fiction

Hashtags

Резултати

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

Търсене: #functools

当前筛选 #functools清除筛选
djangoproject

@djangoproject · Post #88 · 11.07.2016 г., 11:54

https://docs.python.org/3/library/functools.html#functools.partialmethod class #functools.partialmethod(func, *args, **keywords) Return a new #partialmethod descriptor which behaves like partial except that it is designed to be used as a method definition rather than being directly callable. func must be a descriptor or a callable (objects which are both, like normal functions, are handled as descriptors). When func is a descriptor (such as a normal Python function, classmethod(), staticmethod(), abstractmethod() or another instance of partialmethod), calls to __get__ are delegated to the underlying descriptor, and an appropriate partial object returned as the result. When func is a non-descriptor callable, an appropriate bound method is created dynamically. This behaves like a normal Python function when used as a method: the self argument will be inserted as the first positional argument, even before the args and keywords supplied to the partialmethod constructor.

djangoproject

@djangoproject · Post #267 · 23.02.2017 г., 13:44

https://www.python.org/dev/peps/pep-0443/ This PEP proposes a new mechanism in the #functools standard library module that provides a simple form of generic programming known as #single_dispatch#generic functions. A generic function is composed of multiple functions implementing the same operation for different types. Which implementation should be used during a call is determined by the #dispatch algorithm. When the implementation is chosen based on the type of a single argument, this is known as #single_dispatch . #overloading

djangoproject

@djangoproject · Post #97 · 11.07.2016 г., 12:18

https://docs.python.org/3/library/asyncio-eventloop.html #Calls Most #asyncio functions don’t accept keywords. If you want to pass #keywords to your callback, use #functools.partial(). For example, #loop.#call_soon(functools.partial(print, "Hello", flush=True)) will call print("Hello", flush=True). #Note functools.partial() is better than lambda functions, because asyncio can inspect functools.partial() object to display parameters in debug mode, whereas lambda functions have a poor representation. BaseEventLoop.call_soon(callback, *args) Arrange for a callback to be called as soon as possible. The callback is called after call_soon() returns, when control returns to the event loop. This operates as a FIFO queue, callbacks are called in the order in which they are registered. Each callback will be called exactly once. Any positional arguments after the callback will be passed to the callback when it is called. An instance of asyncio.Handle is returned, which can be used to cancel the callback. Use functools.partial to pass keywords to the callback. BaseEventLoop.call_soon_threadsafe(callback, *args) Like call_soon(), but thread safe. See the concurrency and multithreading section of the documentation.