Ετικέτες

Εμφάνιση αναρτήσεων με ετικέτα History. Εμφάνιση όλων των αναρτήσεων
Εμφάνιση αναρτήσεων με ετικέτα History. Εμφάνιση όλων των αναρτήσεων

Δευτέρα 3 Μαρτίου 2014

Κινέζικος Ζωδιακός Κύκλος και Εύρεση ηλικίας

Παρακάτω ο κώδικας για μια ιστοσελίδα που έχει το Κινέζικο Ζωδιακό Κύκλο

<html>
<HEAD>
<title>A simple age calculator and Chinese Zodiac Cycle </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7">
<META NAME="Author" CONTENT="Kranas Athanasios">

<script type="text/javascript">
 alert(' Οι μήνες να δίνονται στα Αγγλικά (π.χ.  jan-feb-mar-apr-may-jun-jul-aug-sep-oct-nov-dec)');
</script>

</head>
<body bgcolor=#aabbcc>

</body>
Ένας απλός υπολογισμός της <b>ηλικίας </b> σε ημέρες-milliseconds-χρόνια <br>
Και μία αναφορά στον <b>Κινέζικο Ζωδιακό Κύκλο</b>
<br>
<hr size=2 width=75% color=red align=left>
Οι μήνες να δίνονται στα Αγγλικά (π.χ.  jan-feb-mar-apr-may-jun-jul-aug-sep-oct-nov-dec)
<br>
Τα έτη και οι ημέρομηνία γέννησης προφανώς Αριθμητικά
<br>
<hr size=4 width=50% color=black align=left>
<br><br>

<script type="text/javascript">
var birthYear = parseInt(prompt ('Enter your birth year:'));
var birthMonth = prompt ('Enter the name of the month of birth:');
var birthDay = parseInt(prompt ('Enter your day of birth as an integer:'));
var milliDay = 1000*60*60*24; //Milliseconds in a day
monthAbb = 'janfebmaraprmayjunjulaugsepoctnovdec';
chineseZod = 12;
zodCycle = 1924; //Chinese Zodiac Cycle
var zodAnimal = new Array('Rat','Ox','Tiger','Rabbit','Dragon','Snake','Horse','Goat','Monkey','Rooster','Dog','Pig');
var zodAnimalD = new Array('Forthright, tenacious, intense, meticulous, charismatic, sensitive, intellectual, industrious, charming, eloquent, sociable, artistic, and shrewd.  Can be manipulative, vindictive, self-destructive, envious, mendacious, venal, obstinate, critical, over-ambitious, ruthless, intolerant, and scheming.','Dependable, ambitious, calm, methodical, born leader, patient, hardworking, conventional, steady, modest, logical, resolute, and tenacious.  Can be stubborn, dogmatic, hot-tempered, narrow-minded, materialistic, rigid, and demanding.','Unpredictable, rebellious, colorful, powerful, passionate, daring, impulsive, vigorous, stimulating, sincere, affectionate, humanitarian, and generous.  Can be restless, reckless, impatient, quick-tempered, obstinate, selfish, aggressive, and moody.','Gracious, good friend, kind, sensitive, soft-spoken, amiable, elegant, reserved, cautious, artistic, thorough, tender, self-assured, shy, astute, compassionate, lucky, and flexible.  Can be moody, detached, superficial, self-indulgent, opportunistic, and stubborn.','Magnanimous, stately, vigorous, strong, self-assured, proud, noble, direct, dignified, eccentric, intellectual, fiery, passionate, decisive, pioneering, artistic, generous, and loyal.  Can be tactless, arrogant, imperious, tyrannical, demanding, intolerant, dogmatic, violent, impetuous, and brash.','Deep thinker, wise, mystic, graceful, soft-spoken, sensual, creative, prudent, shrewd, elegant, cautious, responsible, calm, strong, constant, and purposeful.  Can be a loner, bad communicator, possessive, hedonistic, self-doubting, distrustful, mendacious, suffocating, and cold.','Cheerful, popular, quick-witted, changeable, earthy, perceptive, talkative, agile, magnetic, intelligent, astute, flexible, and open-minded.  Can be fickle, arrogant, childish, anxious, rude, gullible, and stubborn.','Righteous, sincere, sympathetic, mild-mannered, observant, artistic, intellectual, ingenious, innovative, creative, mothering, peaceful, and generous.  Can be indecisive, over-passive, worrier, pessimistic, sensitive, shy, and weak-willed.','Inventor, motivator, improviser, quick-witted, inquisitive, flexible, innovative, problem solver, self-assured, sociable, artistic, polite, dignified, competitive, objective, and factual.  Can be egotistical, vain, arrogant, selfish, reckless, snobbish, deceptive, manipulative, cunning, jealous, suspicious, and stubborn.','  Acute, neat, meticulous, organized, self-assured, decisive, conservative, critical, perfectionist, alert, zealous, practical, scientific, and responsible.  Can be over zealous and critical, puritanical, egotistical, abrasive, proud, opinionated, and gives into empty bravado.','Honest, intelligent, straightforward, loyal, sense of justice and fair play, attractive, amicable, unpretentious, sociable, open-minded, idealistic, moralistic, practical, affectionate, sensitive, and easy going.  Can be cynical, lazy, cold, judgmental, pessimistic, worrier, stubborn, and quarrelsome.','Honest, gallant, sturdy, sociable, peace-loving, patient, loyal, hard-working, trusting, sincere, calm, understanding, thoughtful, scrupulous, passionate, and intelligent.  Can be naive, over-reliant, self-indulgent, gullible, fatalistic, and materialistic.');
var monthArr = new Array(11);

