ВК проводит опросы в ленте. До этого был "Много ли рекламы?", я покрутил, и ответил, что не слишком много. Хотя на самом деле нужно спрашивать не о количестве, а о релевантности: ВК ругают за постоянные наплывы инфоцыган, и одна реклама инфоцыганина хуже, чем пять реклам IT-конференций.
А тут вот про публикации. Сначала поставил единицу по старой памяти, но, опять же, покрутил ленту, и понял, что мусора из пабликов мало. Возможно, я сам молодец, и просто так хорошо всё настроил. Что до записей друзей, то в объёме всей ленты их нормальное количество, но в абсолютных величинах мало — из 700+ людей что-то пишут человек пять, и то, раз в неделю.
Хотя вот тот же Лебедев в последнем видео рассказал, что стал активно вести ВК. Не знаю, будет ли возрождение ВК и/или текстового интернета. Кажется, поезд всё равно уже ушёл, и для того, и для другого.
#web
#Functions are first-class citizens in Python:
# They can be passed as arguments to other functions,
# returned as values from other functions, and
# assigned to variables and stored in data structures.
»> def myfunc(a, b):
... return a + b
...
»> funcs = [myfunc]
»> funcs[0]
<function myfunc at 0x107012230>
»> funcs[0](2, 3)
5
# Functions are first-class citizens in Python.
# They can be passed as arguments to other functions,
# returned as values from other #functions, and
# assigned to variables and stored in data structures.
»> def myfunc(a, b):
... return a + b
...
»> funcs = [myfunc]
»> funcs[0]
<function myfunc at 0x107012230>
»> funcs[0](2, 3)
5
https://docs.python.org/3/library/subprocess.html
The #subprocess module allows you to spawn new #processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several older #modules and #functions.
#python
https://docs.python.org/3/library/atexit.html
The #atexit module defines #functions to #register and #unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. atexit runs these functions in the reverse order in which they were registered; if you register A, B, and C, at #interpreter#termination time they will be run in the order C, B, A.