-
Notifications
You must be signed in to change notification settings - Fork 0
/
abosa.typ
3789 lines (3664 loc) · 118 KB
/
abosa.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#let globalcntr = counter("globalcntr")
#let code(
caption: none, // content of caption bubble (string, none)
bgcolor: none, // rgb("#fefae0"), // back ground color (color)
strokecolor: none, // 1pt + maroon, // frame color (color)
hlcolor: none, // auto, // color to use for highlighted lines (auto, color)
width: 100%,
radius: 0pt,
inset: 0pt,
numbers: false, // show line numbers (boolean)
stepnumber: 1, // only number lines divisible by stepnumber (integer)
numberfirstline: false, // if the firstline isn't divisible by stepnumber, force it to be numbered anyway (boolean)
numberstyle: auto, // style function to apply to line numbers (auto, style)
firstnumber: 0, // number of the first line (integer)
highlight: none, // line numbers to highlight (none, array of integer)
content
) = {
if type(hlcolor) == "auto" {
hlcolor = bgcolor.darken(10%)
}
if type(highlight) == "none" {
highlight = ()
}
block(
width: width,
fill: bgcolor,
stroke: strokecolor,
radius: radius,
inset: inset,
clip: false,
{
// Draw the caption bubble if a caption was set
if caption != none {
style(styles => {
let caption_block = block(width: auto,
inset: inset,
radius: radius,
fill: bgcolor,
stroke: strokecolor,
h(.5em) + caption + h(.5em))
place(
top + left,
dx: 0em,
dy: -(measure(caption_block, styles).height / 2 + inset),
caption_block
)
})
// skip some vertical space to avoid the caption overlapping with
// the beginning of the content
v(.6em)
}
let (columns, align, make_row) = {
if numbers {
// line numbering requested
if type(numberstyle) == "auto" {
numberstyle = text.with(style: "italic",
slashed-zero: true,
size: .5em)
}
( ( 0.1em, 1fr ),
( right, left ),
e => {
let (i, l) = e
let n = i + firstnumber
let n_str = if (calc.rem(n, stepnumber) == 0) or (numberfirstline and i == 0) { numberstyle(str(n)) } else { none }
(n_str, raw(lang: content.lang, l))
}
)
} else {
( ( 1fr, ),
( left, ),
e => {
let (i, l) = e
raw( lang:content.lang, l)
},
)
}
}
table(
stroke:none,
columns: columns,
rows: (1fr,),
gutter: 0pt,
inset: 1pt,
align: (col, _) => align.at(col),
fill: (c, row) => if (row / 2 + firstnumber) in highlight { hlcolor } else { none },
..content
.text
.split("\n")
.enumerate()
.map(make_row)
.flatten()
.map(c => if c.has("text") and c.text == "" { v(1em) } else { c })
)
}
)
}
// #set page( width:6.88in, height:10.50in, margin: (inside: 1in, outside: 0.5in), fill: rgb("#1d1f21")) // paper: "a5",
#set page( paper: "a5", fill: rgb("#1d1f21")) // paper: "a5",
#set text( font: "Iosevka", size: 7.0pt, fill: rgb("#c5c8c6"), slashed-zero: true ,fallback: false)
#set par(justify: false)
#[#set align(center)
#show raw: set text(font: "Iosevka Fixed", slashed-zero: true, size: 9.0pt)
#v(1fr)
```--
. * +* ,
*. '. +
. . . *
* ,~ . .
; ' + ` |,.~` o` +
+ , . -<O>-
' . . * . | . '
* : ;
., , __+,._,. *
--X: _ ,___+-_-`' \_ .
, '` (J?,.______,-' \ _J\ i \ .,
q_/{W\,`------------+-'|0| `- | :K---
[#] E ! `'----.,_______/00> \ '`
^, / |^ `+---+.,__\__,00/ _ / __._
/\__c. ,_ ,___ ] ] __o._________---`'+-____.,,__/`------^-`
^\/|\/_\/'`_`\/ ___w.
V V \|/ V\ "
```
#v(1fr)
#set text(size: 7.0pt)
#outline(title: [ABOSA])
]
#pagebreak()
#set page( fill: rgb("#c5c8c6"))
#set text( size: 15.0pt, fill: rgb("#c5c8c6"))
#stack(
dir: ttb,
image("img/faceless-mr-spaceman.png",width: 100%, height: 25%),
image("img/st-damocles-abloom.png",width: 100%, height: 25%),
image("img/st-damocles-helmet-frozen-with-lantern.png",width: 100%, height: 25%),
image("img/st-damocles-helmet-impaled.png",width: 100%, height: 25%),
)
#place(top + center, stack(dir: ttb,v(15%),highlight(fill: rgb("#1d1f21"), "S I G N A L - E A T E R "),v(20%),highlight(fill: rgb("#1d1f21"), "T O R O I D - F O R E S T "),v(20%),highlight(fill: rgb("#1d1f21"), "N U L L I N G - L A T T I C E "),v(20%),highlight(fill: rgb("#1d1f21"), "S U N K E N - M O U N T A I N "),))
#set page( fill: rgb("#1d1f21"))
#stack(
dir: ltr,
image("img/st-damocles-in-nightspore.png", height: 100%, width: 25%),
image("img/st-damocles-infinite.png", height: 100%, width: 25%),
image("img/st-damocles-helmet-tied-up.png", height: 100%, width: 25%),
image("img/st-damocles-helmet-open.png", height: 100%, width: 25%),
)
#place(top + center, stack(dir: ttb,v(15%),highlight(fill: rgb("#1d1f21"), "G R A D I E N T D E S C E N T "),v(20%),highlight(fill: rgb("#1d1f21"), "C O N F O R M A L C O L L A P S E "),v(20%),highlight(fill: rgb("#1d1f21"), "M A G N E T I C C O N F I N E M E N T "),v(20%),highlight(fill: rgb("#1d1f21"), "P O C K E T T O K A M A K "),))
#set page(footer: locate(
loc => if calc.even(loc.page()) {
align(left, counter(page).display("1"));
} else {
align(right, counter(page).display("1"));
}
))
#set text( size: 7.0pt, fill: rgb("#1d1f21"))
#set page( fill: rgb("#c5c8c6"))
#set page(columns: 1)
#image("img/faceless-mr-spaceman.png",width: 100%, height: 100%, fit: "cover")
#set page(columns: 2)
#v(1fr)
= A Ballad of Sundered Aegis
#v(1fr)
#set page(columns: 1)
#image("img/st-damocles-the-shephard.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 0)[```none
On briefest reef, I'm thrown off feet
by crystalline and latticed vine,
it bucks and birls me to stone seat,
refracting shines in eyes of mine.
With standup sight seeing sea drift
extending current observing,
I lay my head to never lift
and hope for rest I'm deserving.
And staring at both ailing suns,
a loathsome, midday blue dulls stars
over obtainable spectrums,
I can't spy old homesun pulsars,
nor horns of serpent runaway
that streekt from freak hollows that cracked
in outer arms of nebulae,
which cradled me when more intact.
Where go the void? Am I woken?
I'm lost afloat sea asimmer.
Devoid of most copernican
of sentiments, I'm set center,
as per tycho-modelled cycle,
muddled scribes of prideful mindings,
unfit to find archetypal
humbled vibes from spaceward sightings.
Cause: my nightspore test in falter,
effect: broke spatial symmetries
and high order cosmographer
buckled to basic binaries,
where empties roam with keen beckon
and loom with lensing bend in gleams
to dangle weapons we'd not reckon,
jettisoning gamma ray streams.
```]
#colbreak()
#code(numbers: true, firstnumber: 32)[```none
A solar lightnings' carving stun,
had waxing feathered in aether,
post-klaxon hum of trauma done,
prunes galactic blooms to wither.
Hither struggled, struggling still,
head weighing from gravitation,
bothers more than shrugging winds' shrill
wavering of kite in motion.
Then low orbit imitations,
stellations of tetrahedrands,
aglow raw grit scintillations,
well oceans out from tearing glands,
as if my ship that dust the skies,
that gave grief on way and to leave,
reflects as real in my eyes -
I've lost escape with no reprieve.
In fleeing squall unknown to me,
I cut anchored familiar
which sank me near instantly,
consigning lapsed inferior
to briny, planetary churn
of tame oceans' laconic soak,
tugging parachute taciturn,
with lame, aphonic, coastal choke.
In silent scream absorbed in grasp
of black, long made before the fall,
my mouth agape emits no rasp
on stereo radio call
of ceaseless noises, double-talk,
a drowning EM tidal crest
through lowlands loch that acts to block
my call of distress: "just to rest..."
```]
#set page(columns: 1)
#image("img/st-damocles-searches-for-wandering-aengus.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 64)[```none
No rest there was, I would not keep
out there because exosuits leak
cool air to heat with quick'ning beep,
those caught who want exit ought seek.
Bursting steam clouds my panoptics,
I toe streams I dare to wade through,
putting trust in field magnetics,
my rusting armour pays its due.
With metal-wrap and high-grade gloves,
I'm nervous thing on offhand lam,
poor chap jaded and strayed from love,
far out of reach of friends and fam,
I drove myself through endless void
and found myself in blinding fogs,
alive with self, not paranoid
where only self could haunt the bogs.
But sensors in sinew don't soothe
these systems trained as danger sleuth,
the shapes bored brains make from the smooth
and spikes of noise mistook for truth.
The isolation of the mist
have wits reform and nerves revive
in deprivation, tightened fist
does not affirm that I'll survive.
The fact, which hid beneath the hurt
I felt when in the way of harm,
is that my heart's ever alert
and that my suit would false alarm.
I see the choice that's left in mire
what remains I cannot eschew,
I can fear what has been prior
or harbour fear of something new.
```]
#colbreak()
#code(numbers: true, firstnumber: 96)[```none
But comforts come from certainty
and thrumming of monotonies,
a metronomic tendancy
helps isolate anomalies
and formerly-perceptual,
conceptual consternations
are cancelled-out, predictable,
perpetual palpitations.
Deterministic, anxious waves
of bugs in ears and fungus grown,
are all that's left in coward caves,
I've chosen to suffer the known.
... 'til worry of higher degrees
is wearing pocked and fissured plates,
swapping odds of bayesian likelies,
where unknowns ever generates.
Befriending shadows on the wall,
pretending comfort's what I felt
did not stop magma curtain call
as lava flows where shadows dwelt.
I see in vain with eyes wide shut
as pupils strain with contraction,
with darkness gone my lie in rut
was futile to vie with action.
Not to be mistaken for brave,
my sprint to screaming frequencies,
is more a run from painful grave
of lustful molten rock and seas.
As clouded chaos quiets some,
approaching shores of placid dunes,
I know the cause when that plight come,
the deserts' dry, decrepit croons.
```]
#set page(columns: 1)
#image("img/st-damocles-jumps.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 128)[```none
The sea of glass is forming rift
to vast periphery skyline
with quaking shift of sands in sift
to ebb this heavy head of mine.
At edge where grains can fall both ways,
atop a point langrangian,
I'm safe as last man of blank bays,
but subject to blare gaussian.
Those sisyphean oft ashame,
they'd dream to take this battle slow,
frenetic static hits me same
yet makes my thin bones rattle so.
I wrestle neck up to behold,
the old-world mechanistic grind
of what is digging gap foretold,
a whining and machinic kind.
Bevy of antennas wired,
rhizomes strafing past afloating,
adjoint to roaming ore spired
via hanging mast it's toting.
Forlorn hoverer, overdrawn,
does fawn over a gaping black,
seems tired with yawn held upon,
does it drag hole or hole drag back?
I'm sick of this, I just want home,
I've no such form to face the dawn,
of tricks of light nor migraine chrome,
this is not norm for brittle-born
whose worn and crappy shell would split
like licks of flame in dry biome,
like origami delicate
from war-torn, age-old, langsyne tome.
```]
#colbreak()
#code(numbers: true, firstnumber: 160)[```none
It seems my hands are ill-defined,
exclusion principles resign,
I'm swimming in space undefined
no pull to which I can align.
With frantic swiping at the sands
ignored among acoustic seas,
surrounding resonating bands
eternally returns unease.
How could I jam noise and combat
approach so slow I'd not notice,
when this is strong evidence that
what was designs again what is?
Commands of ancient echelon,
back then were instrumental,
now march of progress marches on
where monument moves tangential.
'Neath unpermitting monolith,
I peer into unlit pit
which swallows tight-knit regolith,
uplifting what's hid from suns hit.
It brings to light a slighter thrust
to take the loss upon the chin,
unloosened kite I need not trust,
one up or down must take me in.
I haven't strength to fight the flow,
no option but surrendering,
but smart conceding can help show,
by notion of uncentering,
not it nor I is all to know,
there is no point of origin,
it's relative to say I'm low
with deeper parts to forage in.
```]
#set page(columns: 1)
#image("img/st-damocles-in-gravitational-disorientation.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 192)[```none
Weight of planets draw me humble,
feckless I flee conscious id,
like up-turned insect flights fumble,
like reckless, concientious kid
would fall again as fools tend to,
when leaping off well-meaning height.
Do not regard the hopes untrue,
the real's atop intent in might.
The buzzing cranks will overturn
as free as link in chain that's drug
around a wheel that returns
with wingspeed of the smallest bug,
and not a smack nor swat nor swing
will free me from metallic groan,
kinetic lack is what I bring,
rescinding potential I loan.
I spot the interlocks to thread,
the ratchets cranking obstinate,
my 'chute now covers up my head,
pronouncing me deadlocked dimwit,
and I'd not argue when entranced
by rhythmic happenings that spin
and without asking have advanced
to do with me what they have been.
In a fall categorical
of all the ones that came before,
why relearn what's historical?
I'd rather cognisance withdraw.
In cybernetics take over,
mechanical in my descent,
what help's knowing parabola
in trip I've no hope to augment?
```]
#colbreak()
#code(numbers: true, firstnumber: 224)[```none
I hide away with shame I learnt,
behind replay of muscle logs,
and accept humility earnt
as gear caught in cosmic cogs,
but lingered in the cavity,
no longer than a blink to see,
a reversing of gravity
returning myself back to me.
A siphoning has strings near snap
in plane non-orientable,
then transformation of flat map
from surface low-dimensional
has stresses flip in changing draft
to scene non-representable,
dilating under dome-like shaft
where straight lines seem more bendable.
The data loading out the banks
in rushed retrace of path unsure
puts hole in taxonomic ranks
of gushing founts of matter lure.
My harness fit for lowerings,
and glidings to ataxia,
in guidance upside towerings
does not aid ataraxia.
The undercarraige winds me back
I stab my kite that's bound on bolt,
and nylon lace in tangled slack
experienced inertial jolt.
I grasp from hook-edged wand-knife held
machinic drive is not enough
to clasp forsook, dredged land-waif felled
from cynic dive to inert slough.
```]
#set page(columns: 1)
#image("img/st-damocles-in-the-stomach-of-the-signal-eater.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 256)[```none
Letting lack of cause by nature
indicate a fleeting reason,
taking slack I rouse to future,
to explore what life can squeeze in,
while translating branching pathways
to a stack of cornered maze tree.
I try not see lazy delays
in repeating sierpinski.
Uncivil sorts of architects,
made halls inside all bent and creased,
so navigation's made complex,
as if for blind and charging beast,
like time itself is light deceived
to solve the shortest ways to where
it tries to take all turns conceived
at rate the junctions' will can bear.
The turn-arounds in labyrinth
have ground-up plans like knotted rings
to cluster carbons knelt at plinth
that supplicate engineering,
"Please keep the minotaur from me."
In byzantines of dread I stray,
redundantly heeding to he,
my ruminations' ox-head fey.
Scrutinizing route unwinding,
how I searched for centroid secret,
I'd not get there without finding,
notetakers, in corners, had writ:
"quarks amiss will attend again,
where photo-electric clockworks
quantized to mass distend refrain
through echo-concentric networks.
```]
#colbreak()
#code(numbers: true, firstnumber: 288)[```none
The slits of lasers phase in rhyme
with timing blinks in hidden screen,
reducing blits to local time
missed universal state unseen.
No matter if you're standing near,
or scatter as you're no more seen,
know you were always to be here
and here you will always have been."
In map of roads I'd rush to take
from angled, firmamental look
against those roads I would forsake,
I found it's time that I forsook.
Instead I'll note so simple truth,
a measured time's not time perceived,
deadends I hit when in my youth
can linger longer than believed.
And so I know why still I fight,
because they fought for me before,
they've quietened to null-like night
but grief for them breaks walls and draws
upon the sorrow of the slights,
recesses holding wrongward doors,
I learnt I had to see from heights
a way to wrench archways in floors
to distributed cores that bring
the beams whose course was overshot
but know the ones that split offspring
could find their way to better lot.
Unhid, pervasive cables showed
interconnections resonate.
I flood systems for overload
with chants of lives concatenate.
```]
#set page(columns: 1)
#image("img/the-hand-of-st-damocles.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 320)[```none
Losing footing on carapace
and distancing from what I've said,
all words unheard would far outpace
those of me own that I'd re-read.
I'd tried hard with kernel of code,
in each part you were embedded,
might not prompt recursive download,
but at least I'm clear-headed.
Sudden silence, hope then dreading
whirring stop leads an unsteading,
pyramid descends on threading
blurred in drop with circled heading.
Shifting forces makes sand syrup,
moving land to stable new state;
though my beacon's no more corrupt,
I'm caught in sands and now must wait.
Like desert dripped through fingers slipped
that's stranding me in sorry place,
and dropping what I have not gripped
I've weighted feet and cannot chase
you racing others unsated,
whose needing more than I can serve
allowed, for me, what's awaited -
a rest that I may not deserve.
Constant loudness seemed so massive,
rampant shrewdness of racous breaths,
sets like suns now, less oppressive,
lurking down in vacuous depths.
No din from aerial arraign,
my bones repose under my skin,
no more enduring absent pain,
no poke nor stab, no prod nor pin.
```]
#colbreak()
#code(numbers: true, firstnumber: 352)[```none
Some would think it grim, the moments
it slips my mind that you did go,
but simulacra holds remnants,
like sticker stars on ceilings glow.
In pretense that you stayed unslain,
I play that you lay at surface,
suspending thoughts to keep me sane,
that clay animate serves purpose.
Enduring phospheresences
saving sensory connection,
cautioning risk to defenses
I air one more choice dejection,
sending signal that won't diffuse,
about more than a long to rest,
amending logs with longheld news
confessing I've not lived my best.
Weakness showed through insulation
sought within a wrought transparence,
part refraction, part reflection,
barely asserted appearance,
readying to shirk hand given,
assuming givers would not care
for empty body undriven,
a skin not lived in, life laid bare.
Longer was I not and won't be
than ever do I patient wait,
but pulsar clocks time not mem'ry
I'm holding through the hours late.
I'll leave my hand above and free,
to grow like seeds take time to wake,
and know I can be company,
if someone needs a hand to take.
```]
#set page(columns: 1)
#image("img/st-damocles-abloom.png",width: 100%, height: 100%, fit: "cover")
#set page(columns: 2)
#v(1fr)
= Awaiting Healing Damocles
#v(1fr)
#set page(columns: 1)
#image("img/st-damocles-and-the-geometry.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 384)[```none
Something pulling the husk of me,
does bring me up to dusk abray -
offbeat, untrue geometry -
I would it leave me to my way.
It's not for love of me it woke,
No ambling in the trail left,
and rambling doesn't draw out talk,
implies concern for me bereft.
Its heft externally unmoved,
affixed but shearing through essence,
to shrink its stern and grow saw-toothed
it propagates wave-like presence,
while deftly with ferritic steel,
lashing out from inner spaces,
wiry lengths with neurotic zeal
probe and pull from many faces.
At the target of its phases,
where the sand subsumes the sun in
terra incognita hazes,
terrors in what this could summon
haunt the ghosts that's in the shaping
of this ever changing creature,
I'm reminded of my shaking,
searching remains not my nature.
Conditioned for unchanging states,
I'd no concerns once I withdrew
to sheltered grey where naught rotates.
Still set, do suns? Or set anew?
The atmos rayleighs to rawed flesh
as cleik at wrist begins to ache.
Metallic tendrils of ored mesh
must take of me for its own sake.
```]
#colbreak()
#code(numbers: true, firstnumber: 416)[```none
Agitating planed-marauder
osculating many molded
manifolds trained out of order
has me as fodder enfolded.
A nobler person would assess
and find to where, or what, their drawn,
but nimbler flight's skill I possess,
I'm spaceborne who's not built for brawn.
I spy athort much birk and bush
that sprout from seeds that sunward crawl,
to mask my being under lush
might take to task that cornered sprawl.
Trees seem greener against greying
workings of impatient other,
forking structures their displaying
cover rather than to smother.
Greener parts I'm trusting over
intimmers of machine spirit,
from under its focussed hover
I better the grasp and quick flit
where worrying misgivings run,
ignorant of destinations,
suns are irrevocably spun
to strange new orientations.
My shadows, split infront, extends
to faster welcome in forest
as follows my hunch that impends
for this I might be sorriest.
With all discomforts considered,
I left what dragged me out to life
and fled with no thoughts as yet heard
that wild could sooner cause me strife.
```]
#set page(columns: 1)
#image("img/st-damocles-amalgamates.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 448)[```none
'Til by and by the chase abates,
and stalker leaves me to this zone,
I break a branch to brace in wait
and speak no sound and hunker prone
enthroned on leaf-ridden and thorned
forewarnings not to unsettle,
should I disturb horrors adorned
in heather, hazel and nettle.
'Neath the clover flakes what's whittled,
and overwhelmed, I pare abune,
squinting at flora that rippled
with unbid, whistled, elm-spun tune.
All the action flutters here
like twisting metal planes disjoint -
almost carved this staff to spear
with my concern sharpened to point.
Mould spores cunningly suffocates
muffled buzz of transparent wings,
before brownian glides to fates,
to ruffle and writhe on floors' springs,
as this life-filled microcosm
would strive to swiftly kill each part
for darwinian death spasm
that shoots out pain then falls apart.
Life must oppose, if else it chose
it's destined to then self-destruct,
its agency to decompose
I cannot blame, but must reluct,
ambivalence to existence
is concept I can understand,
but preference for malignance
to face down death should life demand?
```]
#colbreak()
#code(numbers: true, firstnumber: 480)[```none
This is decay, this is a mould
that overtakes and inter-knots
with neurons no more self-controlled
with self-honed make of home-grown thoughts.
In broken systems, to excel
is not a goal I will pursue,
bespoken own environ cell
will sterilize me of mildew.
But neutral plates that would safekeep
my softer sides that easy rip
from brutal hits may still yet seep
this lichen bloom upon my hip.
To keep detached from what I see,
I dig with knife along waistline;
I will not let you grow from me,
I am my own and you're not mine.
The place and route trace multiplies,
my chest is bound in tight'ning lines
as body systems rectifies
from frightful sight of me-shaped vines.
The trumpets sound, I cut too deep
and cooling fluid starts to ooze,
I realise rot need not creep,
by sight alone it warps my views.
I'm not a whole conglomerate
with barrier to chemicals
but set of wires disparate
of multiple recepticles
with twining, woven causation
that nature discards when sees fit.
A single interpretation
and I am always part of it.
```]
#set page(columns: 1)
#image("img/st-damocles-looking-round-the-torus-forest.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 512)[```none
My copper frayed capillaries
were shorted by ablasive rends.
They flailing rejoin filigrees
repairing scarred and mislinked mends,
as nervous system softly drones
and circulatory beats slow,
respiratory dulls to moan
as muscles cannot stow airflow.
Skeletal sags as jelly mass
for I'm easy to make shaken,
resumed exhaustion will not pass,
I'm wanting sleep though just woken.
"Cover me in reeds and river,
and bury me in humbled glen,"
speaks my soft, small voice aquiver,
the words of beaten, stumbling men,
"My reddened eyes and stooping spine
and quaking lower lips of cry,
would see less pain should birch and pine
emerge to split and rip thereby
erasing all humility
and hiding shame within the tree,
replacing this futility
of subsets to biology.
Drink my tears and drain thin shell,
leave only bones so none may tell,
and please keep what you secret well,
how surely defeated I fell."
But caught amongst ambivalent
sustained perennial thickets,
my plea's answered equivalent
with chirping of lonely crickets.
```]
#colbreak()
#code(numbers: true, firstnumber: 544)[```none
I've reached again a lower best
in failure to truely assess,
inconsequence of me to rest,
and dominance of due process.
Through vocal flinch of vain whimper
my local signal's loud spoken,
I'm gasping roach that crawls nowhere,
I'm branch in wait to be broken.
If nature is not stopping me,
a bug on lens and magnified,
a simple pest then I must be,
and help to me it won't provide,
save soaking up the aftermath,
once all my limbs are laid to ground,
and I'm exhausted of all wrath
that keeps me from that patient mound.
My staff does creek under the weight
of weakened frame I've well-burdened,
I weakly seek on wayward straight
a scarce treeline of woodland end.
I mount what could become headstone,
to find I look back where I came
and ev'ry pathway I have known,
at once, I see all look the same.
And from all sides, it seems to me -
a joke from old and weary japes -
to me floats that geometry
of manifold and flickered shapes,
since in my panic I still screamed
in waves of radioed distress,
so that my place to all is beamed,
so only me is lost in mess.
```]
#set page(columns: 1)
#image("img/st-damocles-breaks-geometry.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 576)[```none
Incalculable dimension
or undeniable green lay,
offended by comprehension
I throw myself in anyway.
To those with hope, there's no surprise,
but me, on whom patterns persist,
find nary a need for war cries,
the shapes tilt only to assist.
Pressed upon by stronger lustre,
rising pressure of deflections
reflects my parts which can't muster
some such measure to sum fractions,
typical when forked and scattered
in diffractions as external
distractions reverse to mirror
total reflections internal.
Lurching, displaced from conventions,
perceptions in sight unbending
and stretching out in directions
with no deference to ending,
rangily unreferencing
my existence in ascending
or falling lost difference in
change where stasis is upending.
Middling models and metaphor
are closest to reality
my stuttering must settle for,
reality's too much for me,
and any probability
that I may utter falsity
is sourced from my fragility,
confused, but lies in honesty.
```]
#colbreak()
#code(numbers: true, firstnumber: 608)[```none
At risk of seizure, eyes tight-held,
I guess my path through unmapped realm,
and use math thought wrong but upheld,
it finds me whole upon the helm
of heart.. or brain.. something arcane?
I'd not know on the best of days,
this work outlives any refrain
attempting trite descriptive phrase.
In all I've said and want to say
was wrestling of what I knew
without to know, objectively,
the proof that what I say won't skew
and go selectively astray
through filters of senses preset,
undeniably the process
automates a hopeful mindset
with countless inconsistencies
of unconscious machinations
exploiting inefficiencies
of architecture's foundations,
'til human error probing node
would eagerly erode pipelines,
so overload will then explode
in power surge and coil whines.
I take apart its counting ticks
and try read clicks through instructions
to find the art and all the tricks
on how to fix my own functions.
Though as I am, maladjusted,
my instrospective efforts crash,
breaking down and leaving busted
careful addressing made nonce hash.
```]
#set page(columns: 1)
#image("img/st-damocles-frozen-over.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)
#code(numbers: true, firstnumber: 640)[```none
And so unfolds same old mistakes
through lateral breaches ill-spaced,
creating viscous flows and wakes
of untold centuries unlaced.
On watching pinholes at time's pace
from deepest of wells that dilate,
these apertures in long-dead space,
with parallax, parambulate.
Specks of stars start switching off then
as moth-filled void outstrips my trance.
Foremost orbs' orbit held brisken
three-body game caught me in dance.
Two around, bound tight, revolving,
One which lacks accretes from other
spinning disk, risked on dissolving,
leaving husk post-starcrossed nova.
Last leg fusion rebeginning,
unremitting until fatal
loss of energy to spinning,
hardens core into a metal.
Mass ejection sent suspending,
weighing heaviness disheartens,
lessens momentum defending
egressing of what enlightens.
Not the kind that's dying to fight,
nor in search of fight to die in,
I don't mind this entropic flight,
beyond recall, no use trying.
At last expelled out from deep well,
effects postponed in distant blast,
I'm lone zombie in extant shell
the knell of binaries now past.
```]
#colbreak()
#code(numbers: true, firstnumber: 672)[```none
What hell to which I wend below,
like feather off a burning wing,
is not likely to help resew
the loose ends I've left dangling.
The emptiest have eased impact,
so I replace, with spaciousness,
the sensors to which I react,
regaining once-held weightlessness.
What breaks down toroid transformer
cracking joints which absorb unkind?
No grass to touch, no unformer,
what's to become of coil untwined,
like string pulled far from line of sight,
left unstrung on this frozen glen,
ablow a sky quartered by light,
over cutting cold ben midden?
With no concern nor decision
I can't discern if fall or float,
what could be cratered collision
reduced itself to asymptote.
Excavation being thorough,
no sensation stirs me writhing,
matching ambient sub-zero,
thermals would show nothing living.
Yet, seemingly my suit withstood,
though numb to burns of re-entry,
would do more harm than any good
to check diagnostic sentry.
I cannot process what's to come,
returned to flat chronology.
I'll wait on my delirium
to resume rote tautology.
```]
#set page(columns: 1)
#image("img/st-damocles-alight.png",width: 100%, height: 100%, fit: "contain")
#set page(columns: 2)