monthArr [0] = "jan";
monthArr [1] = "feb";
monthArr [2] = "mar";
monthArr [3] = "apr";
monthArr [4] = "may";
monthArr [5] = "jun";
monthArr [6] = "jul";
monthArr [7] = "aug";
monthArr [8] = "sep";
monthArr [9] = "oct";
monthArr [10] = "nov";
monthArr [11] = "dec";

var monthNum = monthAbb.indexOf(birthMonth.slice(0, 3).toLowerCase()) / 3;
alert(monthNum +' month');  //for testing

// alert(' In Chinese Zodiac Cycle you are '+zodAnimal[monthNum]);
document.write("<span style=\"color: red;\">" + ' In Chinese Zodiac Cycle you are:   ' + "</span>"+ zodAnimal[monthNum] );
document.write("<br>");


// alert(' In Chinese Zodiac Cycle your animals ID is:  '+zodAnimalD[monthNum]);
document.write("<span style=\"color: red;\">" + ' In Chinese Zodiac Cycle your animals ID is:    ' + "</span>"+ zodAnimalD[monthNum] );
document.write("<br>"+"<br>");

var d = new Date (birthYear, monthNum, birthDay);
// alert(d);
var dCurrent = new Date();
dCurrent = dCurrent.getTime(); //Grabs the time of the current date in milliseconds.
var dTotal = dCurrent - d;
// alert(dTotal + '  age in milliseconts');
document.write("<span style=\"color: red;\">" + '  Age in milliseconts: ' + "</span>" + dTotal);
document.write("<br>");

dTotal = dTotal / milliDay;
dTotal = Math.floor(dTotal); //7193
// alert(dTotal + ' After division' + '  age in days');
document.write("<span style=\"color: red;\">" + ' After division  age in days:  ' + "</span>"+ dTotal );
document.write("<br>");

dTotal = dTotal / 365.25;
dTotal = Math.floor(dTotal);
// alert(dTotal + ' is how old you are!');
document.write("<span style=\"color: green;\">" + dTotal + '  is how old you are! '.bold()+ "</span>");
document.write("<br>");

dTotal = birthYear - zodCycle;
dTotal = dTotal % chineseZod;
// alert(dTotal);
// alert(d);
var testS;
testS = dCurrent - d;
testS = testS / milliDay;
testS = testS * 365.25;
document.write("<span style=\"color: red;\">" + 'Your birthday is:    ' + "</span>"+ d.toDateString());
// alert(testS);
</script>
<br>

<hr>
Back to my <img border="0" src="img/house.gif" width="25" height="25"><a href="index.htm"> home page</a>
Μπορείτε να επιστρέψετε στην αρχική σελίδα




</html>

Τετάρτη 6 Ιουλίου 2011

Υπατία η Αλεξανδρινή – Η μοναδική γυναίκα φιλόσοφος κι επιστήμονας της αρχαιότητας

Η Υπατία, η φιλόσοφος και μαθηματικός της Αλεξανδρείας δεν είναι γνωστή -όσο ίσως θα έπρεπε- στη χώρα μας. Μια προσωπικότητα ολοκληρωμένη, Από τις σπάνιες γυναικείες μορφές, που η ενασχόλησή της με τις κατ’ εξοχήν για την εποχή, ανδρικές επιστήμες, έπαιξε σημαντικό ρόλο στην πνευματική κληρονομιά της ύστερης αρχαιότητας… Αυτή η πρώτη Ελληνίδα που θέλησε ν’ ακολουθήσει το δρόμο της ανεξαρτησίας ενάντια στις προκαταλήψεις, αρνούμενη υποταγή σε ένα ανδροκρατούμενο κατεστημένο και στο θρησκευτικό φανατισμό, δέχτηκε την ευτέλεια και το διωγμό. Για δεκαπέντε αιώνες η Υπατία θεωρείται ότι ήταν η μόνη γυναίκα επιστήμονας στην ιστορία. Ακόμα και σήμερα συχνά είναι η μόνη γυναίκα που αναφέρεται στην ιστορία των μαθηματικών και της αστρονομίας. Αυτή η ευγενής γυναίκα ξεχωρίζει στις σελίδες της ιστορίας σαν η μεγαλύτερη από τους μάρτυρες παγανιστές.
Η ζωή της
Όταν γεννήθηκε η Υπατία γεννήθηκε την 25η Νοεμβρίου του 364 μ.Χ.