Skip to content

ReScript retreat blogpost #895

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions _blogposts/2025-03-17-retreats.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
---
author: rescript-association
date: "2025-03-17"
previewImg: /static/blog/rescript_retreat_2024.jpg
articleImg: /static/blog/rescript_retreat_2024.jpg
title: ReScript Retreat
description: |
Accelerating ReScript development through meeting in-person.
---

ReScript is exclusively developed by volunteers. Some help out in their free time, some are lucky to do it in their work time, but overall there is no single developer who exclusively works full-time on the advancement of the ReScript project.

That's not unusual for many open-source projects, but we want to be sustainable long-term. One way to not only accelerate development but also improve collaboration between contributors is to meet together in-person and hack on things. In this article, we explain what usually happens on such a "Retreat".

Last year, from the 23rd to the 26th of May, the ReScript Association invited many contributors to hack on ReScript. In the end almost all of them responded to the invitation and thus, 15 people from all over the world traveled to Vienna, Austria to meet in person, to do talks, discussions and decisions about and contributions to the ReScript toolchain.

## Talks

<Image
src="/static/blog/rescript_retreat_2024_talk_parser.jpg"
caption="Maxim Valcke giving an introduction about parser development"
withShadow="true"
/>

No everybody is on the same level of knowledge about the parser, compiler or other tools. Talks are a great way to get them on the same level before the real work gets started. In 2024 we had the following talks:

- Brief overview of parser development, by Maxim Valcke ([@\_binary_search](https://x.com/_binary_search))
- Intro to compiler development, by Cristiano Calcagno ([@ccrisccris](https://x.com/ccrisccris))
- The full talk is also available here: [Youtube Link](https://youtu.be/sQinTXDynew?si=AihxJBQDEyzMCvFz).
- Talk about editor tooling, by Gabriel Nordeborn ([@\_\_\_zth\_\_\_](https://x.com/___zth___))

## Group work

<Image
src="/static/blog/rescript_retreat_2024_group_work.jpg"
caption="Some core contributors thinking hard"
withShadow="true"
/>

Our contributors split up in multiple small groups of 2-4 people. Every group had a specific topic assigned:

- New Build System (Codename rewatch)
- rescript-lang.org Playground Output
- ReScript Core and how to include it in the compiler
- loops, foreach, iterators
- Syntax, JSX

## Discussions

We also did group discussions about how to elevator pitch ReScript and about ReScript's roadmap.

The full results of this discussions and the group work can be read at the ReScript forum: https://forum.rescript-lang.org/t/ann-rescript-retreat-roadmap-summary-2024/5275

## Food, Drinks and Leisure

After every hard working day, we finished the day with a nice dinner.
For instance we gathered together at a viennese winery in the evening.

<Image
src="/static/blog/rescript_retreat_2024_winery.jpg"
caption="Contributors enjoying refreshing food and drinks after working hard"
withShadow="true"
/>

Of course we also did some city sightseeing and enjoyed a final Viennese lunch.

## Conclusion

After the retreat, most participants stated that they want to do it again and overall it was a very productive but also fun event for all of us. And we are happy to announce that there will be a ReScript Retreat in 2025, from the 3rd - 6th of May, once again in Vienna, Austria. And a similar number of participants will attend.

## Our Sponsors

<Image
src="/static/lp/cca-io-color.svg"
size="small"
caption="Thanks to cca.io for sponsoring our retreat venue"
/>

The [ReScript Association](https://rescript-association.org/) paid for all the participants hotel rooms and some of the lunches and dinners. We worked at a coworking space which was paid for by the Vienna-based company [cca.io](https://www.cca.io/), which also happens to employ two of our contributors.

## Acknowledgements

We want to thank all contributors who are so invested into this language that they don't hesitate to travel the globe, some even with their families. Thank you so much!

[@bloodyowl](https://github.com/bloodyowl), [@cknitt](https://github.com/cknitt), [@cometkim](https://github.com/cometkim), [@cristianoc](https://github.com/cristianoc), [@fhammerschmidt](https://github.com/fhammerschmidt), [@glennsl](https://github.com/glennsl), [@IwanKaramazow](https://github.com/IwanKaramazow), [@jfrolich](https://github.com/jfrolich), [@JonoPrest](https://github.com/JonoPrest), [@mununki](https://github.com/mununki), [@rolandpeelen](https://github.com/rolandpeelen), [@ryyppy](https://github.com/ryyppy), [@shulhi](https://github.com/shulhi), [@tsnobip](https://github.com/tsnobip), [@zth](https://github.com/zth).
Binary file added public/static/blog/rescript_retreat_2024.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/static/lp/cca-io-color.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Image.res
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@react.component
let default = (~src: string, ~withShadow=false, ~caption: option<string>=?) => {
<Markdown.Image src withShadow ?caption />
let default = (~src: string, ~size=#large, ~withShadow=false, ~caption: option<string>=?) => {
<Markdown.Image src size withShadow ?caption />
}
16 changes: 12 additions & 4 deletions src/components/Markdown.res
Original file line number Diff line number Diff line change
Expand Up @@ -474,20 +474,28 @@ module Strong = {

module Image = {
@react.component
let make = (~src: string, ~withShadow=false, ~caption: option<string>=?) => {
let make = (~src: string, ~size=#large, ~withShadow=false, ~caption: option<string>=?) => {
let width = switch size {
| #large => "w-full"
| #small => "w-1/4"
}

let shadow = if withShadow {
"shadow-md"
} else {
""
}
<div className="mt-8 mb-12 md:-mx-16">

<div className={`mt-8 mb-12 ${size === #large ? "md:-mx-16" : ""}`}>
<a href=src rel="noopener noreferrer">
<img className={"w-full " ++ shadow} src />
<img className={width ++ " " ++ shadow} src />
</a>
{switch caption {
| None => React.null
| Some(caption) =>
<div className="mt-4 text-14 text-gray-60 md:ml-16"> {React.string(caption)} </div>
<div className={`mt-4 text-14 text-gray-60 ${size === #large ? "md:ml-16" : ""}`}>
{React.string(caption)}
</div>
}}
</div>
}
Expand Down
7 changes: 6 additions & 1 deletion src/components/Markdown.resi
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,12 @@ module Strong: {

module Image: {
@react.component
let make: (~src: string, ~withShadow: bool=?, ~caption: string=?) => React.element
let make: (
~src: string,
~size: [#large | #small]=?,
~withShadow: bool=?,
~caption: string=?,
) => React.element
}

module Video: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/MarkdownComponents.res
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type t = {
@as("Intro")
intro?: React.componentLike<Intro.props<React.element>, React.element>,
@as("Image")
image?: React.componentLike<Image.props<string, bool, string>, React.element>,
image?: React.componentLike<Image.props<string, [#large | #small], bool, string>, React.element>,
@as("Video")
video?: React.componentLike<Video.props<string, string>, React.element>,
@as("UrlBox")
Expand Down