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

TGINSIGHT SIMILAR POSTS

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

Изходен канал @clockstackwheels · Post #948 · 19.01

Вдогонку к Миру Полудня послушал "Попытку к бегству". Спойлерить не буду, но Стругацкие здесь поднимают идею, которую позже развивают в "Трудно быть богом", и которая несколько в другом виде встречается, например, в "Этическом инженере" Гарри Гаррисона. И вот на этой теме, как мне кажется, жёстко ломается гуманизм и вообще современная классическая гуманистическая идеология, сейчас поясню. В теории радикальный гуманизм очень устойчив к контраргументам, потому что все вменяемые люди хотят жить и хотят, чтобы были живы их близкие. Идея, которая ставит во главу угла ценность человеческой жизни, проста, понятна и выглядит той самой максимой, к которой должно стремиться любое общество. Из-за этого другие идеи, являющиеся производными от неё, сложно отбивать какой-либо риторикой. Например, представление о полной недопустимости физического насилия, кроме как в ответ на другое физическое насилие — на уровне практического понимания работы общества мы знаем, что эта идея нежизнеспособна, но формально спорить с ней означает атаковать частичку гуманизма, который в некотором смысле непоколебим. Вот и герои "Попытки к бегству" добрую половину произведения мучаются, тупят и совершают ошибки из-за своего гуманизма, а в какой-то момент даже начинают сильно раздражать этим (уверен, именно такова была задумка авторов). Однако, гуманизм не может предложить вообще никакое нормальное решение в следующей ситуации (и об этом вообще всё произведение): вы развитая гуманистическая цивилизация натыкаетесь на неразвитую варварскую, в которой часть людей (условно, рабы) жесточайше страдает и умирает из-за другой части людей (условно, господ). Что делать? Оставить всё как есть нельзя — рабы же страдают и умирают. Убить всех господ тоже нельзя — негуманно. Забрать рабов с планеты бессмысленно — господа поделятся на новых господ и новых рабов. Аналогично если забрать господ. Каким-то образом изменить сознание господ, чтобы они отказались от рабов — это нарушение свободы воли, эквивалентно, как было в "Трудно быть богом", убийству одного человечества и созданию на его месте другого. В общем, что бы мы ни придумали, нам неизбежно придётся отойти от понятия ценности индивидуальной человеческой жизни и начать мыслить такими категориями, как стадии развития общества в целом, которые оно должно сначала пройти, чтобы достичь какого-то уровня. И выходит своего рода парадокс: мы не можем применять гуманизм целиком до тех пор, пока наше общество не стало целиком гуманистическим. А оно не стало, пока мы не применяем гуманизм целиком. Вот вам и поломка модели. #fiction#life

Резултати

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

Търсене: #classmethod

当前筛选 #classmethod清除筛选
djangoproject

@djangoproject · Post #593 · 13.04.2018 г., 19:48

@#classmethod vs @#staticmethod vs "plain" methods What's the difference? class MyClass: def method(self): """ Instance methods need a class instance and can access the instance through self. """ return 'instance method called', self @classmethod def classmethod(cls): """ Class methods don't need a class instance. They can't access the instance (self) but they have access to the class itself via cls. """ return 'class method called', cls @staticmethod def staticmethod(): """ Static methods don't have access to cls or self. They work like regular functions but belong to the class's namespace. """ return 'static method called' # All methods types can be # called on a class instance: »> obj = MyClass() »> obj.method() ('instance method called', <MyClass instance at 0x1019381b8>) »> obj.classmethod() ('class method called', <class MyClass at 0x101a2f4c8>) »> obj.staticmethod() 'static method called' # Calling instance methods fails # if we only have the class object: »> MyClass.classmethod() ('class method called', <class MyClass at 0x101a2f4c8>) »> MyClass.staticmethod() 'static method called' »> MyClass.method() TypeError: "unbound method method() must be called with MyClass " "instance as first argument (got nothing instead)"

djangoproject

