Vileynoth

----------



Herzlich Willkommen bei den Night Dreamers.Wir hoffen euch gefällt das Forum und sind immer froh über neue Mitglieder.

----------



RPG NEW´s



----------



Neue Mitglieder die auch aktiv mitschreiben können. Aber auch spass an schreiben haben ^^



/* * Schnee-Script * @author Oliver Schlöbe <scripts@schloebe.de> * @example http://www.schloebe.de/scriptdemos/schloebe_snow/snowtest.html * @link http://www.schloebe.de/scripts/schnee-script/ * @since 111112 */ var schloebesnow = { no: 15, // Anzahl der Schneeflocken speed: 20, // "Schnei-Geschwindigkeit"; je kleiner die Zahl, um so schneller fallen die Flocken snowflake: "http://www.schloebe.de/wp-content/themes/schloebe_de/images/snow/snow.gif", // Bild der Schneeflocke, beliebig /*********************************/ /** Ab hier nichts mehr ändern! **/ /*********************************/ ns4up: (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4") ? 1 : 0, // Browser Tester ie4up: (document.all) ? 1 : 0, ns6up: (document.getElementById&&!document.all) ? 1 : 0, i: 0, dx: new Array(), xp: new Array(), yp: new Array(), am: new Array(), stx: new Array(), sty: new Array(), doc_width: 800, doc_height: 800, let_it_snow: function() { if( this.ns4up || this.ns6up ) { // Bildschirm-Auflösung holen, Netscape-Funktion this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; } else if( this.ie4up ) { // Bildschirm-Auflösung holen, Internet Explorer-Funktion this.doc_width = document.body.clientWidth; this.doc_height = document.body.clientHeight; } this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; for( this.i = 0; this.i < this.no; ++ this.i ) { this.dx[this.i] = 0; // Koordinaten-Variable setzen this.xp[this.i] = Math.random()*(this.doc_width-50); // Position-Variable setzen this.yp[this.i] = Math.random()*this.doc_height; this.am[this.i] = Math.random()*20; // Amplituden-Variable setzten this.stx[this.i] = 0.02 + Math.random()/10; // Variable für Schrittweite setzen this.sty[this.i] = 0.7 + Math.random(); // Variable für Schrittweite setzen if( this.ns4up ) { if (this.i == 0) { document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></layer>"); } else { document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></layer>"); } } else if( this.ie4up || this.ns6up ) { if (this.i == 0) { document.write("<div id=\"dot"+ this.i +"\" style=\"position: "); document.write("absolute; z-index: "+ this.i +"; visibility: "); document.write("visible; top: 15px; left: 15px;\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></div>"); } else { document.write("<div id=\"dot"+ this.i +"\" style=\"position: "); document.write("absolute; z-index: "+ this.i +"; visibility: "); document.write("visible; top: 15px; left: 15px;\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></div>"); } } } if( this.ns4up ) { this.snowNS(); } else if( this.ie4up ) { this.snowIE(); }else if( this.ns6up ) { this.snowNS6(); } }, /* * Haupt-Animations-Funktion für Netscape */ snowNS: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.layers["dot"+this.i].top = this.yp[this.i]; document.layers["dot"+this.i].left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]); } setTimeout("schloebesnow.snowNS()", this.speed); }, /* * Haupt-Animations-Funktion für Internet Explorer */ snowIE: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = document.body.clientWidth; this.doc_height = document.body.clientHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.all["dot"+this.i].style.pixelTop = this.yp[this.i]; document.all["dot"+this.i].style.pixelLeft = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]); } setTimeout("schloebesnow.snowIE()", this.speed); }, /* * Haupt-Animations-Funktion für Netscape6 und Mozilla */ snowNS6: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.getElementById("dot"+this.i).style.top = this.yp[this.i]+"px"; document.getElementById("dot"+this.i).style.left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i])+"px"; } setTimeout("schloebesnow.snowNS6()", this.speed); } } schloebesnow.let_it_snow();
#1

existing knowledge could not provide the answers

in Bewerbung 08.11.2019 06:45
von acdbke | 171 Beiträge

Introduction


Entrepreneurship demands that a person is willing to take risks Neil Walker Marlins Jersey , venture and achieve results. This implies amongst others that the person should be willing to dare to do and stake his or her future on something. Often, this required output behaviour is inhibited by the educational approach followed in the teaching and learning environments to which people are exposed.


Purpose


The purpose of this article is to propose some educational principles that if adhered to, may promote and sustain entrepreneurial behaviour in a knowledge driven economy.


Principles


Principle 1: Introduce learning and teaching approaches that would stimulate the curiosity of students to discover essentials for themselves for the sake of discovery itself.


This demands that educators should rather try to play a minimum role in education rather than a maximum role. Rather, equipment and learning design should be carefully planned and structured to allow students to discover essential learning principles for themselves as well as the applications thereof. This should be done in the absence of specified learning outcomes specified by curriculums. Specified learning outcomes creates a situation in which it is assumed that the present expertise knows best what is required to succeed in the knowledge economy and while it may be partially true Starlin Castro Marlins Jersey , the negative effects of installing inhibiting neuroses in the learner, may outweigh the advantages thereof. Instead, the educator should allow learners through education design to discover essential building blocks and fulcrums of the discipline through a process of self-discovery. Allowing learners the opportunity to discover for themselves, opens the door for discovering what you as learner wants to be and what you would like to understand and articulate. Through a process of self-directed discovery and determining one's own discourse Jose Fernandez Marlins Jersey , the learner focuses on what he could be instead of becoming dissatisfied by not becoming what other successful people became. To become a fulfilled and entrepreneurial person, the learner needs to become what he valued and want to keep.


But, this can only be achieved if learning is not considered to be a mechanical process. Rather, it should be approach following an adventourous and autonomous approach. Marie Curie Pedro Alvarez Youth Jersey , Nobel Laureate, expressed it as follows: ?I am among those who think that science has great beauty. A scientist in his laboratory is not only a technician, he is also a child placed before natural phenomena, which impress him like a fairy tale. We should not allow it to be believed that all scientific progress can be reduced to mechanism ? Neither do I believe that the spirit of adventure runs any risk of disappearing in our world? (Goldsmith Jose Urena Youth Jersey ,2005).


Such an approach will develop cognitive reasoning abilities applicable to various situations, complexity levels and disciplinary foundations.


Too stimulate curiosity questions posed to learners questions should be asked as specific as possible. Vagueness runs the risk may contribute to the destruction of curiosity in the learner. By being specific in questioning and probing, the chances increase for concrete and specific discovery. In seeking answers, the student should experience as much as possible autonomy and the enjoyment of discovering essentials and truths as unaided as possible.


Principle 2: Continuous experimentation with learning and discoveries


Once new fundamentals were discovered Sergio Romo Youth Jersey , new theories proposed and opportunities recognized, it is important to learn and rediscover by continuing with the process of experimentation in order to validate self-discovery and to strengthen confidence in what was discovered. It is further essential that the learner learn more from ?going? experiences and broadening the experience in more complex and real situations. Creating an intellectual climate in which experimentation could take place may foster the development of stable-minded individuals and the intellectual growth of learners.


Principle 3: Transfer of knowledge across disciplinary boundaries


As different academic disciplines, professional codes, and academic language act as boundaries that conflict with the need to integrate information a need exist to amalgamate knowledge and allowing educators to play ?bridging roles? through articulation of common organising principles Jorge Alfaro Youth Jersey , values, reporting and control mechanisms This will enable educators in entrepreneurial education to link otherwise unconnected disciplines to facilitate the development of unique knowledge systems and increase access to special knowledge and opportunities. Due to the fact that not all learning can happens in a linear fashion or without structural constrains, it make sense to present a subject or two relating to science which may act as a catalyst to temper the minds of learners with regards to phenomena and its relationships with nature.


Principle 4: Educators needs to free themselves from inhibiting influences and also enter into a discovery learning mode.


This principle demands that all educators should exposed themselves to critical self-reflection, and if required obtain expert advice to elucidate on components in which improvements are required. The educator should also study as much as possible literature as possible Sandy Alcantara Youth Jersey , obtain exposure to as many technologies as possible, participate in discussion forums, debate observations and force him or herself to postulate ideas of his or her own as precisely and exactly as possible in cases where existing knowledge could not provide the answers or explain practical situations well enough. The latter component is considered a fundamental to build critical thinking and stimulate creative and innovative thinking.


In order to remain in control of the learning process it is essential that the responses of the learners are captured, assessed and that t

nach oben springen

Hier gehts zur Topliste Sie heulen nach dir!
Besucher
0 Mitglieder und 6 Gäste sind Online

Wir begrüßen unser neuestes Mitglied: bill74
Forum Statistiken
Das Forum hat 949 Themen und 1737 Beiträge.

Heute waren 0 Mitglieder Online:


Xobor Einfach ein eigenes Xobor Forum erstellen