Compare commits

..

No commits in common. "4211e09e0f842bf021e4055049cdf54b94fb7f69" and "2575ae76e0b86067bbabe8531b560c35a7ec747d" have entirely different histories.

11 changed files with 0 additions and 331 deletions

144
.gitignore vendored
View file

@ -1,144 +0,0 @@
# Created by https://www.toptal.com/developers/gitignore/api/node
# Edit at https://www.toptal.com/developers/gitignore?templates=node
### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
### Node Patch ###
# Serverless Webpack directories
.webpack/
# Optional stylelint cache
# SvelteKit build / generate output
.svelte-kit
# End of https://www.toptal.com/developers/gitignore/api/node

27
package-lock.json generated
View file

@ -1,27 +0,0 @@
{
"name": "myco.systems",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"prettier": "^3.3.3"
}
},
"node_modules/prettier": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz",
"integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==",
"license": "MIT",
"bin": {
"prettier": "bin/prettier.cjs"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/prettier/prettier?sponsor=1"
}
}
}
}

View file

@ -1,5 +0,0 @@
{
"dependencies": {
"prettier": "^3.3.3"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 MiB

View file

@ -1,155 +0,0 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@Brooke</title>
<style>
@font-face {
font-family: FreePixel;
src: url(https://sadhost.neocities.org/fonts/FreePixel.ttf)
format("truetype");
}
:root {
--background: #242424e5;
--accent-1: #d182ff;
--accent-2: #eb53d3;
--content-spacing: 5px;
--background-img: url("/public/@brooke/bg.jpg");
--banner: url("/public/@brooke/fractal.gif");
--titleBars: url("/public/@brooke/title-bar.jpg");
--text-color: white;
--link-color: var(--accent-1);
--border: 1px solid black;
}
body,
html {
margin: 0;
box-sizing: border-box;
font-family: FreePixel;
}
body {
background-image: var(--background-img);
color: var(--text-color);
background-attachment: fixed;
}
.topbar {
background-image: var(--banner);
height: 150px;
background-size: cover;
background-position: 60%;
margin-bottom: var(--content-spacing);
border: var(--border);
}
#container {
max-width: 850px;
margin: 0 auto;
}
#container a {
color: var(--link-color);
}
#container {
border-top: none;
}
#flex {
display: flex;
max-width: 850px;
}
.sidebar-title,
.title {
background-image: var(--titleBars);
font-weight: 700;
border: var(--border);
font-size: 20px;
background-size: auto 100%;
background-repeat: repeat-x;
}
main {
width: 100%;
background-color: var(--background);
}
.content {
padding: 25px;
}
@media only screen and (max-width: 640px) {
#flex {
flex-wrap: wrap;
}
}
p {
font-weight: 700;
}
</style>
</head>
<body>
<div id="container">
<div class="topbar"></div>
<div id="flex">
<main>
<div class="sidebar-title">&nbsp;</div>
<div style="padding: 1rem; padding-top: 0">
<p>Hi! My name is Brooke.</p>
<p>
I like helping organizations and individuals get on board with the
idea of using FLOSS (Free/Libre/Open Source Software) software.
</p>
<p>I like to talk about:</p>
<ul>
<li>Off-grid living</li>
<li>Rubber Tramping</li>
<li>Open Source projects of all kinds</li>
<li>Intentional communities</li>
</ul>
<p>Find me:</p>
<ul>
<li>
<a target="_blank" href="https://coop.myco.systems/">Blog</a>
</li>
<li>
<a target="_blank" href="https://coop.myco.systems/"
>Mastodon</a
>
</li>
</ul>
<div>
<a target="_blank" href="https://10kb.neocities.org/about">
<img
src="https://10kb.neocities.org/icons/flag10kb.png"
alt="The words '10kB' split in half by a black cross, on a blue background."
height="32"
width="auto"
title="The 10kB Gallery!"
style="image-rendering: crisp-edges"
/>
</a>
<img
src="/public/@brooke/trans.png"
height="32"
width="auto"
alt="A trans flag."
/>
<img
src="/public/@brooke/piracy.gif"
height="32"
width="auto"
alt="A piracy flag."
/>
<img
src="/public/@brooke/acab.gif"
height="32"
width="auto"
alt="All Cops Are Bastards."
/>
<a target="_blank" href="https://besties.house/"
><img
src="/public/@brooke/besties.gif"
height="32"
width="auto"
alt="Besties.house, first unionised group chat."
/></a>
</div>
</div>
</main>
</div>
</div>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 910 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 B