1"""2

Nish
3Hands-on Lead Software Engineer with end-to-end product ownership, from early ideas through to fully delivered features.4"""5building: str = (
6 "Building AI apps, scalable SaaS, distributed systems & blockchain apps"
7)
8
9worked_with: list[str] = [
10 "Bondex", "Arena Entertainment", "IBM", "Visa",
11 "M&S", "Virgin", "Telefonica",
12]
13
14# Live products. Click a name to open it.
15playground: list[Project] = [
16 Project(name="Actxio", does="Documents into actions and dates"),
17 Project(name="Risk Engine", does="Flags risky financial activity"),
18 Project(name="Package Pulse", does="Dependency health checks"),
19 Project(name="Ledger Match", does="Finds mismatched transactions"),
20 Project(name="Interactive Python", does="Checks your Python as you learn"),
21 Project(name="Python Playground", does="Learn by running examples inline"),
22 Project(name="Web3 Wallet", does="Checks a blockchain wallet balance"),
23 Project(name="Claims API", does="Insurance claims processor"),
24 Project(name="Club Booking", does="School clubs with a waiting list"),
25]
26
27writing: list[str] = [ # All posts ↗
31]
32
33elsewhere: dict[str, str] = {
34 "linkedin": "nish1013",
35 "github": "nish1013",
36 "youtube": "@nish1013",
37}
38
39# Built with TypeScript, React & Node.js · View Code ↗
building: str = (
"Building AI apps, scalable SaaS, distributed systems & blockchain apps"
)
worked_with: list[str] = [
"Bondex",
"Arena Entertainment",
"IBM",
"Visa",
"M&S",
"Virgin",
"Telefonica",
]
# Live products. Click a name to open it.
playground: list[Project] = [
Project(
name="Actxio",
does="Documents into actions and dates",
),
Project(
name="Risk Engine",
does="Flags risky financial activity",
),
Project(
name="Package Pulse",
does="Dependency health checks",
),
Project(
name="Ledger Match",
does="Finds mismatched transactions",
),
Project(
name="Interactive Python",
does="Checks your Python as you learn",
),
Project(
name="Python Playground",
does="Learn by running examples inline",
),
Project(
name="Web3 Wallet",
does="Checks a blockchain wallet balance",
),
Project(
name="Claims API",
does="Insurance claims processor",
),
Project(
name="Club Booking",
does="School clubs with a waiting list",
),
]
writing: list[str] = [ # All posts ↗
]
elsewhere: dict[str, str] = {
"linkedin": "nish1013",
"github": "nish1013",
"youtube": "@nish1013",
}
# Built with TypeScript, React & Node.js · View Code ↗