Worldview in Context
Worldview in Context
Figures 1 and 2 provide a basis for a deeper understanding of worldview. The sensing, thinking, knowing, acting self exists in the milieu of a world (more accurately, a universe) of matter, energy, information and other sensing, thinking, knowing, acting selves (Figure 1). At the heart of one's knowledge is one's worldview or Weltanschauung.
Figure 1. The self and its worldview in the context of the world.
To sense is to see, hear, taste, and feel stimuli from the world and from the self (Figure 2). To act is to orient sensory organs (including eyes and ears), to move body parts, to manipulate external objects, and to communicate by speaking, writing, and other actions. Although we humans are not unique in our ability to sense and to act on our environment, it is in us, so far as we know, that thought as the basis for action is most highly developed.
Thought is a process, a sequence of mental states or events, in which sensed stimuli and existing knowledge are transformed to new or modified knowledge, some instances of which are intents that trigger motor control signals that command our muscles to action. While some actions are merely the result of sensorimotor reflexes, responses to emotions like fear or anger, or automatized patterns developed through habit, we at least like to believe that most of our actions are more reflective, being based on "higher" forms of thought.
For example, there is in most sensory experience an element of perception, in which sensed stimuli are first recognized and interpreted in light of existing knowledge (learned patterns) before they are committed to action. And to bring thought to bear on some stimuli or knowledge rather than others requires a focusing of attention, an allocation of limited mental resources to some mental activities and away from others. But it is in our reason -- and specialized forms of reason like problem solving, judging, and deciding -- that we take the most pride.
Reasoning is focused, goal-directed thought that starts from perceptions and existing knowledge and works toward new and valued knowledge. Reasoning therefore begins with knowledge and ends with knowledge, the opinions, beliefs, and certainties that one holds. By inductive reasoning (which is idealized in empirical science), one works from perceptions and other particular knowledge to more general knowledge. By deduction (exemplified by mathematical logic) further generalizations and, more practically, particular knowledge, is produced. Over a lifetime, reason builds up not only particular opinions and beliefs, but also a body of more and more basic, general, and fundamental knowledge on which the particular beliefs, and the intents for external acts, are based. This core of fundamental knowledge, the worldview, is not only the basis for the deductive reasoning that ultimately leads to action, but also is the foundation for all reasoning, providing the standards of value to establish the cognitive goals towards which reason works and to select the rules by which reason operates. The large red arrows in Figures 1 and 2 symbolize the absolutely crucial role that the worldview plays in one's behavior.
Figure 2. The worldview in the context of the self.
To put this more concisely, and consistently with the definitions considered above,
A worldview is the set of beliefs about fundamental aspects of Reality that ground and influence all one's perceiving, thinking, knowing, and doing.
One's worldview is also referred to as one's philosophy, philosophy of life, mindset, outlook on life, formula for life, ideology, faith, or even religion.
http://web.engr.oregonstate.edu/~funkk/Personal/worldview.html
Worldview in Context的更多相关文章
- Javascript 的执行环境(execution context)和作用域(scope)及垃圾回收
执行环境有全局执行环境和函数执行环境之分,每次进入一个新执行环境,都会创建一个搜索变量和函数的作用域链.函数的局部环境不仅有权访问函数作用于中的变量,而且可以访问其外部环境,直到全局环境.全局执行环境 ...
- spring源码分析之<context:property-placeholder/>和<property-override/>
在一个spring xml配置文件中,NamespaceHandler是DefaultBeanDefinitionDocumentReader用来处理自定义命名空间的基础接口.其层次结构如下: < ...
- spring源码分析之context
重点类: 1.ApplicationContext是核心接口,它为一个应用提供了环境配置.当应用在运行时ApplicationContext是只读的,但你可以在该接口的实现中来支持reload功能. ...
- CSS——关于z-index及层叠上下文(stacking context)
以下内容根据CSS规范翻译. z-index 'z-index'Value: auto | <integer> | inheritInitial: autoApplies to: posi ...
- Tomcat启动报错org.springframework.web.context.ContextLoaderListener类配置错误——SHH框架
SHH框架工程,Tomcat启动报错org.springframework.web.context.ContextLoaderListener类配置错误 1.查看配置文件web.xml中是否配置.or ...
- mono for android Listview 里面按钮 view Button click 注册方法 并且传值给其他Activity 主要是context
需求:为Listview的Item里面的按钮Button添加一个事件,单击按钮时通过事件传值并跳转到新的页面. 环境:mono 效果: 布局代码 主布局 <?xml version=" ...
- Javascript的“上下文”(context)
一:JavaScript中的“上下文“指的是什么 百科中这样定义: 上下文是从英文context翻译过来,指的是一种环境. 在软件工程中,上下文是一种属性的有序序列,它们为驻留在环境内的对象定义环境. ...
- spring源码分析之<context:component-scan/>vs<annotation-config/>
1.<context:annotation-config/> xsd中说明: <xsd:element name="annotation-config"> ...
- 【Android】 context.getSystemService()浅析
同事在进行code review的时候问到我context中的getSystemService方法在哪实现的,他看到了一个ClipBoardManager来进行剪切板存储数据的工具方法中用到了cont ...
随机推荐
- 自定义标签&JSON数据处理
最近几日去参加一些面试,多多少少有一些收获. 现将遇到的一些面试题,做一下分析和总结. 1.使用原生JS,不能使用递归,查找dom中所有以“<com-”开头的自定义标签tagName. < ...
- JavaSE 笔试题: 自增变量
JavaSE 笔试题 自增变量 public class Test { public static void main(String[] args) { int i = 1; i = i++; int ...
- inode是什么?
理解inode,要从文件储存说起. 文件储存在硬盘上,硬盘的最小存储单位叫做"扇区"(Sector).每个扇区储存512字节(相当于0.5KB). 操作系统读取硬盘的时候,不会一个 ...
- TP5接口开发之异常处理接管
前几天在开发的时候用到了第三方的扩展包,使用过程中第三方扩展包抛出了异常 因为这边是接口开发,需要返回错误代码以及提示信息等,所以就需要接管异常处理. 此文章只做笔记,有不对或不详细的地方欢迎大家留言 ...
- 关于mysql的null相关查询的一些坑
我们先看一下效果,然后在解释,示例如下: mysql> create table test5 (a int not null,b int,c varchar(10)); Query OK, 0 ...
- 「UNR#1」奇怪的线段树
「UNR#1」奇怪的线段树 一道好题,感觉解法非常自然. 首先我们只需要考虑一次染色最下面被包含的那些区间,因为把无解判掉以后只要染了一个节点,它的祖先也一定被染了.然后发现一次染色最下面的那些区间一 ...
- go中&^(按位置零)符号的含义
go中有一个 &^ 的运算符,它代表的是按位置零 首先来看下几个输出例子: i := 1 &^ 0 fmt.Println("1 &^ 0 -- ",i) ...
- java中的Date类
一.Date类简介 日期类主要包括Date类与Calendar类,这一节我们先介绍Date类, Date 表示特定的瞬间,精确到毫秒.Date类用于表示日期和时间,在计算机中的表示和我们现实世界使用差 ...
- 创建一个dotnetcore的SPA模板项目
MPA和SPA 对比 dotnet new --install Microsoft.AspNetCore.SpaTemplates::* 我这边用的是vue dotnet new vue dotnet ...
- chrome安装插件
看了很多的解决办法,也试了很多种,有的有点用,有的只能用一次,最后成功了,在这里总结一下 一.首先下载 很多人下载的都ctx格式的,然后拖进去安装,用了一次就崩溃了,主要还是安装方式不对,一般需要将下 ...