62 lines
2.5 KiB
HTML
62 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | RRARGH</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 | RRARGH</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>I need three of <a href="http://www.addonics.com/products/io/ide_scsi.asp">these</a> at $70 apiece.</p>
|
|
<p>Fuck.</p>
|
|
<p>Edit: explanation: I want to move my server out of the beige box it's in currently to something a little better suited to the task, so I figured I'd put it all in the old server case on a newer board that I know can stay cool. Unfortunately, the newer board is a SCSI board, and all of my drives are IDE. Alright.. so I figured I'd take apart the box with the blown processor, switch my processor out and stick the drives in, right? It's even an IDE board. Well.. I don't have memory for that box x.x (different type, dunno what kind).</p>
|
|
<p>Sigh.</p>
|
|
<p>This might mean consolidating my computers somehow. I'll have to see.</p>
|
|
<p>EditEdit: It has come to my attention that I likely only need a new IDE board that'll fit this case. Failing that, new RAM.</p>
|
|
<p>EditEditEdit: ...that is, if Dell hasn't fucked with standards</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2007-01-05 05:20:58</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>
|