Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
I'd like to call this guy, vim-guy! since 2014 that I know! he has been using vim and never, not a single time, used a presentation of anykind! he live codes every single talk! and I love it!
Metaclasses 2:55Decorators 29:15Generators 43:05Context Managers 1:00:40
By far, the best python talk.
he is really teaching the first principles behind the enomous detailes!
Hillarious lecturer!
+1 for the thinkpad (x230?)
My approach to this problem would be class Base: def foo(self): return self.bar() # noqa def __init_subclass__(cls, **kwargs): assert hasattr(cls, "bar"), "bar() method missing"
I'd like to call this guy, vim-guy! since 2014 that I know! he has been using vim and never, not a single time, used a presentation of anykind! he live codes every single talk!
and I love it!
Metaclasses 2:55
Decorators 29:15
Generators 43:05
Context Managers 1:00:40
By far, the best python talk.
he is really teaching the first principles behind the enomous detailes!
Hillarious lecturer!
+1 for the thinkpad (x230?)
My approach to this problem would be
class Base:
def foo(self):
return self.bar() # noqa
def __init_subclass__(cls, **kwargs):
assert hasattr(cls, "bar"), "bar() method missing"