1
0
mirror of https://github.com/osmarks/website synced 2025-01-11 01:40:55 +00:00

minor fixes and improve title casing

This commit is contained in:
osmarks 2024-10-26 14:31:38 +01:00
parent f8b17595e6
commit 6011e27dbd
8 changed files with 24 additions and 21 deletions

View File

@ -20,7 +20,7 @@ jargonWords = {
"IPv4", "IPv6", "ARP", "DES", "IEEE", "NoSQL", "UTF-16", "ADSL", "ABI", "TX", "HEVC", "AVC",
"AV1", "ASLR", "ECC", "HBA", "HAL", "SMT", "RPC", "JIT", "LCD", "LED", "MIME", "MIMO", "LZW",
"LGA", "OFDM", "ORM", "PCRE", "POP3", "SMTP", "802.3", "PSU", "RGB", "VLIW", "VPS", "VPN",
"XMPP", "IRC", "GNSS", "HBM", "ROM", "RFC", "HPC", "DMA"],
"XMPP", "IRC", "GNSS", "HBM", "ROM", "RFC", "HPC", "DMA", "SDN"],
adjectives:
["auxiliary", "primary", "back-end", "digital", "open-source", "virtual", "cross-platform",
"redundant", "online", "haptic", "multi-byte", "Bluetooth", "wireless", "1080p", "neural",
@ -33,7 +33,8 @@ jargonWords = {
"high-level", "low-level", "distributed", "accelerated", "base64", "purely functional",
"serial", "parallel", "compute", "graphene", "recursive", "denormalized", "orbital",
"networked", "autonomous", "applicative", "acausal", "hardened", "category-theoretic",
"ultrasonic", "high-level", "amortized", "tertiary", "256-bit"
"ultrasonic", "high-level", "amortized", "tertiary", "256-bit", "generative", "k8s", "core",
"central"
],
nouns:
["driver", "protocol", "bandwidth", "panel", "microchip", "program", "port", "card",
@ -51,7 +52,8 @@ jargonWords = {
"API", "bitrate", "acknowledgement", "layout", "satellite", "shell", "MAC", "PHY", "VLAN",
"SoC", "assembler", "interrupt", "directory", "display", "functor", "bits", "logic",
"sequence", "procedure", "subnet", "invariant", "monad", "endofunctor", "borrow checker",
"kernel", "memory", "bootloader", "bytestring", "buffer", "allocator"],
"kernel", "memory", "bootloader", "bytestring", "buffer", "allocator", "switch",
"router", "console", "microcontroller", "controller"],
participles:
["backing up", "bypassing", "hacking", "overriding", "compressing", "copying", "navigating",
"indexing", "connecting", "generating", "quantifying", "calculating", "synthesizing",
@ -64,7 +66,8 @@ jargonWords = {
"underwriting", "accessing", "locating", "rotating", "invoking", "utilizing",
"normalizing", "hijacking", "integrating", "type-checking", "uploading", "downloading",
"allocating", "receiving", "decoding", "converting", "wiping", "erasing", "flashing",
"managing", "updating", "terminating", "detaching", "rewiring"
"managing", "updating", "terminating", "detaching", "rewiring", "hashing", "inserting",
"loading", "emulating", "simulating", "mapping", "enabling", "disabling"
]};
// Generates a random piece of jargon
@ -234,7 +237,9 @@ function GuiHacker(){
"Opening Wireshark.",
"Breaking fifth wall....",
"Flipping arrows and applying yoneda lemma",
"Rewriting in Rust"
"Rewriting in Rust",
"Entering Mainframe",
"Full Scan Required."
];
this.isProcessing = false;
this.processTime = 0;

View File

@ -1,5 +1,5 @@
---
title: Sparse Autoencoders for Meme Retrieval
title: Sparse autoencoders for meme retrieval
description: As ever, AI safety becomes AI capabilities.
created: 06/10/2024
series: meme_search

View File

@ -1,5 +1,5 @@
---
title: So You Want A Cheap ML Workstation
title: So you want a cheap ML workstation
description: How to run local AI slightly more cheaply than with a prebuilt system. Somewhat opinionated.
created: 25/02/2024
updated: 14/04/2024

View File

@ -1,5 +1,5 @@
---
title: Not Everyone Must "Code"
title: Not everyone must "code"
description: Why I think that government programs telling everyone to "code" are pointless.
slug: nemc
updated: 09/02/2020

View File

@ -1,5 +1,5 @@
---
title: On Phones
title: On phones
description: My (probably unpopular in general but... actually likely fairly popular amongst this site's intended audience) opinions on smartphones today.
slug: phones
created: 01/06/2018

View File

@ -1,5 +1,5 @@
---
title: "'Problem Solving' Tasks and Computer Science"
title: "'Problem solving' tasks and computer science"
description: Is solving Sudoku and similar puzzles by hand really useful in building computer science ability? We don't think so.
slug: csproblem
created: 20/05/2020

View File

@ -557,6 +557,7 @@ if (sidenotes && footnotes) {
let previousHighlight
const fixDetailsSummary = () => {
if (!window.location.hash.slice(1)) return
const el = document.getElementById(window.location.hash.slice(1))
var parent = el
if (!el) return

View File

@ -15,9 +15,6 @@ mixin image(src)
doctype html
html(lang="en")
head
link(rel="preload", href="/assets/miracode.woff2", as="font", crossorigin="anonymous")
link(rel="preload", href="/assets/titillium-web-semibold.woff2", as="font", crossorigin="anonymous")
link(rel="preload", href="/assets/titillium-web.woff2", as="font", crossorigin="anonymous")
title= `${title} @ ${name}`
script(src="/assets/js/page.js", defer=true)
meta(charset="UTF-8")