Leadership Enneagram Flashcards

1
Q

we need leaders who can rise above . . .

A

. . . the narrow focus of their own ego concerns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

the first step toward growing far beyond our self-imposed limitations

A

becoming aware of our unconscious habits and motivations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

when defending a positive sense of your image is your top priority

A

all of your attention and energy gets focused on protecting your self-image or ego

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

most vital is not to maintain constant superhuman enlightenment, but

A

the ability to be honest and observe whether you are acting from a closed-minded, defensive position

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

there are multiple

A

stories that are as valid as your story

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

personality is the sum total of

A

strategies we develop to help us find ways to calm our anxieties, locate an inner sense of well-being, and have some feeling of control in the world

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

as you get more practiced at observing yourself

A

you can eventually expand the repertoire of strategies you use to cope and function in the world

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

an advantage of studying the Enneagram with others is

A

it provides a neutral language for communicating about yourself and hearing about others in a way that discourages judgment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

see if you can “catch yourself in the act” of living in an unconscious behavior

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

simply reflect on your behaviors without judgment, in terms of

A

whether they are helping you or hurting you

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

we tend to believe that others

A

view the world the same way we do

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

the Enneagram is about growth and change, never about

A

justifying unconscious habits as a way of avoiding doing the work you need to do on yourself to grow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

our automatic habits and behaviors fixate

A

us in certain ways of seeing and reacting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

name for a 4x5

A

The Bohemian

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

healthy 4s move toward

A

being more objective and principled, like One

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

When moving in their Direction of Disintegration (stress)

A

aloof Fours suddenly become over-involved and clinging at Two

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

basic fear of 4s

A

lacking a unique, significant identity - that they would be worthless and unlovable if they were average

18
Q

basic fear of 5s

A

being helpless and inadequate, and overwhelmed - therefore they must learn as much as they can and master as much as they can, in order to reassure themselves that they are competent and capable

19
Q

basic fear of 9s

A

the fear of loss and separation from others

20
Q

basic fear of 7s

A

the fear of deprivation and pain

21
Q

basic fear of 8s

A

the fear of being harmed or controlled by others

22
Q

basic fear of 9s

A

the fear of being without support or guidance

23
Q

basic fear of 3s

A

the fear of being unaccomplished and worthless

24
Q

basic fear of 2s

A

the fear of being unloved or unwanted by others

25
Q

basic fear of 1s

A

the fear of being evil or corrupt

26
Q

usually, these decorators work in pair with template reference variables. A template reference variable is

A

simply a named reference to a DOM element within a template

27
Q

referring in JS to a template reference variable (example)

A

@ViewChild(“tref”, {read: ElementRef}) tref: ElementRef;

28
Q

ViewChild decorator syntax

A

@ViewChild([reference from template], {read: [reference type]});

29
Q

what is the second parameter to ViewChild

A

if it’s a simple html element like span, angular returns ElementRef. If it’s a template element, it returns TemplateRef. Some references, like ViewContainerRef cannot be inferred and have to be asked for specifically in read parameter

30
Q

both component and directive classes can obtain an instance of ElementRef associated with their host element through the DI mechanism

A

31
Q

when used by components, the ViewChild decorator is used most often to

A

get a reference to a DOM element in their view (template)

32
Q

with the vanilla template tag, a browser parses html and creates DOM tree but not renders it. It then can be accessed through the content property

A

insertAfter(container, tpl.content);

33
Q

this will let you get to the template itself

A

@ViewChild(“tpl”) tpl: TemplateRef;

34
Q

TemplateRef is simple . . .

A

it has one method createEmbeddedView. However, this method is very useful since it allows us to create a view and return a reference to it as ViewRef

35
Q

Angular philosophy encourages developers to see UI as a composition of Views, not as a tree of standalone html tags. Angular supports two types of views . . .

A

Embedded Views, which are linked to a Template;

Host Views, which are linked to a Component

36
Q

how to instantiate a template view

A

let view = this.tpl.createEmbeddedView(null);

37
Q

how to instantiate a host view

A

regular dynamic instantiation, or can use ComponentFactoryResolver -

constructor(private injector: Injector,
            private r: ComponentFactoryResolver) {
    let factory = this.r.resolveComponentFactory(ColorComponent);
    let componentRef = factory.create(injector);
    let view = componentRef.hostView;
}
38
Q

each component is bound to a particular instance of an

A

injector

39
Q

don’t forget that components that are instantiated dynamically must be added to

A

EntryComponents of a module or hosting component

40
Q

Usually, a good candidate to mark a place where a ViewContainer should be created is

A

ng-container element. It’s rendered as a comment and so it doesn’t introduce redundant html elements into the DOM

41
Q

ViewContainer provides a convenient API for manipulating the views

A

clear() : void
insert(viewRef: ViewRef, index?: number) : ViewRef
get(index: number) : ViewRef
indexOf(viewRef: ViewRef) : number
detach(index?: number) : ViewRef
move(viewRef: ViewRef, currentIndex: number) : ViewRef

42
Q

ViewContainerRef can only be injected to components or directives, but not to

A

services. What you can do is to inject ViewContainerRef and a service to a component and then in the constructor pass the ViewContainerRef to the service. Every service or component that injects this service can access the ViewContainerRef it holds