homepage/index.html

79 lines
4.1 KiB
HTML
Raw Normal View History

2021-05-10 14:46:57 +10:00
<html>
<head>
<title>Adam</title>
2021-05-25 16:20:31 +10:00
<style>
* {
box-sizing: border-box;
}
body {
font-family: monospace;
}
code {
background-color: #dadada;
padding-left: 4px;
padding-right: 4px;
border-radius: 2px;
}
li {
margin-bottom: 1em;
}
li p {
margin-top: 0.25em;
margin-bottom: 0.25em;
}
</style>
2021-05-10 14:46:57 +10:00
</head>
<body>
2021-05-25 16:20:31 +10:00
<p>Hi there!<br/>&nbsp;- Adam</p>
<p>I'm a software developer in Sydney.</p>
<p>Here are some projects I've created:</p>
<ul>
<li>
<p><a href="https://github.com/adamburgess/linq#readme">https://github.com/adamburgess/linq</a> - <a href="https://www.npmjs.com/package/@adamburgess/linq">@adamburgess/linq</a> on npm</p>
2021-06-24 23:05:24 +10:00
<p>I use C#'s <code>IEnumerable</code> extensions quite a lot, and the javascript version, <code>linq.js</code>, is very large. My version is 1.25kb.</p>
2021-05-25 16:20:31 +10:00
</li>
<li>
<p><a href="https://github.com/adamburgess/alpine-apk#readme">https://github.com/adamburgess/alpine-apk</a> - <a href="https://www.npmjs.com/package/alpine-apk">alpine-apk</a> on npm</p>
2021-06-24 23:05:24 +10:00
<p>Alpine Linux is a minimal linux distro, great for docker. I wanted to query its package manager, APK, from Node.</p>
2021-05-25 16:20:31 +10:00
</li>
<li>
<p><a href="https://github.com/adamburgess/nr#readme">https://github.com/adamburgess/nr</a> - <a href="https://www.npmjs.com/package/@adamburgess/nr">@adamburgess/nr</a> on npm</p>
<p>
NPM's package.json <code>scripts</code> is quite convenient for running things. Yet, <code>npm run X</code> and <code>yarn X</code> are fairly slow - 150ms+.<br/>
nr is a simple bash script using jq to run scripts. 30ms. Much faster.
</p>
</li>
<li>
<p><a href="https://github.com/adamburgess/celeste-high-frame-rate#readme">https://github.com/adamburgess/celeste-high-frame-rate</a></p>
2021-06-24 23:05:24 +10:00
<p>Celeste is a fun platformer, with a banger soundtrack. The developers lock the ingame framerate to 60 fps, which is in my opinion <b>painful</b>.<br/>
2021-05-25 16:20:31 +10:00
This small patch overrides that limitation, and the game easily hits 240fps.
</p>
</li>
<li>
<p><a href="https://tarkov-time.adam.id.au">https://tarkov-time.adam.id.au</a> - source at <a href="https://github.com/adamburgess/tarkov-time">https://github.com/adamburgess/tarkov-time</a></p>
2021-06-24 23:05:24 +10:00
<p>Escape from Tarkov has a day/night cycle. This site shows you the time, and how long it will be to a future time. Deployed on netlify.</p>
2021-05-25 16:20:31 +10:00
</li>
<li>
<p><a href="https://crop.adam.id.au">https://crop.adam.id.au</a></p>
2021-06-24 23:05:24 +10:00
<p>A helper for <code>ffmpeg</code>'s <code>crop</code> filter. Drag and drop an image and select it to get a crop filter in the correct format.</p>
2021-05-25 16:20:31 +10:00
</li>
<li>
<p><a href="https://bundlephobia.fly.adam.id.au/size/@adamburgess/linq">https://bundlephobia.fly.adam.id.au/size/@adamburgess/linq</a></p>
<p>
2021-06-24 23:05:24 +10:00
bundlephobia.com uses webpack. I've found it gives slightly inaccurate results because of this. I also wanted to get the brotlified sizes for my packages.<br/>
This builds the package with rollup. Deployed on fly.io.<br/>
2021-05-25 16:20:31 +10:00
No UI as of yet, but it also generates <a href="https://bundlephobia.fly.adam.id.au/size/@adamburgess/linq?shield&brotli">shields</a> see the readme of my linq package above for examples.
</li>
<li>
<p><a href="https://github.com/adamburgess/image-builder">https://github.com/adamburgess/image-builder</a></p>
<p>
2021-06-24 23:05:24 +10:00
I build a lot (all) of my projects with Docker, so I've made my own base images. <br/>
Using Github Actions and a generated Makefile, they automatically update whenever a dependency changes whether it be the docker image, an alpine package, a github/lab repo, or an npm package.
2021-05-25 16:20:31 +10:00
</li>
</ul>
2021-05-10 14:46:57 +10:00
</body>
</html>