-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek1.html
127 lines (81 loc) · 3.77 KB
/
week1.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<! --
Constrained Writing
15 Sep 2021
Soojin Lee
-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title> Constrained Writing </title>
<link rel="stylesheet" href="week1style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<!-- Top Navigation-->
<body>
<div id= "container1">
<div class="logo">
<a href="index.html">
<img src="image/logo.png">
</a>
</div>
<div class= "navbar">
<a href="index.html" id="Home">Home</a>
<a href="designFund.html" id="Projects">Design Fundamentals</a>
<a href="prgA-Z.html" id="Quotes">Programming from A-Z</a>
<a href="about.html" id="Contact">About</a>
</div>
</div>
<!-- Project Title Container 2-->
<div id= "container2">
<div class="title">
<p> Constrained Writing </p>
</div>
<div class ="project-description">
<p> Author: Soojin Lee Date: 15, Sep, 2021 </p>
</div>
<h1>
| What's Constrained Writing?
</h1>
<div class="text">
Constrained writing is a literary technique in which writer is bound by some condition that forbids certain things or imposes a pattern. In class we have looked at different constrained writing techniques:
<ul class="a">
<li>Snowball: A poem in which each line is a single word, and each successive word is one letter longer.
</li>
<li>Lipogram: Writing that excludes one or more letters. The previous sentence is a lipogram in B,F,J,K,Q,V,Y,and Z (it does not contain any of those letters).
</li>
<li>Prisoner's constraint: A type of lipogram that omits letters with ascenders and descenders(b,d,f,g,h,j,k,l,p,q,t,and y).</li>
<li>Univocalism: A poem using only one vowel letter. In English and some other language the same vowel letter can represent different sounds, which means that, for example, "born" and "cot" could both be used in univocalism. (Wrods with the same Amercian English vowel sound but represented by different 'blwe' letters could not be used -e.g. "blue" and "stew".</li>
<li> Mathew's Algorithm: Elements in a text are moved around by set of predetermined rules. </li>
</ul>
</div>
<h1>
| Ideation
</h1>
<div class="text">
As I am fluent in Englisha and Korean, I wanted to invent a constrained writing technique that involves English and Korean. I wanted to challenge coming up with a creative technique that converts English Roman Alphabets to Korean Hanguel Alphabets. <br>
Here are some thoughts and considerations I had as I was developing the system: <br>
<ul class="a">
<li>English has upper-and lower-case system - Korean doesn't. </li>
<li>Both English and Korean are written/read left to right. </li>
<li>Korean letters are written in syllable blocks. </li>
<img src="week1image/block.jpg">
<li>"apostrophe" is used specifically for English but is never used in Korean.</li>
</ul>
Considereing these, I developed a technique that uses number to convert the text written in English Roman alphabets to Korean Hangeul text.
</div>
<h1>
| The Project
</h1>
<div class="text">
Click <a href="https://soojin-lee0819.github.io/Constrained-Writing/">here</a> to view the project <br>
<img src="week1image/project.png" width = "100%">
</div>
<h1>
| Evaluation & Reflection
</h1>
<div class="text">
Since this is merely a conversion of Roman Alphabets to Hangeul Alphabets with number patterns and rules, although the final text in Korean is legible, it is not intelligable. Regardless, it was fascinating to see how, the two very different language systems - English Roman alphabets and Korean Hangeul alphabets can be converted to one another.
</div>
</div>
</body>
</html>