59 lines
3.1 KiB
HTML
59 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | The Promised Post</title>
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<h1>Zk | The Promised Post</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>So I'm finally done with the semester. Took long enough.</p>
|
|
<p>These last two weeks have been particularly busy - I finally finished that piece for the two graduating grad students, and I think it turned out really well. Having to crunch for a piece isn't something I've had too much experience with, and it turned out to be really fun. It was sort of like NaNoWriMo in that after a certain point of deciding on structure and sonority, it felt less like I was writing music and more like I was exploring something that was already there - more like reading than writing. I got it printed up all pretty at Kinkos and both the recipients seemed to enjoy the piece.</p>
|
|
<p>Finals were pretty unspectacular, but during finals week, I had a few neat things happen. I wound up with a job at the Morgan Library as a help desk tech, which should prove to not only be reasonably fun and well paid, but with a good chance of moving up to working with the servers and with Sage Catalog. Then, on Thursday night, I drove Elliott down to Boulder after he invited me to participate in his Sufi Zikr ceremony. While I'm certainly not going to convert to Islam, it was definitely a very powerful experience, and well worth participating in. I had very little in the way of expectations, so it was neat to participate in something so completely different.</p>
|
|
<p>Today I picked up a bunch of Górecki and a book, Litany of the Sun by Gene Wolfe. Looks to be a fun summer</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2007-05-12 21:40:20</p>
|
|
</footer>
|
|
</main>
|
|
<script type="text/javascript">
|
|
document.querySelectorAll('li').forEach(el => {
|
|
if (el.querySelectorAll('li').length !== 0) {
|
|
el.classList.add('has-nested', 'closed');
|
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
|
}
|
|
});
|
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
|
el.classList.remove('has-nested', 'closed');
|
|
});
|
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
|
el.querySelector('.toggle').addEventListener('click', () => {
|
|
el.classList.toggle('closed');
|
|
});
|
|
});
|
|
let expanded = false;
|
|
document.querySelector('.control').addEventListener('click', (e) => {
|
|
expanded = !expanded;
|
|
if (expanded) {
|
|
e.target.innerText = 'Collapse all';
|
|
} else {
|
|
e.target.innerText = 'Expand all';
|
|
}
|
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
|
if (expanded) {
|
|
el.classList.remove('closed');
|
|
} else {
|
|
el.classList.add('closed')
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|