Skip to main content

什么是信仰?什么是道德?

从物质和意识的领域来理解,信仰就是一种意识,道德就是意识对物质的反作用。
从真理的概念来理解,信仰就是人们对未来世界正确的意识,道德就是在信仰的支配下正确的行为。   如果我们站在个人的角度来讲:什么是信仰?信仰就是自以为是的信念(或者真理)。道德是在信仰支配下的行为。   因为人是时代的产物,因为物质决定意识,因为每个人所处的环境不尽相同,所以,人与人的信仰是 不尽相同的。当你幼小熏陶于伊斯兰教的教化中,那么你的信仰就是真主了;当你幼小受教于基督教的感化里,那么,你的信仰不一定是上帝。只有有向神认罪悔改 让神赦免你的罪这样的经历才能是真正的基督徒,基督徒相信基督为你钉死在十字架上,他的宝血可以洗尽罪人我一切的罪;如果你幼小污染于金钱铜臭之环境,那 么,金钱就是你的上帝了。   因为人的信仰不同,所以人们的道德观也就不尽相同,所以人们的道德行为也就不尽相同,所以社会就会产生各种各样的矛盾,这就是不和谐社会的根本原因。   相反,如果我们都有一个共同的信仰,都崇尚一些共同的道德,那么,我们的世界必然会是一个和谐的世界。   物质决定意识,所以,一个脱离了生存危机的人的崇高信仰,不是天生俱来的,而是从优良的教育中学来的,是从爱的熏陶中萌发的,是在适合环境中培养出来的。崇高的信仰,来自于一个伟大的时代,来自于伟大的社会——幸福主义社会(姑且这样称呼)。   物质决定意识,所以我们的信仰应当服从于客观规律,服从于人与自然的和谐相处。因为地球是人类的摇篮,大地是人类的母亲,所以,呵护地球,保护自然就是爱我们的家,就是爱我们的母亲,所以让地球更和谐地存在应当是我们最崇高的理想,因为他关系到我们人类的千秋万代。   【定义】   信仰就是贯穿在人的世界观之中的一种意识规范.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...