57 lines
2.6 KiB
HTML
57 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | Happy Fun Time with hard drives.</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 | Happy Fun Time with hard drives.</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>I thought I'd finally filled up what appeared to be a 40GB hard drive last night until I realized that, for some reason, it was only 18GB. Hmm. I spent last night and most of the time I was awake today trying to get my computer set up the way I want it by scavenging parts I already have, and now I've got a 40GB drive where I need it, after much cursing and flailing. The problem is, now I'm stuck with a ghost drive in Explorer from when I was fiddling with backing stuff up off other drives before I wiped them. Disk Manager doesn't see it, and neither does Hardware Manager, which is as it should be, but Explorer thinks there's an X: drive that it just can't access. Puzzled over that when I got home from school, then crashed. Oh well. I'll just live with it for now.</p>
|
|
<p>Anyway, money's really starting to worry me. I need to get my card paid off ASAP, and having to pay for lessons is not helping >:E Also, I fail at jet lag</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2007-11-08 06:59:25</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>
|