` 코딩으로 만드는 음악, Bohemian Rhapsody편 :: Black Sheep Wall!

코딩으로 만드는 음악, 참 쉽지요?

코딩교육 열풍이라니, 음악도 코딩으로 크크크

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72

function reality() { var THIS = this; this.escape = function () { return this; }; try { if ( this !== "reallife" && this !== "fantasy") { throw "landslide"; } } catch (e) { THIS = this.escape(); } } function you() { this.eyes = "closed"; this.open = function (what) { if (what == "eyes") { this.eyes = "open"; } }; this.open("eyes"); this.look = function (where) { if (this.eyes == "closed") { return false; } else { if (where == "up") { return "sky"; } } } this.see = this.look("up"); } function me() { this.wealth = "poor"; this.sympahty = false; this.move= function (direction) { if (direction == "come" || direction == "go") { return "easy"; } } this.difficulty = this.move("come"); this.difficulty = this.move("go"); function add(src) { var elem = document.createElement('script'); elem.setAttribute("src", src); document.head.appendChild(elem); } add("high.js.min"); add("low.js.min"); var possibleWindDir = ["north", "east", "south", "west"]; var windDir = possibleWindDir[Math.floor(Math.random() * 4) + 1]; switch (windDir) { case "north": case "south": case "east": case "west": default: this.matters = false; } } new reality(); new you(); new me();

  

가사(코드)해석

Is this the real life? Is this just fantasy?

이것이 현실인걸까? 아니면 그냥 환상일까?


Caught in a landslide - No escape from reality

산사태에 파묻힌듯이 - 현실에서 벗어날 수가 없어


Open your eyes - Look up to the skies and see

눈을 뜨고 - 고개를 들어 하늘을 보며 깨달아


I'm just a poor boy (poor boy)

난 그냥 불쌍한 아이일 뿐


I need no sympathy

동정은 필요 없어


because I'm easy come, easy go

왜냐면 난 쉽게 왔다가 쉽게 떠나는 놈이고


little high, little low

조금 들떠있고, 조금 가라앉아있고


Any way the wind blows

바람이 어느쪽으로 불든지[13]


doesn't really matter to me, to me

나에겐 아무 상관 없어, 나에게는

https://www.reddit.com/r/funny/comments/50m0bw/bohemian_rhapsody_in_c/

Get Inspired! at 2017. 10. 31. 09:47