-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
136 lines (121 loc) · 7.73 KB
/
schedule.html
File metadata and controls
136 lines (121 loc) · 7.73 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link id="pagestyle" rel="stylesheet" type="text/css" href="css/carboniferous.css">
<link rel="stylesheet" type="text/css" href="css/table.css">
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script type="application/javascript" src="js/toggler.js"></script>
</head>
<body>
<div id="togglerbody" style="text-align:center">
<button id="toggler"> repaint </button>
<h1 style="margin: 0 auto"><a href="index.html"><div id="title">Samuel Tenka</div></a></h1>
</div>
<h2>Schedule : 2022 Spring </h2>
Here is my approximate schedule!
<span style="background-color: #ccffcc; color: #448844">Green</span> cells
denote longer work sessions that I'd weakly prefer to keep de-fragmented.
<span style="background-color: #ffccff; color: #884488">Magenta</span> cells
denote meetings relating to grad school.
<span style="background-color: #ffffcc; color: #888844">Yellow</span> cells
denote other meetings.
<!--
<p>
If you'd like to meet, the
<span style="background-color: #ccffcc; color: #448844">green</span> or
<span style="background-color: #cccccc; color: #444444">hue</span>less
slots are probably best, since they denote research and
unscheduled time, respectively.
I try to structure my work around artificial Wednesday morning
<span style="background-color: #ffcccc; color: #884444">deadlines</span>.
I used to prioritize promptly responding to emails, but now
I am experimenting with consolidating such
<span style="background-color: #ffccff; color: #884488">administrivia</span>
to only a few weekly chunks of time.
For productivity and mental health, I try to be
<span style="background-color: #ccffff; color: #448888">nonsedentary</span>
more frequently than feels natural.
I often look forward to less artificial
<span style="background-color: #ffffcc; color: #888844">appointments</span>
such as classes or calls to parents.
--!>
<!--
<p>
I'll be doing teacherly activities during
<span style="background-color: #ffccff; color: #884488">magenta</span> slots,
studently activities during
<span style="background-color: #ccccff; color: #444488">blue</span> slots,
self-care activities during
<span style="background-color: #ccffff; color: #448888">cyan</span> slots,
and fun or social activities during
<span style="background-color: #ffffcc; color: #888844">yellow</span> slots.
During
<span style="background-color: #ffcccc; color: #884444">red</span> slots,
I won't know where I am: I'll only know my momentum.
--!>
<!--
I aim to do research, but I'm quite limited: I can probably do only ~3 hours of directly productive work per day.
The rest of my time I will spend in support of those 3 precious hours, by attending lab meetings,
automating experiments, collecting data, reading papers, working on psets, sleeping, eating,
socializing, and more. Thus prepared, I hope to spend my 3 hours efficiently.
<p></p>
<span style="background-color: #ffffaa">Yellow</span> indicates a social meeting probably near SidPac,
<span style="background-color: #aaaaff">Blue</span> indicates a nonsocial meeting probably near Stata, and
<span style="background-color: #ffaaaa">Red</span> means I only know my momentum.
I may also work by myself, whether in
creation (<span style="background-color: #aaffaa">Green</span>),
recreation (<span style="background-color: #aaffff">Cyan</span>), or
maintenance (<span style="background-color: #ffaaff">Magenta</span>).
Tentative or unremarkable activities may be left uncolored.
<p></p>
--!>
<div id="weekmenubody" style="text-align:center">
<button id="thisweek"> this week </button>
<button id="nextweek"> next week </button>
<!--<button id="nextnextweek"> next next week </button>
<button id="nextnextnextweek"> next next next week </button>
<button id="genericweek"> generic week </button>
--!>
</div>
<div id="test"> </div>
<script>
var test = document.getElementById("test");
test.innerHTML = "<object data=\"" + "schedule/schedule_table.html" + "\" width=\"900\" height=\"1024\"></object>";
//test.innerHTML = "<object data=\"" + "schedule/schedule_generic_table.html" + "\" width=\"900\" height=\"1024\"></object>";
function thisweekRender() {
test.innerHTML = "<object data=\"" + "schedule/schedule_table.html" + "\" width=\"900\" height=\"1024\"></object>";
}
function nextweekRender() {
test.innerHTML = "<object data=\"" + "schedule/schedule_next_table.html" + "\" width=\"900\" height=\"1024\"></object>";
}
function nextnextweekRender() {
test.innerHTML = "<object data=\"" + "schedule/schedule_next_next_table.html" + "\" width=\"900\" height=\"1024\"></object>";
}
function nextnextnextweekRender() {
test.innerHTML = "<object data=\"" + "schedule/schedule_next_next_next_table.html" + "\" width=\"900\" height=\"1024\"></object>";
}
function genericweekRender() {
test.innerHTML = "<object data=\"" + "schedule/schedule_generic_table.html" + "\" width=\"900\" height=\"1024\"></object>";
}
var thisweek = document.getElementById("thisweek");
var nextweek = document.getElementById("nextweek");
var nextnextweek = document.getElementById("nextnextweek");
var nextnextnextweek = document.getElementById("nextnextnextweek");
var genericweek = document.getElementById("genericweek");
thisweek.onclick = function () {thisweekRender();};
nextweek.onclick = function () {nextweekRender();};
nextnextweek.onclick = function () {nextnextweekRender();};
nextnextnextweek.onclick = function () {nextnextnextweekRender();};
genericweek.onclick = function () {genericweekRender();};
</script>
<br></br>
<br></br>
<br></br>
</body>
</html>