view projects.html @ 69:2e645b936727

*: huge overhaul 1. the INDEX PAGE was broken for so long, but I really could not have been arsed to fix it. 2. all major css has been moved to css/style.css 3. png files are now all jpg files because having pngs on a website is overkill 4. update libopenmpt, not sure if it works (local JS doesn't work on my browser) 5. libopenmpt is now the JS-only version because browsers like pale moon still don't support WASM
author Paper <mrpapersonic@gmail.com>
date Sat, 30 Sep 2023 00:34:22 -0400
parents 6019514100d4
children 597f956b8d3a
line wrap: on
line source

<!DOCTYPE html>
<head>
	<title>Projects - Paper's website</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <link href="./css/bootstrap.min.css" rel="stylesheet" media="screen">
	<link href="./css/style.css" rel="stylesheet" media="screen">
	<style>
		body {
			background-size: cover;
			background-image: url("projectsbg.jpg");
			background-position: center top;
			background-size: cover;
			background-color: #1F255A;
		}
	</style>
    <link rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
</head>
<body>
    <div class="navbar-wrapper">
		<div class="container">
			<div class="navbar navbar-inverse">
				<div class="navbar-inner">
					<a class="brand" href="./">Paper's website</a>
					<ul class="nav">
						<li><a href="./">Home</a></li>
						<li><a href="music.html">Music</a></li>
						<li class="active"><a href="#">Projects</a></li>
					</ul>
				</div>
			</div>
		</div>
    </div>
	<h1>Projects</h1>
	<div class="box">
		<h1>msvpvf</h1>
		<p>msvpvf is a tool used to "downgrade" VEGAS Pro project files, written entirely in C. It has no runtime libraries, making it incredibly lightweight. On macOS, the CLI compiles to 50 KB, and on Windows the GUI app is only 19 KB.</p>
		<p><a href="https://github.com/mrpapersonic/msvpvf/releases/latest">Download</a></p>
	</div>
	<div class="box">
		<h1>utagoe30en</h1>
		<p>A project to translate <a href="https://www.vector.co.jp/soft/dl/win95/art/se127635.html">Utagoe</a>, an app that extracts vocals from songs, into English</p>
		<p><a href="https://github.com/mrpapersonic/utagoe30en/releases/latest">Download</a></p>
	</div>
</body>