01// This is not marketing. This is our code.
02
03class Tessel {
04
05··// ─── identity ─────────────────────────────
06
07··team = 3
08··bureaucrats = 0
09··based = 'Europe'
10··channel = 'one Slack, one sprint at a time'
11
12··// ─── people ───────────────────────────────
13
14··members = [
15······{
16········role: 'EngineeringBackend/frontend development, system architecture, code review',
17········focus: 'code that ages well',
18······},
19······{
20········role: 'ProductProduct strategy, customer development, UX decisions',
21········focus: 'products people actually use',
22······},
23······{
24········role: 'OperationsProject coordination, deadlines, client communication',
25········focus: 'order over chaos',
26······},
27··]
28
29··// ─── stack ────────────────────────────────
30
31··uses = [ 'TypeScriptMain language — type-safe JavaScript', 'Next.jsReact framework with SSR and App Router', 'PostgreSQLRelational DB for production projects',
32·· 'PythonBots, automation, ML experiments', 'DockerContainerization and deployment', 'StripePayments: cards, BLIK, subscriptions' ]
33
34··// ─── values ───────────────────────────────
35
36··values = [
37····'ship steady',
38····'measure twice, cut once',
39····'docs as code',
40····'small team, real ownership',
41····'no estimates without scope',
42··]
43
44··// ─── pitch ────────────────────────────────
45
46··// Not cheaper.
47··// Not pricier.
48··// Built like it's ours.
49
50}