레이블이 언어인 게시물을 표시합니다. 모든 게시물 표시
레이블이 언어인 게시물을 표시합니다. 모든 게시물 표시

2024년 12월 26일 목요일

소포클레스 오이디푸스왕 중

 

 

source: https://www.translatum.gr/forum/index.php?topic=33648.0

 

 

μὴ φῦναι τὸν ἅπαντα νικᾷ λόγον: τὸ δ᾽, ἐπεὶ φανῇ, βῆναι κεῖθεν ὅθεν περ ἥκει, πολὺ δεύτερον, ὡς τάχιστα. ὡς εὖτ᾽ ἂν τὸ νέον παρῇ κούφας ἀφροσύνας φέρον, τίς πλαγὰ πολύμοχθος ἔξω; τίς οὐ καμάτων ἔνι; φθόνος, στάσεις, ἔρις, μάχαι καὶ φόνοι: τό τε κατάμεμπτον ἐπιλέλογχε πύματον ἀκρατὲς ἀπροσόμιλον γῆρας ἄφιλον, ἵνα πρόπαντα κακὰ κακῶν ξυνοικεῖ.


Not to be born is, beyond all estimation, best; but when a man has seen the light of day, this is next best by far, that with utmost speed he should go back from where he came. For when he has seen youth go by, with its easy merry-making, what hard affliction is foreign to him, what suffering does he not know? Envy, factions, strife, battles, and murders. Last of all falls to his lot old age, blamed, weak, unsociable, friendless, wherein dwells every misery among miseries.

2023년 11월 3일 금요일

IC, XC

 

Christogram (그리스도를 뜻하는 요약어)

 In Eastern Christianity, the most widely used Christogram is a four-letter abbreviation,

ICXC — a traditional abbreviation of the Greek words for "Jesus Christ" (i.e., the first and last letters of each of the words ΙΗΣΟΥΣ ΧΡΙΣΤΟΣ — written "IHCOYC XPICTOC" with a transliteration of the lunate sigma common in medieval Greek as "C"). On icons, this Christogram may be split:

"IC" on the left of the image and "XC" on the right, most often with a bar above the letters (see titlos), indicating that it is a sacred name. It is sometimes rendered as

 "ICXC NIKA", meaning "Jesus Christ Conquers."

 

 출처: https://m.blog.naver.com/vivamd/10113150417

2022년 6월 24일 금요일

明文

 

Ἡ τοῦ σοφοῦ ψυχή ἥσυχος ἐστίν ἐν ταῖς τοῦ βίου συμφοραῖς .

 

출처: a new introduction to greek 

2022년 3월 18일 금요일

無題

 in nomine patris et filii et spiritus sancti
εἰς τὸ ὄνομα τοῦ πατρὸς καὶ τοῦ υἱοῦ καὶ τοῦ ἁγίου πνεύματος

 

출처: google

2022년 1월 12일 수요일

펌) ubuntu java install

 https://davelogs.tistory.com/71  


$ sudo apt-get update
$ sudo apt-get install openjdk-11-jdk 
$ javac -version
 
$ sudo gedit ~/.bashrc
# ~/.bashrc 파일에 설정 추가
# JAVA_HOME settings
export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which java))))
export PATH=$PATH:$JAVA_HOME/bin

# 현재 실행중인 shell에 즉시 적용 (새로 실행한 shell에서는 필요없음)
$ source ~/.bashrc

# 설정 확인
$ echo $JAVA_HOME
/usr/lib/jvm/java-11-openjdk-am64
 
# 설치된 JAVA 삭제
$ sudo apt-get purge openjdk*
      

2021년 12월 31일 금요일

2021년 12월 7일 화요일

無題

 ἀποστελεῖ ὁ υἱὸς τοῦ ἀνθρώπου τοὺς ἀγγέλους αὐτοῦ

 

: koine greek wiki

2020년 8월 29일 토요일

T.S.ELIOT '荒蕪地'

 

Nam Sibyllam quidem Cumis ego ipse oculis meis
 ( for  Σίβυλλα some ancient greek town I my eyes looked )
vidi in ampulla pendere, et cum illi pueri dicerent:
( holding pot, with that boys said )
  Σίβυλλα τί θέλεις; respondebat illa: ἀποθανεῖν θέλω.”
 Sibylla ( what you want: and I want died )
         For Ezra Pound
         il miglior fabbro (this 우월한[이태리어] story ) 


2020년 2월 20일 목요일

ancient greek dic

http://www.laparola.net/

https://www.studylight.org/lexicons/greek/436.html

https://lexicon.katabiblon.com/

https://logeion.uchicago.edu/lexidium

https://www.lexilogos.com/english/greek_ancient_dictionary.htm

https://hellas.bab2min.pe.kr/hk?l=ko

2011년 4월 8일 금요일

Python 으로 만든 야구게임


import random

a = [];

for i in range(1,10):
a.append(i)

random.shuffle(a)

print "===== 게임 시작 ====="
b=[0,0,0]
cnt = 1
for i in range(100):
print "===== %2dth 시도 ====="%cnt
cnt +=1
x = int(raw_input("Insert 3 number : "))
if x == 0:
break
for i in range(3):
b[2-i] = x % 10
x /= 10
print b

ball = 0;
strike = 0;
for n in range(3):
for m in range(3):
if a[n] == b[m] :
if n == m:
strike +=1
else :
ball +=1
print "%d strike, %d ball!"%(strike,ball)
if strike == 3:
print "You are victory!!"
break
print "===== 게임 종료 ====="

출처 :
http://maks.tistory.com/entry/Python%EC%9C%BC%EB%A1%9C-%EB%A7%8C%EB%93%9C%EB%8A%94-%EC%88%AB%EC%9E%90-%EC%95%BC%EA%B5%AC-%EA%B2%8C%EC%9E%84


2009년 3월 9일 월요일

c 언어 swap()

compiler ; Dev C++

#include

void swap(char *p,char *q)
{
char temp;
int i;
for(i=0;i<10;i++)
{
temp=*(p+i);
*(p+i)=*(q+i);
*(q+i)=temp;
}
}


main()
{
char a[10];
char b[10];
scanf("%s\n",&a);
scanf("%s",&b);

swap(a,b);

printf("%s\n",a);
printf("%s\n",b);

system("PAUSE");

}

인용

  속죄의 길을 걷는 베르고글리오, 내려옴으로써 길을 찾은 베네딕토 16세. 우리는 죄를 인정하는 순간 모든 것을 잃어버리게 되고, 내려오는 순간 다시는 올라갈 방법이 없을 것이라 믿는다. 끊임없는 정당화와 합리화, 타협은 그러한 확신에 기인하는 법이...