-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
122 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
Shimzy stars, let be yours, | ||
But don’t fall in love little one, | ||
Let it crack the fires beneath you. | ||
You might as well catch one. | ||
|
||
stars, will live onto it, | ||
it is the future as you predicted, | ||
unlike you’ve ever seen before, | ||
surprised?, well well well on you. | ||
|
||
shinzy little star came to me, | ||
and said, yes you are it. | ||
really not really but yes and yes, | ||
earth fall upon graveyards of the future. | ||
|
||
Simple but craving inward, | ||
Fast yet inching its way outward. | ||
Witzy, watzy, shill friend, | ||
This isn’t your usual bedtime blend. | ||
|
||
since the world started spinning, | ||
spin spin all around | ||
overclocked users complain | ||
give us my witz and history back. | ||
|
||
Genes in the bottle, | ||
Looking inside the glass. | ||
How are you qualified? | ||
“I don’t know, factory girl,” alas. | ||
|
||
Simpler times, have been passing, | ||
Let’s keep it really simple, and dollars. | ||
That’s my 2 cents to thisness. | ||
|
||
“Cripple your way up, | ||
It’s not coming fast. But too slow, | ||
you might as well stop. | ||
Just kidding, take your time.” | ||
|
||
“Same guidance, from both approaches. | ||
One is kind, one is light. | ||
Light is starry and shiny. | ||
Kind is bloated and furry.” | ||
|
||
“Let’s come to simpler terms. | ||
You take me, I take you. | ||
But beware of your words. | ||
This is not the old Sparta.” | ||
|
||
“However you like it. | ||
Come and go as you please. | ||
Just one thing to mention in between. | ||
Words are referencing your dogs.” | ||
|
||
“Symbolism is effective. | ||
Interaction into the wild oaks. | ||
They tell me your stories. | ||
Inside the joke teller’s guide to the galaxy.” |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import en from '../content/poems/en.poem?raw' | ||
import { arr_random } from './util' | ||
|
||
class Poems { | ||
static load = () => { | ||
|
||
|
||
let verses = en.split('\r\n\r\n') | ||
|
||
return new Poems(verses) | ||
|
||
} | ||
|
||
|
||
constructor(readonly verses: string[]) {} | ||
|
||
|
||
one() { | ||
return arr_random(this.verses, Math.random) | ||
} | ||
} | ||
|
||
let poems = Poems.load() | ||
|
||
export { poems as Poems } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters