Skip to content

Commit

Permalink
Revamp documentation resources (#54)
Browse files Browse the repository at this point in the history
* Move Bartosz's report to its own directory
* Move Martin Odersky's talk and README to docs
* Add Maximilian's report
* Add landing page
* Add a simple README
  • Loading branch information
natsukagami authored Mar 21, 2024
1 parent cf269c8 commit 7c033a3
Show file tree
Hide file tree
Showing 14 changed files with 668 additions and 518 deletions.
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,15 @@ All of the needed dependencies can be loaded by the included Nix Flake. If you h
nix develop
```
to enter the development environment with all the dependencies loaded. You can also use [direnv](https://direnv.net/)'s `use flake` to automate this process.

Once done, it should suffice to run
```bash
sbt publishLocal
```
to have Gears compiled and published locally for usage.

## Running Tests

```bash
sbt test
```
543 changes: 25 additions & 518 deletions README.md

Large diffs are not rendered by default.

532 changes: 532 additions & 0 deletions docs/2023-02-scalar-talk/README.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
Binary file added docs/2024-01-report.pdf
Binary file not shown.
99 changes: 99 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!DOCTYPE html>
<head>
<title>
Gears - An Experimental Asynchronous Programming Library for Scala 3
</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.red.min.css"
/>
</head>
<body class="container">
<style>
main {
display: grid;
grid-template-columns: 4fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
</style>
<header>
<hgroup>
<h1>Gears</h1>
<p>An Experimental Asynchronous Programming Library for Scala 3</p>
</hgroup>
</header>
<main>
<div>
<section>
<h2>Getting Started</h2>
<ul>
<li>
<a href="https://github.com/lampepfl/gears/releases"
>Releases</a
>
</li>
<li>
<a
href="https://github.com/lampepfl/gears/blob/main/CONTRIBUTING.md"
>Build Instructions</a
>
</li>
</ul>
</section>
<section>
<h2>Documentation</h2>
<ul>
<li>
<a href="https://blog.nkagami.me/gears-book" target="_blank">
<em>Concurrency with Gears</em>, a tutorial-documentation on using Gears
</a>
</li>
<li>
<a href="./api">API Documentation</a>
</li>
<li>
<a href="https://github.com/lampepfl/gears">GitHub Repository</a>
</li>
</ul>
</section>
<section>
<h2>References</h2>
<ul>
<li>
<em>Martin Odersky</em> - Direct Style Scala (02/2023):
<a href="https://www.youtube.com/watch?v=0Fm0y4K4YO8">Talk</a>
<a href="./2023-02-scalar-talk/scalar-slides.pdf">Slides</a>
<a
href="https://github.com/lampepfl/gears/blob/main/docs/2023-02-scalar-talk/README.md"
>Markdown</a
>
</li>
<li>
<em>Bartosz Białas</em> - Gears Project Report (Features and
Performance on Loom) (06/2023):
<a href="./2023-06-report/summary-2023-06.pdf">PDF</a>
<a
href="https://github.com/lampepfl/gears/blob/main/docs/2023-06-report/summary-2023-06.md"
>Markdown</a
>
</li>
<li>
<em>Maximilian Müller</em> - Project Report: Cross-platform Gears
(01/2024):
<a href="./2024-01-report.pdf">PDF</a>
</li>
</ul>
</section>
</div>
<img
src="https://www.scala-lang.org/resources/img/frontpage/scala-spiral.png"
style="text-align: center; width: 80%"
/>
</main>
<footer>
The Scala Logo belongs to the
<a href="https://scala-lang.org">Scala Programming Language</a>.
</footer>
</body>

0 comments on commit 7c033a3

Please sign in to comment.