-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revamp documentation resources (#54)
* 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
1 parent
cf269c8
commit 7c033a3
Showing
14 changed files
with
668 additions
and
518 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 not shown.
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,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> |