@djangoproject · Post #385 · 15.07.2017 г., 16:17

# @classmethod vs @staticmethod vs "plain" methods # What's the difference? class MyClass: def method(self): """ Instance methods need a class instance and can access the instance through self. """ return 'instance method called', self @classmethod def classmethod(cls): """ Class methods don't need a class instance. They can't access the instance (self) but they have access to the class itself via cls. """ return 'class method called', cls @staticmethod def staticmethod(): """ Static methods don't have access to cls or self. They work like regular functions but belong to the class's namespace. """ return 'static method called' # All methods types can be # called on a class instance: »> obj = MyClass() »> obj.method() ('instance method called', <MyClass instance at 0x1019381b8>) »> obj.classmethod() ('class method called', <class MyClass at 0x101a2f4c8>) »> obj.staticmethod() 'static method called' # Calling instance methods fails # if we only have the class object: »> MyClass.classmethod() ('class method called', <class MyClass at 0x101a2f4c8>) »> MyClass.staticmethod() 'static method called' »> MyClass.method() TypeError: "unbound method method() must be called with MyClass " "instance as first argument (got nothing instead)" #classmethod#staticmethod

djangoproject

@djangoproject · Post #426 · 28.08.2017 г., 20:10

use #super () in #classmethod: # Compare your code # adjusted to use _ _ name _ _ to illustrate the difference: »> class SimpleGenerator(object): ... @classmethod ... def get_description(cls): ... return cls. _ _ name _ _ ... # without super() »> class AdvancedGenerator(SimpleGenerator): ... @classmethod ... def get_description(cls): ... desc = SimpleGenerator.get_description() ... return desc + ' Advanced(tm)' ... »> AdvancedGenerator.get_description() 'SimpleGenerator Advanced(tm)' # and using super(): »> class AdvancedGenerator(SimpleGenerator): ... @classmethod ... def get_description(cls): ... desc = super(AdvancedGenerator, cls).get_description() ... return desc + ' Advanced(tm)' ... »> AdvancedGenerator.get_description() 'AdvancedGenerator Advanced(tm)'

djangoproject

@djangoproject · Post #513 · 30.11.2017 г., 22:00

#AI#Artificial_Intelligence #AJAX #aiohttp #Anaconda #AngularJS #API #Atom #AWS #asyncio (#Asynchronous) #audio #automated_testing #automation #atexit #BeeWare #Big_Data #bitcoin #blockchain #Bluemix #Brython #button #Celery #client #class #classmethod #concurrency #Coroutine #cron #CSS #curl #data_analysis #data_mining #data_processing #database #Deep_Learning#deep_learning #Debian #decorator #deploy #dict #dispatch #django #django_cms #Django_REST_Framework #dropdownbox #Docker #event #Firefox #Flask #form #functions #Generator #GeoDjango #git #Google #GPU #GUI #Gym #host #HTML #httplib #learn #Image_processing #intelligence #input #Instagram #IOT #iPython #Jupyter #lambda #learn #License #Linux #lists #machine_learning #Magenta #map #Matplotlib #Metaprogramming #Micro_services #Micropython #mind #monitoring #MongoDB #modules #Mozilla #Multipart #multi_touch_apps #multiprocessing #Nodes #NoSQL #numeric_computation #numerical #NumPy #network #neural_network #OAuth #object_serialization #OCR #overloading #package #parallel #pipeline #protocols #PostGIS #pyAudioAnalysis #pycon #Pyflakes #PyInstaller #PyPI #PyQt #PySide #PyTorch #pytest #python #Pyvideo_archives #Qt #Raspberry_Pi #React #Redis #random #request #Regular_Expressions (#re) #REST #RSS #satellite #scikit_learn #SciPy #scrapy #searching #selectbox #Selenium #serialization #server #sessions #single_responsibility_principle #socket #Spark #str #submit #task #telegram #template #TensorFlow #test #text_boxes #text #tuples #unicode #Universe #Unix #unit_test #urllib #upload #uWSGI #Web #WSGI