-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.js
More file actions
295 lines (264 loc) · 8.6 KB
/
Copy pathprojects.js
File metadata and controls
295 lines (264 loc) · 8.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import React from 'react';
import Layout from '../layouts';
import { OutboundLink } from 'gatsby-plugin-google-analytics';
import { Helmet } from 'react-helmet';
import Tags from '../components/tags';
import styled from 'styled-components';
const Project = styled.section`
margin-bottom: 3em;
`;
export default function Projects({ data }) {
const { siteMetadata } = data.site;
const title = `Projects - ${siteMetadata.title}`;
return (
<Layout>
<Helmet>
<title>{title}</title>
<meta property="og:title" content={title} />
<meta property="og:description" content="Some stuff that I've built" />
</Helmet>
<h2 style={{ fontSize: '2em', marginBottom: '1.5em' }}>Projects</h2>
<Project>
<h3>
📄{' '}
<OutboundLink href="https://github.com/testingrequired/reqlang">
Request Language (reqlang)
</OutboundLink>
</h3>
<Tags>
<Tags.Tag>rust</Tags.Tag>
<Tags.Tag>dsl</Tags.Tag>
<Tags.Tag>file-specification</Tags.Tag>
<Tags.Tag>http-messages</Tags.Tag>
<Tags.Tag>language-servers</Tags.Tag>
<Tags.Tag>vs-code-extensions</Tags.Tag>
<Tags.Tag>developer-tools</Tags.Tag>
<Tags.Tag>testing-tools</Tags.Tag>
</Tags>
<p>
A file format specification for defining HTTP requests, response
assertions, and associated data/configuration in "request files".
</p>
<ul>
<li>
Declare what prompts, secrets, and environment specific variables a
request needs.
</li>
<li>
Write requests using{' '}
<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Messages#http_requests">
HTTP Request
</a>{' '}
messages.
</li>
<li>
Write tests using{' '}
<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Messages#http_responses">
HTTP Response
</a>{' '}
messages.
</li>
<li>
A{' '}
<a href="https://github.com/testingrequired/reqlang#vs-code">
language extension
</a>{' '}
for Visual Studio Code providing an in-editor REST client. The
language server also provides language diagnostics.
</li>
</ul>
<h4>Tools</h4>
<ul>
<li>
<a href="https://github.com/testingrequired/reqlang-web-client">
reqlang-web-client
</a>{' '}
A web/desktop HTTP REST client for reqlang files.
</li>
<li>
<a href="https://github.com/testingrequired/reqlang-expr">
reqlang-expr
</a>{' '}
A bytecode interpreted language powering reqlang's templating
engine.
</li>
<li>
<a href="https://github.com/testingrequired/reqlang-expr-tspl">
reqlang-expr-tspl
</a>{' '}
A toy transpiler for reqlang-expr to typescript.
</li>
</ul>
</Project>
<Project>
<h3>
🧱{' '}
<OutboundLink href="https://github.com/kyleect/rust-backend-web-frontend">
rust-backend-web-frontend
</OutboundLink>
</h3>
<Tags>
<Tags.Tag>rust</Tags.Tag>
<Tags.Tag>typescript</Tags.Tag>
<Tags.Tag>react</Tags.Tag>
<Tags.Tag>project-template</Tags.Tag>
<Tags.Tag>webview</Tags.Tag>
</Tags>
<p>
A project template for create tiny single binary web applications.
</p>
<ul>
<li>Rust/Axum API Backend</li>
<li>SPA frontend</li>
<li>Optionally served through a native webview</li>
<li>Very small single binary builds</li>
</ul>
</Project>
<Project>
<h3>
👻{' '}
<OutboundLink href="https://github.com/egonlang/egonlang">
Egon
</OutboundLink>
</h3>
<Tags>
<Tags.Tag>rust</Tags.Tag>
<Tags.Tag>programming-languages</Tags.Tag>
<Tags.Tag>type-systems</Tags.Tag>
<Tags.Tag>language-server</Tags.Tag>
<Tags.Tag>vs-code-extension</Tags.Tag>
</Tags>
<p>
A (toy) statically typed interpreted language for learning
type-checking and type inference.
</p>
</Project>
<Project>
<h3>
🔓{' '}
<OutboundLink href="https://github.com/kyleect/locks">
Locks
</OutboundLink>
</h3>
<Tags>
<Tags.Tag>rust</Tags.Tag>
<Tags.Tag>typescript</Tags.Tag>
<Tags.Tag>programming-languages</Tags.Tag>
<Tags.Tag>compilers</Tags.Tag>
<Tags.Tag>language-server</Tags.Tag>
<Tags.Tag>vs-code-extension</Tags.Tag>
<Tags.Tag>wasm</Tags.Tag>
</Tags>
<p>
A toy bytecode VM language branched from{' '}
<a href="https://craftinginterpreters.com/the-lox-language.html">
Lox
</a>{' '}
to learn implementing new language syntax.
</p>
<p>
Forked from{' '}
<a href="https://github.com/ajeetdsouza/loxcraft">loxcraft</a> with
additional features and fixes:
</p>
<ul>
<li>
<a href="https://kyleect.github.io/locks/#/?code=DYUwLgBAhhC8EEYBMBmA3EA">
Shareable links
</a>{' '}
for the online playground.
</li>
<li>
Implemented an{' '}
<a href="https://kyleect.github.io/locks/#/docs#example">
embeddable version
</a>{' '}
of the playground's editor.
</li>
<li>
Interactive language{' '}
<a href="https://kyleect.github.io/locks/#/docs">documentation</a>{' '}
using the embedded playground editor for{' '}
<a href="https://kyleect.github.io/locks/#/docs#functions-as-values">
runnable
</a>{' '}
<a href="https://kyleect.github.io/locks/#/docs#closures">code</a>{' '}
<a href="https://kyleect.github.io/locks/#/docs#string-concatenation">
examples
</a>
.
</li>
<li>
A{' '}
<a href="https://github.com/kyleect/locks#vs-code-extension">
language extension
</a>{' '}
for Visual Studio Code. It integrates with the language server to
provide the editor with language diagnostics. The extension also
provides utility like viewing AST when hover over code.
</li>
<li>
<a href="https://github.com/kyleect/locks/blob/main/Dockerfile">
Dockerized
</a>{' '}
the <code>locks</code> binary to lower the barrier for trying out
the language.
</li>
<li>
<a href="https://github.com/kyleect/locks#changes-made">
Full list of features and fixes.
</a>{' '}
Include several changes to syntax from the original project.
</li>
</ul>
</Project>
<Project>
<h3>
🧯{' '}
<OutboundLink href="https://github.com/testingrequired/attempted">
Attempted
</OutboundLink>
</h3>
<Tags>
<Tags.Tag>typescript</Tags.Tag>
<Tags.Tag>library</Tags.Tag>
<Tags.Tag>error-handling</Tags.Tag>
</Tags>
<p>Typed error handling for function calls in Typescript.</p>
</Project>
<Project>
<h3>
🌌{' '}
<OutboundLink href="https://github.com/testingrequired/bespin">
Bespin
</OutboundLink>
</h3>
<Tags>
<Tags.Tag>typescript</Tags.Tag>
<Tags.Tag>framework</Tags.Tag>
<Tags.Tag>testing-tools</Tags.Tag>
<Tags.Tag>test-frameworks</Tags.Tag>
</Tags>
<p>A framework for implementing test frameworks.</p>
</Project>
<Project>
<h3>
📕{' '}
<OutboundLink href="https://github.com/testingrequired/the-testing-book">
The Testing Book
</OutboundLink>
</h3>
<p>A (work in progress) software engineering guide to testing.</p>
</Project>
</Layout>
);
}
export const pageQuery = graphql`
query ProjectsPage {
site {
siteMetadata {
title
}
}
}
`;