Skip to content
View JasonWarrenUK's full-sized avatar

Organizations

@FAC29A @fac-31

Block or report JasonWarrenUK

Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
JasonWarrenUK/README.md

Oh God, It's Jason Warren

Neurodivergent โ€ข Anarchosocialist โ€ข Mouthy Little Gremlin

Dev Profile API

.src/index.ts

import { desc } from "./src/utils/getProfile.ts";
import type { User } from "./src/lib/types.ts"

const jason: User = { name: "Jason" };

desc(jason);

./src/utils/getProfile.ts

import { roles } from "./db/facts.ts";
import type { User, Profile } from "./src/lib/types.ts"

export function desc(user: User): Profile {
  const safe = (user.name != "Jason");
  const species = safe ? "human" : "goblin";

  const tags = [
    safe ? "pro" : "neurodivergent",
    safe ? "fullstack" : "anarchosocialist",
    safe ? "dev" : "goblin"
  ];

  const roles = user.roles
    ? user.roles
    : safe
      ? roles.default
      : roles.jason;

  return {
    name: user.name,
    species: species,
    desc: join(tags, " "),
    roles: roles
  }
}

./src/lib/types.ts

export interface Role {
  org: string,
  role: string,
  from?: string,
  to?: string
};

export interface User {
  name: string,
  roles?: Role[]
};

export interface Profile extends User {
  species: string,
  desc: string,
};

./db/facts.ts

export const roles = {
  default: [
    { org: "@techStartUp", role: "innovation engineer" }
  ],
  jason: [
    { org: "@FAC-31", role: "facilitator", from: date(2025-02), to: date(now()) },
    { org: "@foundersandcoders",  role: "dev", from: date(2024-09), to: date(now()) },
    { org: "@fac30", role: "grad", from: date(2024-09), to: date(2024-12) },
    { org: "@FAC29A", role: "grad", from: date(2023-09), to: date(2023-11) }
  ]
};

The Debris Left in My Wake

Current Hyperfoci

Name Description Links
โ˜‘๏ธ Name TBD turn static accessibility surveys into dynamic evolving conversations repo
๐Ÿ› Those Who Came Before procedurally generate artefacts from extinct fictional cultures & then make players deal with how they interpreted them repo

Dormant Ambitions

Name Description Links
๐Ÿงต Beacons store free text journals as actionable conversation graphs client / server

Seed Vault

Apps

Name Description Links
โณ Grand Chronicle taking someone who witnessed a historical event & see what else they lived through repo
๐Ÿ”ฎ Sparker a note-taking app that supports SEN groups repo
๐Ÿ—‘ Pretty Vacancies (1) ridiculous amount of work now (2) small convenience later repo

Games

Name Description Links
โœ’๏ธ The Work write a thesis in one night whilst staving off existential angst repo
Flyt defeat the village's champion boaster by using a changing world as inspiration repo

Whimsies

Name Links Year
Nihilistic Onboarder repo 2025
Hat Recommender repo 2025
Petulant God repo 2023
Melonhead itch 2022
Prisms itch/repo 2021
My Brothers, Counting itch 2020

Idea Graveyard

Name Links
Got My Back Repo
Knowledge Kata Repo

Field Guide to Jason

What Is It Doing?

๐ŸŒฑ Iโ€™m currently seriously learning about...

  • Svelte
  • neo4j
  • MCP servers

I'm also dabbling with...

  • ink (CLI Building Framework)

How Does It Behave?

  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on useless-yet-interesting linguistics utilities & neurodivergent revolutionary digital infrastructure
  • ๐Ÿค Iโ€™m looking for help with basic life skills
  • ๐Ÿ‘จโ€๐Ÿ’ป Also I started by bimbling about with ink stories
  • ๐Ÿ“ I wroted a book: here it is
  • ๐Ÿ’ฌ Ask me about arts pedagogy & interactive narrative
  • ๐Ÿ“ซ How to reach me: gently, and with a kind smile jason@foundersandcoders.com
  • โšก Fun Fact: There is no ethical consumption under late-stage capitalism

Hit Me Up

neurosocialist jasonwarrenuk neurosocialist


is rl dev, look

jasonwarrenuk

jasonwarrenuk

Pinned Loading

  1. foundersandcoders/LIFT02 foundersandcoders/LIFT02 Public

    Allow employees to document their workplace needs & share them with managers whilst retaining control of their information.

    Svelte 1

  2. those-who-came-before those-who-came-before Public

    Try to understand a vanished culture by interpreting procedurally generated artefacts

    Svelte 1

  3. fac30/things-we-do fac30/things-we-do Public

    Under Construction

    TypeScript 3 2

  4. foundersandcoders/rhea foundersandcoders/rhea Public

    An LLM-powered assistant for democratic/peer-led learning cohorts

    TypeScript