generated from foambubble/foam-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneration--sequencing.html
96 lines (80 loc) · 3.03 KB
/
generation--sequencing.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Creative Coding for Interactive Art</title>
<meta name="description" content="Class notes & resources for my courses @ ITPMA/UNATC.">
<!-- Load up MathJax script if needed ... specify in /_data/options.yml file-->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: [
"MathMenu.js",
"MathZoom.js",
"AssistiveMML.js",
"a11y/accessibility-menu.js"
],
jax: ["input/TeX", "output/CommonHTML"],
TeX: {
extensions: [
"AMSmath.js",
"AMSsymbols.js",
"noErrors.js",
"noUndefined.js",
]
}
});
</script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<!-- <script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> -->
<link rel="stylesheet" type="text/css" href="css/tufte.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- <link rel="stylesheet" type="text/css" href="cciacss/print.css" media="print"> -->
<!--<link rel="canonical" href="ccia/generation--sequencing.html">-->
<!--<link rel="alternate" type="application/rss+xml" title="Creative Coding for Interactive Art" href="ccia/feed.xml" /> -->
</head>
<body>
<!--- Header and nav template site-wide -->
<header>
<nav class="group">
<a href="index.html">Home</a> <a href="resources.html">Resources</a>
</nav>
</header>
<article class="group">
<h1 id="generation--sequencing">Generation & Sequencing</h1>
<p>Test</p>
<p>One two three
<label for="mn-id-whatever" class="margin-toggle"> ⊕</label><input type="checkbox" id="mn-id-whatever" class="margin-toggle" /><span class="marginnote">This is a margin note <em>without</em> a superscript </span></p>
<p>Four five six</p>
</article>
<span class="print-footer"> - Grigore Burloiu</span>
<footer>
<hr class="slender">
<div class="credits">
<span>© 2025 Grigore Burloiu</span></br> <br>
<span>Written and published using <a href="//foambubble.github.io/">Foam</a> and
a modified <a href="//github.com/clayh53/tufte-jekyll">Tufte theme</a> in
<a href="//jekyllrb.com">Jekyll</a>.
</br>
Found something unclear/missing/wrong? Go ahead and
<a href="mailto:[email protected]">email me</a>, or open an issue
<a href="//github.com/rvirmoors/ccia">on Github</a>!</span>
</div>
</footer>
</body>
</html>
<script type="text/javascript">
// Hack: Replace page-link with "Page Title"
document.querySelectorAll(".markdown-body a[title]").forEach((a) => {
a.innerText = a.title;
});
// Hack: Remove .md extension from wikilinks to get the html in jekyll
document.querySelectorAll("a").forEach(l => {
if (l.href.endsWith('.md')) {
l.href = l.href.substring(0, l.href.length-3)
}
})
</script>