Compare commits

...

11 Commits

Author SHA1 Message Date
vilmibm
ecfe9c19ef towncon stuff 2025-03-12 15:22:40 +00:00
vilmibm
115c33d94e try to make color more background neutral 2024-09-03 04:02:39 +00:00
vilmibm
8c2133a2bb copy 2024-09-02 05:16:50 +00:00
vilmibm
93836671c6 fix ctrl+c thing 2024-09-02 05:16:39 +00:00
vilmibm
4c37f429a8 wording 2024-09-02 00:42:48 +00:00
vilmibm
217f341abc sih 2024-09-01 23:52:29 +00:00
vilmibm
6f355ed0e6 towncon webpage 2024-09-01 23:45:08 +00:00
vilmibm
57d30a677d stuff 2024-09-01 23:34:37 +00:00
vilmibm
b9bd05402d jams 2024-09-01 23:22:13 +00:00
vilmibm
d950aaead2 submit 2024-09-01 23:05:25 +00:00
vilmibm
c46e8806d0 include username lol 2024-09-01 21:04:38 +00:00
6 changed files with 475 additions and 26 deletions

View File

@ -55,7 +55,7 @@ bin/stats: cmd/stats/main.go bin
bin/contrib: cmd/contrib/main.go bin
go build -o bin/contrib ./cmd/contrib
bin/con: cmd/towncon/main.go bin
bin/con: cmd/towncon/main.go cmd/towncon/md/* bin
go build -o bin/con ./cmd/towncon
bin/request: cmd/request/main.go bin

View File

@ -35,7 +35,6 @@ func banner() (string, error) {
}
return string(content), nil
}
func info() error {
@ -43,7 +42,28 @@ func info() error {
if err != nil {
return err
}
out, err := glamour.Render(string(infoContent), "dracula")
out, err := glamour.Render(string(infoContent), "auto")
if err != nil {
return err
}
cmd := exec.Command("/usr/bin/bat")
cmd.Stdin = strings.NewReader(out)
cmd.Stdout = os.Stdout
return cmd.Run()
}
func schedule() error {
scheduleContent, err := md.ReadFile("md/schedule.md")
if err != nil {
return err
}
r, _ := glamour.NewTermRenderer(
// detect background color and pick either the default dark or light theme
glamour.WithAutoStyle(),
// wrap output at specific width (default is 80)
glamour.WithWordWrap(120),
)
out, err := r.Render(string(scheduleContent))
if err != nil {
return err
}
@ -63,6 +83,7 @@ type physicalData struct {
}
type rsvpData struct {
Username string
Being string
PhysicalData *physicalData `yaml:"PhysicalData,omitempty"`
Freeform string
@ -114,7 +135,7 @@ func rsvp(o opts) error {
huh.NewConfirm().Title("If the need arises are you ok sleeping on a couch?").
Value(&couch),
).WithHideFunc(func() bool {
return being != "physical" && !lodging
return being != "physical" || !lodging
}),
huh.NewGroup(
huh.NewInput().Title("Do you have any food allergies I should be aware of?").
@ -130,7 +151,7 @@ func rsvp(o opts) error {
huh.NewGroup(
huh.NewText().
Title("Anything you want me to know? Any questions?").
Value(&freeform)))
Value(&freeform))).WithTheme(huh.ThemeBase())
err := form.Run()
if err != nil {
@ -151,11 +172,193 @@ func rsvp(o opts) error {
}
rd := rsvpData{
Username: o.Username,
Being: being,
Freeform: freeform,
PhysicalData: pd}
return sendRSVPEmail(rd)
if err = sendRSVPEmail(rd); err != nil {
return err
}
fmt.Println("THANK YOUUUU!U!U!UU!U!!!!~~~!~!~~!!!!!UUU")
return nil
}
type submitData struct {
Username string
Live bool
When string
Desc string
Length string
Interactive bool
Freeform string
}
func sendSubmitEmail(sd submitData) error {
bs, err := yaml.Marshal(sd)
if err != nil {
return err
}
return email.SendLocalEmail("vilmibm", "SUBMISSION TOWNCON24", string(bs))
}
func submit(o opts) error {
submitContent, err := md.ReadFile("md/submit.md")
if err != nil {
return err
}
out, err := glamour.Render(string(submitContent), "auto")
if err != nil {
return err
}
fmt.Println(out)
submitting := true
var live bool
var talkWhen string
var length string
var desc string
var freeform string
var interactive bool
notSubmitting := func() bool {
return !submitting
}
form := huh.NewForm(
huh.NewGroup(
huh.NewConfirm().Title("So...wanna submit a thing?").Value(&submitting),
),
huh.NewGroup(
huh.NewConfirm().Title("Excellent. Is it a live talk?").Value(&live),
).WithHideFunc(notSubmitting),
huh.NewGroup(
huh.NewInput().Title("During what time frame can you give the talk").
Description("please include relevant time zone information!").Value(&talkWhen),
).WithHideFunc(func() bool { return !live || !submitting }),
huh.NewGroup(
huh.NewText().Title("Please describe your submission").
Description("Include details like media format, topic, whether it's text or browser based.").Value(&desc),
).WithHideFunc(notSubmitting),
huh.NewGroup(
huh.NewInput().TitleFunc(func() string {
if live {
return "About how long is your talk?"
} else {
return "If your piece has a duration (eg audio/video), approximately what is it?"
}
}, &live).Value(&length),
).WithHideFunc(notSubmitting),
huh.NewGroup(
huh.NewConfirm().Title("Is your submission interactive?").
Description("for example a game or website").
Value(&interactive),
).WithHideFunc(func() bool { return !submitting || live }),
huh.NewGroup(
huh.NewText().Title("Anything else I should know?").Value(&freeform),
).WithHideFunc(notSubmitting),
).WithTheme(huh.ThemeBase())
if err := form.Run(); err != nil {
return err
}
if !submitting {
fmt.Println("ok! just run the command again if you change your mind~")
return nil
}
sd := submitData{
Username: o.Username,
Live: live,
When: talkWhen,
Length: length,
Desc: desc,
Freeform: freeform,
Interactive: interactive,
}
if err = sendSubmitEmail(sd); err != nil {
return err
}
fmt.Println("THANK YOU!! I'll be in touch~")
return nil
}
type jamData struct {
Username string
Desc string
Physical bool
}
func jam(o opts) error {
jamContent, err := md.ReadFile("md/jam.md")
if err != nil {
return err
}
out, err := glamour.Render(string(jamContent), "auto")
if err != nil {
return err
}
fmt.Println(out)
submitting := true
var desc string
var physical bool
notSubmitting := func() bool {
return !submitting
}
form := huh.NewForm(
huh.NewGroup(
huh.NewConfirm().Title("So...wanna propose a jam?").Value(&submitting),
),
huh.NewGroup(
huh.NewConfirm().Title("Excellent. Does it require being in person?").Value(&physical),
).WithHideFunc(notSubmitting),
huh.NewGroup(
huh.NewText().Title("Describe the jam.").
Description("Include details like required knowledge or tools").Value(&desc),
).WithHideFunc(notSubmitting),
).WithTheme(huh.ThemeBase())
if err := form.Run(); err != nil {
return err
}
if !submitting {
fmt.Println("ok! just run the command again if you change your mind~")
return nil
}
jd := jamData{
Username: o.Username,
Desc: desc,
Physical: physical,
}
if err = sendJamEmail(jd); err != nil {
return err
}
fmt.Println("THANK YOU!! I'll be in touch~")
return nil
}
func sendJamEmail(jd jamData) error {
bs, err := yaml.Marshal(jd)
if err != nil {
return err
}
return email.SendLocalEmail("vilmibm", "JAMPROP TOWNCON24", string(bs))
}
type opts struct {
@ -163,13 +366,6 @@ type opts struct {
}
func _main() error {
b, err := banner()
if err != nil {
return err
}
fmt.Println(b)
u, err := user.Current()
if err != nil {
return err
@ -179,27 +375,47 @@ func _main() error {
Username: u.Username,
}
fmt.Printf("\t\t^_^_^_^_^_^_^ hi ~%s ^_^_^_^_^_^_^\n", o.Username)
b, err := banner()
if err != nil {
return err
}
fmt.Println(b)
fmt.Print(fmt.Sprintf("\t\t^_^_^_^_^_^_^ hi ~%s ^_^_^_^_^_^_^\n", o.Username))
fmt.Println()
var mode string
huh.NewSelect[string]().Title("whuddyu wanna doo?").
// NB: this could be a standalone prompt but when it is, ctrl+c behavior is goofed up.
form := huh.NewForm(
huh.NewGroup(
huh.NewSelect[string]().Title("whadduyu wanna doo?").
Options(
huh.NewOption("Get an info dump", "info"),
huh.NewOption("SEE SCHEDULE", "schedule"),
huh.NewOption("RSVP", "rsvp"),
huh.NewOption("Submit a talk proposal or finished work", "submit"),
huh.NewOption("Submit or propose a work (talk, art, etc)", "submit"),
huh.NewOption("Propose a creative jam", "jam"),
huh.NewOption("Quit", "quit"),
).Value(&mode).Run()
).Value(&mode))).WithTheme(huh.ThemeBase())
err = form.Run()
if err != nil {
return err
}
switch mode {
case "info":
return info()
case "schedule":
return schedule()
case "rsvp":
return rsvp(o)
case "submit":
return submit(o)
case "jam":
return jam(o)
case "quit":
default:
return fmt.Errorf("wtf '%s'", mode)

View File

@ -1,8 +1,8 @@
# TOWN CON INFORMATION
TOWN CON is a celebration of tilde.town's 10 year anniversary featuring 24 hours of talks, art, and music by townies.
TOWN CON is a celebration of tilde.town's 10 year anniversary featuring a day of talks, art, and music by townies.
TOWN CON begins at 0:00 UTC on October 11, 2024 and ends 23:59 UTC on October 12, 2024.
TOWN CON's OFFICIAL START is now 10:00 am on October 11th in US Central Time (15:00 UTC). It ends when we run out of energy late on the 11th.
There is an additional day of TOWN CON on October 12th for townies attending TOWN CON MEAT EDITION in Chicago, Illinois, USA.
@ -14,7 +14,7 @@ Works submitted by townies will all be slotted into a viewing schedule to run th
The text mode environment will either be a HERMETICUM instance (if I finish the project in time) or just IRC.
### JAMS
## JAMS
Throughout the event townies are encouraged to cluster and collaborate on various creative **JAMS**. Re-run this tool and select _Propose a creative jam_ if you want to suggest one. Suggested jams:
@ -50,10 +50,17 @@ The venue has enough sleeping space to lodge everyone who expressed interest in
- all day October 12th
- the morning of October 13th (feel free to leave this day!)
The total cost to book this venue was **$8,637**. I've paid for it out of pocket and would love if townies could help chip in for the cost. As of right now (`2024-08-31`) I have received **$0** of chip in and will update this as I get donations.
The total cost to book this venue was **$8,637**. I've paid for it out of pocket and would love if townies could help chip in for the cost. As of right now (`2024-10-08`) I have received **$3,919** of chip in and will update this as I get donations. If you want to chip in:
- paypal: `nateksmith@pm.me`
- venmo: `@vilmibm`
To learn more about the venue you can visit their website: https://www.loft606.com/
### PARKING
There are 3 parking spaces provided by the venue; two of these have been claimed. If you will need parking reach out to me (or mention in your RSVP) and we'll work something out.
### FOOD
I'll arrange food throughout the event.

13
cmd/towncon/md/jam.md Normal file
View File

@ -0,0 +1,13 @@
# JAMS
Town Con will be a great time to collaborate with other townies. We'll have a few concurrent jams: drop in/drop out creative sessions organized around a theme or activity.
Some known jams:
- 88x31 badge jam
- forum software jam
- game jam
- dos jam
- music jam (in person only)

21
cmd/towncon/md/submit.md Normal file
View File

@ -0,0 +1,21 @@
# Works
_every_ townie is encouraged to submit something (or multiple things) to town con. Seriously: please submit anything that can be consumed via a computer in under 60 minutes. Some ideas:
- a pre-recorded talk
- a live talk to be transmitted over a video call
- a web page
- an essay, short story, or poem
- some ascii art
- a soft ware
- a game for us all to play right then and there
- some XML
- a picture of a cool rock you found
- a picture of your cat
- a picture of someone else's cat
**The whole purpose of this event is to reflect and celebrate the town's vibrant and idiosyncratic community.** No work is too small.
**The DEADLINE to submit is October 999999999th, 2024.** I am downright excited to talk to you about ideas and offer suggestions! Please reach out to `vilmibm` via email or come chat about it in `town chat`.
It's okay to submit something you haven't finished or even started -- I'll confirm right before the event that you still want your work shown.

192
towncon.html Normal file
View File

@ -0,0 +1,192 @@
<!DOCTYPE html>
<html>
<head>
<title>~TOWN CON 2024 </title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=0.5, user-scalable=yes" />
</head>
<body>
<style>
@media screen and (min-width: 1000px) {
body {
margin-right: 25%;
margin-left: 25%;
}
}
body {
background-color: pink;
max-width: 1000px;
}
h1,h2,h3 {
text-align: center;
}
h1 { font-size: 400%; }
h2 { font-size: 200%; }
h3 { font-size: 180%; }
.callout {
font-size: 125%;
margin:1em;
}
.purp {
padding: 1em;
background-color: #E0B0FF;
}
.dark {
background-color: black;
color: #E0B0FF;
padding:1em;
}
.hero {
background-color: rgba(0,0,0,.1);
}
</style>
<h1>~TOWN CON 2024</h1>
<marquee>
<h2>~*~*~* october 11th & 12th *~*~*~</h2>
</marquee>
<h1><a href="schedule.html">SCHEDULE!</a></h1>
<div class="hero">
<table>
<tr>
<td>
<pre title="go to a random page">/^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\
&lt; |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| &gt;
&lt; | ( ) . ' t i l d e . t o w n | &gt;
&lt; | . | &gt;
&lt; | __ : | &gt;
&lt; | / /\ __ ___!__ _,__ ___,_ | &gt;
&lt; |/ / o\/ \ / /\ /__/ \ /__\__\ . . .| &gt;
&lt; | / \\ \/_____ /_*\ | |[^][^| | |[^]())[^| &gt;
&lt; |/ /\ | | |_|__| .: |__|__| ()(/) | &gt;
&lt; | || | {^} | | ( ~)()o| &gt;
&lt; | [] [] | | | |. . A ._ . .( O((/~)| &gt;
&lt; | _ _ |___|__|__D_| . H / \ {^} ()||) | &gt;
&lt; | | |[@] | | . . . | |/ \ | \|| __| &gt;
&lt; |_|_|_____| . . |^| \ | v ||/vv| &gt;
&lt; | . . v v . | | \|. v /vvv| &gt;
&lt; | . v v . / O \ /| . /vvvv| &gt;
&lt; | |_ u _| . . / _ \ / | .| | &gt;
&lt; | || | || / |_| \/ | | | &gt;
&lt; | | | |. | | &gt;
&lt;3|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| &gt;
\vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/
</pre>
</td>
<td>
<p class="callout"><em>
Being a celebration of the ten year anniversary of <a href="https://tilde.town">tilde.town</a> happening in spaces both Cyber and Meat in October of Twenty Twenty Four.
</em></p>
</td>
</tr>
</table>
</div>
<!--
rough thoughts. for the 24 hours of october 11th i want to divide the day up into slots (how many based on what i get) for submissions. every submission gets a slot for people to see it, consume it, sit with it, chat about it. the primary mode of interaction is text chat with accompanying teleconference (bandwidth permitting) / in person room.
submissions can be anything that fit within an hour.
-->
<h3>WHAT ARE WE GETTING UP TO?</h3>
<p>
TOWN CON is a combined gallery opening and tech conference happening simultaneously in cyberspace and meatspace. Townies are encouraged to submit digital works of any kind: talks, writing, songs, poems, visual art, software. Each submitted work will get a viewing period starting at 10:00am (us central time) on October 11th. We'll all pile into a text based environment on the server to hang out together and discuss each submission.
</p>
<p>
<a href="/~vilmibm">I</a> have reserved a <strong>cool warehouse loft</strong> in CHICAGO, ILLINOIS, USA in which townies can commune, consume, create, and sleep. I will have the space open from the evening of October 10th through the morning of October 13th. IF YOU WANT TO COME IN PERSON it's extra important to use the <code>town con</code> command to RSVP.
</p>
<p>
<strong>October 12th is a special day</strong> for townies who come to the physical town con space. We'll be doing <em>something</em>. Music jam, walk in the woods, minigolf, cooking. TBD.
</p>
<div class="purp">
<h1>RUN THE `town con` COMMAND ON THE SERVER to learn EVEN MORE and also RSVP</h1>
</div>
<div class="dark">
<h3>TOWNIES: SUBMIT A THING!</h3>
<p>
Seriously: submit anything that can be consumed via a computer in under 60 minutes. Some ideas:
</p>
<ul>
<li>a pre-recorded talk</li>
<li>a live talk</li>
<li>a web page</li>
<li>an essay</li>
<li>a short story</li>
<li>a poem</li>
<li>some ascii art</li>
<li>a soft ware</li>
<li>some dance choreography</li>
<li>some XML</li>
<li>a photograph of a cool stick you found</li>
<li>a picture of your cat</li>
<li>a picture of someone else's cat</li>
</ul>
<p>
The whole purpose of this event is to reflect and celebrate the town's vibrant and idiosyncratic community. No work is too small.
</p>
<p>
<strong>The DEADLINE to submit is October 1st, 2024.</strong> Please use the command <code>town con</code> to submit a proposal or work. I am downright excited to talk to you about ideas and offer suggestions! Please reach out via email or come chat about it in `town chat`.
</p>
</div>
<div class="purp">
<h3>JAMS</h3>
<p>
Town Con will be a great time to collaborate with other townies. We'll have a few concurrent jams--drop in/drop out creative sessions organized around a theme or activity. If you want to organize a jam please submit a proposal via the <code>town con</code> command.
<p>
Known jams:
</p>
<ul>
<li>music jam (in person only)</li>
<li>88x31 badge jam</li>
<li>forum software jam</li>
<li>game jam</li>
<li>dos jam</li>
</ul>
</p>
</div>
<h2>a sestina</h2>
<pre> Have you guess 'd you yourself would not continue?
The wanderer would not heed me
`` He told me at parting, that he should soon write
Mr. Elton looked all happiness at this proposition
what is it to us what the rest do or think?
I doubted it more the next day on Box Hill
Come thou, arise from the ground unto the place yonder
One was the son of Mars, and was killed before Troy
He had done his duty and could return to his son.
I never saw any thing so outree!
; woods, together with mountains, are on fire.
`` He told me at parting, that he should soon write
`` He told me at parting, that he should soon write
; and, abhorring the light, they fly { abroad} by night.
Can not you guess what this parcel holds?''
And these things I see suddenly, what mean they?
And you, paid to defile the People
Very strongly may be sincerely fainting.
she cried with a most open eagerness
`` He told me at parting, that he should soon write
Let me hear from you without delay
By him she was put in mind of what she might do
; but Emma 's countenance was as steady as her words.
Dear Miss Woodhouse, do advise me.''
It was certainly barbara in the eyes of a Greek
One can not creep upon a journey
One was the son of Mars, and was killed before Troy
`` He told me at parting, that he should soon write
[ 77 and struck the guilty{ draught} from his mouth.
; The golden sun of June declines, It has not caught her eye.
Clarke translates miseri senis ore,
: naught there is Save body, having property of touch.
Alas poor boy, he will never be better,
; but if he wished to do it, it might be done.
`` He told me at parting, that he should soon write
One was the son of Mars, and was killed before Troy
I knew who it came from. The virgin shrieks aloud
To feel the presence of a brave commanding officer But she was always right.
I 'd rather you would.'' This was a river of Troy
</pre>
</body>
</html>