Skip to content

Commit 4c037ee

Browse files
committed
linted HTML code
1 parent 3742066 commit 4c037ee

8 files changed

+376
-138
lines changed

code.html

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!doctype html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<script src="https://use.fontawesome.com/baff6f55f5.js"></script>
55
<meta charset="utf-8">
6-
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<title>Tyler Ransom by tyleransom</title>
88

99
<link rel="stylesheet" href="stylesheets/styles.css">
1010
<link rel="stylesheet" href="stylesheets/github-light.css">
11-
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
11+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
1212
<!--[if lt IE 9]>
1313
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
1414
<![endif]-->
@@ -34,12 +34,12 @@
3434
<h1>Tyler Ransom</h1>
3535
<p>Assistant Professor of Economics<br>University of Oklahoma</p>
3636
<p>Research Affiliate<br><a href="http://legacy.iza.org/en/webcontent/personnel/photos/index_html?key=24155">Institute for the Study of Labor (IZA)</a></p>
37-
<h3><p class="view"><a href="https://tyleransom.github.io/">Home</a></p></h3>
38-
<h3><p class="view"><a href="https://tyleransom.github.io/research.html">Research</a></p></h3>
39-
<h3><p class="view"><a href="https://tyleransom.github.io/research/CV.pdf">CV</a></p></h3>
40-
<h3><p class="view"><a href="https://tyleransom.github.io/code.html">Code</a></p></h3>
41-
<h3><p class="view"><a href="https://tyleransom.github.io/teaching.html">Teaching</a></p></h3>
42-
<h3><p class="view"><a href="https://tyleransom.github.io/personal.html">Personal</a></p></h3>
37+
<h3><a href="https://tyleransom.github.io/">Home</a></h3>
38+
<h3><a href="https://tyleransom.github.io/research.html">Research</a></h3>
39+
<h3><a href="https://tyleransom.github.io/research/CV.pdf">CV</a></h3>
40+
<h3><a href="https://tyleransom.github.io/code.html">Code</a></h3>
41+
<h3><a href="https://tyleransom.github.io/teaching.html">Teaching</a></h3>
42+
<h3><a href="https://tyleransom.github.io/personal.html">Personal</a></h3>
4343
<p class="view"><b>Social</b><br>
4444
<a href="mailto:[email protected]" class="author-social" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a><br>
4545
<a href="https://scholar.google.com/citations?user=eohlTTcAAAAJ&hl=en" target="_blank"><i class="ai ai-fw ai-google-scholar-square"></i> Scholar</a><br>
@@ -58,16 +58,16 @@ <h3>Julia</h3>
5858
<li><a href="https://tyleransom.github.io/research/JuliaPresentation.pdf">Introduction to Julia for economists</a>: Slides from a short presentation that introduces <a href="http://julialang.org/">Julia</a>.</li>
5959
<li><a href="http://quantecon.org/notebooks.html">QuantEcon's notebook gallery</a>, which includes a few of my notebooks introducing data analysis and optimization in <a href="http://julialang.org/">Julia</a>.</li>
6060
<li><a href="https://github.com/tyleransom/Julia">My Github repository</a>, which introduces basic econometric models in <a href="http://julialang.org/">Julia</a>.</li>
61-
<li><a href="https://github.com/tyleransom/EMalgorithmExample"><tt>EM algorithm example</tt></a>: Code to generate data and estimate simple versions of the EM algorithm for estimation of models with discrete type-specific unobserved heterogeneity.</li>
61+
<li><a href="https://github.com/tyleransom/EMalgorithmExample"><code>EM algorithm example</code></a>: Code to generate data and estimate simple versions of the EM algorithm for estimation of models with discrete type-specific unobserved heterogeneity.</li>
6262
</ul>
6363
<h3>Matlab</h3>
6464
<ul>
65-
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/41150-summarize"><tt>summarize.m</tt></a>: Mimics Stata's <tt>summarize</tt> command.</li>
66-
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/47927-normalmle-m"><tt>normalMLE.m</tt></a>: Estimates normal linear regression with heteroskedastic errors by maximum likelihood.</li>
67-
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/47284-apply-restrictions"><tt>applyRestr.m</tt></a>: Allows for easy parameter restrictions in optimization problems (co-writen with <a href="http://bschool.pepperdine.edu/about/people/faculty/jared-ashworth/">Jared Ashworth</a>).</li>
68-
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/47389-conditional-logit"><tt>clogit.m</tt></a>: Estimates conditional logit regression by maximum likelihood (co-writen with <a href="http://bschool.pepperdine.edu/about/people/faculty/jared-ashworth/">Jared Ashworth</a>).</li>
69-
<li><a href="https://www.mathworks.com/matlabcentral/fileexchange/68256-ordered-logit"><tt>ologit.m</tt></a>: Estimates the ordered logit model by maximum likelihood.</li>
70-
<li><a href="https://www.mathworks.com/matlabcentral/fileexchange/68255-emalgorithmexample"><tt>EM algorithm example</tt></a>: Code to generate data and estimate simple versions of the EM algorithm for estimation of models with discrete type-specific unobserved heterogeneity.</li>
65+
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/41150-summarize"><code>summarize.m</code></a>: Mimics Stata's <code>summarize</code> command.</li>
66+
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/47927-normalmle-m"><code>normalMLE.m</code></a>: Estimates normal linear regression with heteroskedastic errors by maximum likelihood.</li>
67+
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/47284-apply-restrictions"><code>applyRestr.m</code></a>: Allows for easy parameter restrictions in optimization problems (co-writen with <a href="http://bschool.pepperdine.edu/about/people/faculty/jared-ashworth/">Jared Ashworth</a>).</li>
68+
<li><a href="http://www.mathworks.com/matlabcentral/fileexchange/47389-conditional-logit"><code>clogit.m</code></a>: Estimates conditional logit regression by maximum likelihood (co-writen with <a href="http://bschool.pepperdine.edu/about/people/faculty/jared-ashworth/">Jared Ashworth</a>).</li>
69+
<li><a href="https://www.mathworks.com/matlabcentral/fileexchange/68256-ordered-logit"><code>ologit.m</code></a>: Estimates the ordered logit model by maximum likelihood.</li>
70+
<li><a href="https://www.mathworks.com/matlabcentral/fileexchange/68255-emalgorithmexample"><code>EM algorithm example</code></a>: Code to generate data and estimate simple versions of the EM algorithm for estimation of models with discrete type-specific unobserved heterogeneity.</li>
7171
</ul>
7272
<h3>LaTeX</h3>
7373
<ul>

0 commit comments

Comments
 (0)