view projects.html @ 59:d1e77bf4b37f

music: move inline script to before libopenmpt is loaded
author Paper <mrpapersonic@gmail.com>
date Mon, 19 Dec 2022 18:50:46 -0500
parents e6c574c6f8e0
children 6019514100d4
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 rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
	<style nonce="paper-web-inline">
		.navbar {
			text-align: left; /* Override body text align */
			box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
		}
		.container {
			width: 98%;
			margin-top: 1%;
		}
		body {
			background-size: cover;
			background: url("blueforest.png") no-repeat center center fixed;
			color: white;
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
			text-align: center;
			text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
		}
		div.box {
			background-color: rgba(0, 128, 0, 0.5);
			box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) inset;
			text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
			color: white;
			left: 0;
			margin: 1% auto;
			max-width: 500px;
			padding: 10px;
			right: 0;
			text-align: center;
			top: 50%;
		}
		a {
			display: block-inline;
			color: yellow;
			background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.0) 75%);
			box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
			text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
		}
	</style>
</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>