|
7 | 7 | # categories: AI / data / dev tools / apps / cloud / media / operating systems / programming languages / science / security / social / web |
8 | 8 | # repolinks: reference links to respective github repos |
9 | 9 |
|
10 | | -- title: Machine learning inference in Cats Effect |
11 | | - description: |
12 | | - We want to make it possible to deploy machine learning inference as part of a larger web service without compromising the latency of other on-going requests. The goal of this project is to create a compiler to transform a pre-trained ML model into a sequence of Cats Effect `IO` steps that perform inference on some input. |
13 | | - prereqs: Scala, ideally some experience with ML |
14 | | - difficulty: Hard but doable. Will draw on knowledge of ML and compilers. |
15 | | - length: long |
16 | | - mentors: [armanbilge, djspiewak, ekrich, valencik] |
17 | | - categories: [AI, web, programming languages] |
18 | | - repolinks: |
19 | | - - name: cats-effect |
20 | | - url: https://github.com/typelevel/cats-effect |
21 | | - |
22 | 10 | - title: Serverless integrations for Feral |
23 | 11 | description: |
24 | 12 | Feral is a Typelevel library for building serverless functions that currently supports AWS Lambda and Google Cloud Run Functions. We want to add support for more types of serverless events and more cloud providers. |
|
43 | 31 | - name: fs2 |
44 | 32 | url: https://github.com/typelevel/fs2 |
45 | 33 |
|
46 | | -- title: Polling-based I/O in FS2 |
47 | | - description: |
48 | | - Cats Effect v3.6.0 introduced the ability to poll for I/O readiness. We want to use polling to reimplement several I/O APIs in FS2, including datagrams, unix sockets, and processes, on the JVM and Native platforms. |
49 | | - prereqs: Scala, ability to read C |
50 | | - difficulty: Medium. |
51 | | - length: long |
52 | | - mentors: [armanbilge, mpilquist, antoniojimeneznieto] |
53 | | - categories: [operating systems, programming languages] |
54 | | - repolinks: |
55 | | - - name: fs2 |
56 | | - url: https://github.com/typelevel/fs2 |
57 | | - |
58 | 34 | - title: FS2 Connection API |
59 | 35 | description: |
60 | 36 | TCP-based protocols are common (e.g. HTTP, Postgres, Redis) and are implemented by clients to interface with these services (e.g. Ember, Skunk, Rediculous). The goal of this project is to create a "connection" API that supports pooling, error conditions, and metrics and can be shared by all of our client libraries. |
|
97 | 73 | prereqs: Scala |
98 | 74 | difficulty: Medium. |
99 | 75 | length: medium |
100 | | - mentors: [samspills, valencik] |
| 76 | + mentors: [armanbilge, valencik] |
101 | 77 | categories: [development tools, programming languages] |
102 | 78 | repolinks: |
103 | 79 | - name: davenverse |
104 | 80 | url: https://github.com/davenverse |
105 | 81 |
|
106 | | -- title: Cats Effect & FS2 on WASM/WASI |
| 82 | +- title: Cats Effect & FS2 on Wasm/WASI |
107 | 83 | description: |
108 | 84 | Web Assembly and its System Interface are emerging technologies for deploying secure, modular applications. The goal of this project is to prototype porting the Cats Effect runtime and FS2 streaming I/O to the Wasm/WASI platform, also possibly generating feedback for the Scala WASM and WASI teams. |
109 | 85 | prereqs: Scala, ideally some experience with Wasm/WASI |
|
117 | 93 | - name: fs2 |
118 | 94 | url: https://github.com/typelevel/fs2 |
119 | 95 |
|
120 | | -- title: Extensible log4cats interface |
| 96 | +- title: Laika enhancements for typelevel.org |
121 | 97 | description: |
122 | | - log4cats is the de facto logging library for the Typelevel stack. Recently, a new API was proposed that overcomes current limitations of log4cats. The goal of this project is to adopt the new API in log4cats, migrate existing integrations to the new API, and create a compatibility layer with the old API. |
| 98 | + Laika is a purely functional site and e-book generator and customizable text markup transformer. We recently migrated the Typelevel website from Jekyll to Laika. The goal of this project is improve and streamline Laika's support for generating non-documentation websites, such as blogs. |
123 | 99 | prereqs: Scala |
124 | 100 | difficulty: Medium. |
125 | | - length: long |
126 | | - mentors: [morgen-peschke, kubukoz, irevive] |
127 | | - categories: [cloud, programming languages] |
| 101 | + length: medium |
| 102 | + mentors: [armanbilge, valencik] |
| 103 | + categories: [web, programming languages] |
128 | 104 | repolinks: |
129 | | - - name: log4cats |
130 | | - url: https://github.com/typelevel/log4cats |
| 105 | + - name: Laika |
| 106 | + url: https://github.com/typelevel/Laika |
| 107 | + - name: typelevel.org |
| 108 | + url: https://github.com/typelevel/typelevel.github.com |
131 | 109 |
|
132 | | -- title: http4s-fs2-data |
| 110 | +- title: A faster immutable list datatype |
133 | 111 | description: |
134 | | - fs2-data is a streaming data library that supports a plethora of formats. http4s is a library for creating and consuming web services. http4s-fs2-data is a project to integrate the two libraries. We want to integrate more fs2-data modules as well as enhance the existing integrations. |
135 | | - prereqs: Scala |
136 | | - difficulty: Medium. |
137 | | - length: short |
138 | | - mentors: [satabin, ybasket] |
139 | | - categories: [cloud, web, programming languages] |
140 | | - repolinks: |
141 | | - - name: http4s-fs2-data |
142 | | - url: https://github.com/http4s/http4s-fs2-data |
143 | | - - name: fs2-data |
144 | | - url: https://github.com/gnieh/fs2-data |
145 | | - - name: http4s |
146 | | - url: https://github.com/http4s/http4s |
147 | | - |
148 | | -- title: Convert Doobie test suite to use munit-cats-effect |
149 | | - description: |
150 | | - Doobie is a purely functional library for database access. Our test suites are written before there is good integration between MUnit (the test framework) and Cats-Effect (the effect system we depend on). |
151 | | - We want to convert to use munit-cats-effect to make them less verbose and error prone. |
152 | | - prereqs: Scala |
153 | | - difficulty: Easy. |
154 | | - length: medium |
155 | | - mentors: [jatcwang] |
156 | | - categories: [cloud, programming languages] |
| 112 | + Immutable linked lists are a core datatype in functional programming languages. The goal of this project is to explore implementing a list-like datatype with enhanced performance. Along the way, you will learn about immutable datatypes, Cats typeclasses, and mechanical sympathy. |
| 113 | + prereqs: Interest in functional programming |
| 114 | + difficulty: Medium. This is a good project for beginners! |
| 115 | + length: long |
| 116 | + mentors: [armanbilge, johnynek] |
| 117 | + categories: [web, programming languages] |
157 | 118 | repolinks: |
158 | | - - name: doobie |
159 | | - url: https://github.com/typelevel/doobie |
160 | | - - name: munit-cats-effect |
161 | | - url: https://github.com/typelevel/munit-cats-effect |
| 119 | + - name: Cats Collections |
| 120 | + url: https://github.com/typelevel/cats-collections |
0 commit comments