forked from helfi92/studorlio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
articles.html
172 lines (164 loc) · 5.15 KB
/
articles.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html>
<head>
<title>Jonathan Ly | Blog</title>
<!-- css files -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.1/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<!-- Source: https://www.artstation.com/artwork/LWDKl -->
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png">
<meta name="author" content="Jonathan Ly">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<!-- Navbar -->
<nav class="nav container void-background">
<!-- This "nav-menu" is hidden on mobile -->
<!-- Add the modifier "is-active" to display it on mobile -->
<div class="nav-left">
<a href="http://github.com/jly02" class="nav-item">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
<a href="https://twitter.com/pandaly02" class="nav-item">
<span class="icon">
<i class="fa fa-twitter"></i>
</span>
</a>
</div>
<div class="nav-right nav-menu">
<a class="nav-item" href="index.html">Home</a>
<a class="nav-item" href="about.html">About</a>
<a class="nav-item" href="articles.html">Articles</a>
<a class="nav-item" href="social.html">Social</a>
</div>
<!-- This "nav-toggle" hamburger menu is only visible on mobile -->
<!-- You need JavaScript to toggle the "is-active" class on "nav-menu" -->
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
<span></span>
</span>
</nav>
<!-- Projects -->
<div class="container">
<div class="has-text-centered">
<h3 class="title is-3">Articles</h3>
</div>
<p>
Stuff I'm working/worked on, find cool, or just want to talk about.
</p>
<br>
<br>
<div class="columns is-multiline is-desktop">
<!-- Complexity Analysis -->
<div class="box project-text">
<article>
<div>
<figure class="image project-figure">
<img src="assets/img/ramtapewrong.png" alt="turing machine tape encoding of ram">
</figure>
</div>
<div>
<h2 class="project-titles">
Complexity Analysis and Hidden Assumptions
</h2>
<p>
A lesson in Turing machines, complexity theory, and a note to myself to be careful for implicit assumptions.
</p>
<a href="complexity.html">Read more.</a>
</div>
</article>
</div>
<!-- Deduction Theorem -->
<div class="box project-text">
<article>
<div>
<figure class="image project-figure">
\[\Gamma \cup \{A\} \vdash B\]
\[\Gamma \vdash A \to B \]
</figure>
</div>
<div>
<h2 class="project-titles">
The Deduction Theorem
</h2>
<p>
Or, an introduction to the metatheory of propositional logic.
</p>
<a href="pldt.html">Read more.</a>
</div>
</article>
</div>
<!-- regpy -->
<div class="box project-text">
<article>
<div>
<figure class="image project-figure">
<img src="assets/img/regpy.png" alt="4 graphs next to code">
</figure>
</div>
<div>
<h2 class="project-titles">
regpy
</h2>
<p>
Creating and plotting regression models in Python made as quick and easy as possible.
</p>
<a href="regpy.html">Read more.</a>
</div>
</article>
</div>
<!-- n-grams -->
<div class="box project-text">
<article>
<div>
<figure class="image project-figure">
<img src="assets/img/ngrams.png" alt="A randomly generated sentence based on a prompt">
</figure>
</div>
<div>
<h2 class="project-titles">
N-gram-based Sentence Generation
</h2>
<p>
Before deep learning, n-gram models were the common statistical method for generating surprisingly grammatical nonsense.
</p>
</div>
<a href="ngrams.html">Read more.</a>
</article>
</div>
<!-- Huffman -->
<div class="box project-text">
<article>
<div>
<figure class="image project-figure">
<img src="assets/img/huffmantree.png" alt="A randomly generated sentence based on a prompt">
</figure>
</div>
<div>
<h2 class="project-titles">
Huffman Compression
</h2>
<p>
In 1952, David Huffman Sc.D. invented a simple, yet powerful, method of encoding information with minimal data usage. Today, it is most commonly used as a method for lossless data compression.
</p>
</div>
<a href="huffman.html">Read more.</a>
</article>
</div>
</div>
</div>
<!-- Footer -->
<section class="section-4 has-text-centered container">
<a href="https://www.linkedin.com/in/jly02/">Contact Me</a>
</section>
<!-- Scripts -->
<script src="controller.js"></script>
</body>
</html>