-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
124 lines (108 loc) · 5.52 KB
/
Copy pathfaq.html
File metadata and controls
124 lines (108 loc) · 5.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Gosub Browser Engine</title>
<meta name="description" content="Frequently asked questions about Gosub: the name, the license, funding, Servo, and how to contribute.">
<link rel="icon" type="image/svg+xml" href="/assets/gosub-logo.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="dive.css">
</head>
<body class="dive-inner">
<header class="site-header">
<div class="container">
<a class="brand" href="index.html">
<img src="/assets/gosub-logo.svg" alt="">
Gosub
</a>
<input type="checkbox" id="nav-toggle" class="nav-checkbox">
<label for="nav-toggle" class="nav-toggle" aria-label="Menu"><span></span><span></span><span></span></label>
<nav class="site-nav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="faq.html" aria-current="page">FAQ</a>
<a href="status.html">Status</a>
<a href="contribute.html">Contribute</a>
<a href="contact.html">Contact</a>
<a href="https://github.com/gosub-io/gosub-engine">GitHub</a>
</nav>
</div>
</header>
<main>
<div class="page-hero">
<div class="container">
<div class="depth">0 m · surface</div>
<h1>Frequently asked questions</h1>
<p class="lede">Missing something? <a href="contact.html">Ask us directly</a>.</p>
</div>
</div>
<section class="zone-deep">
<div class="container">
<div class="depth">40 m · sunlit zone</div>
<div class="faq-list">
<details open>
<summary>Why the name "Gosub" when it's written in Rust, not Go?</summary>
<div class="answer">
<p>The name comes from the <code>GOSUB</code> subroutine command in BASIC, with a nod to the "Go word" from CompuServe history. Despite the name, Gosub is written in Rust - not Go. We picked the name because it is distinctive and memorable, and the submarine in our logo fits the nautical reference rather nicely.</p>
</div>
</details>
<details>
<summary>Are you backed by any commercial entities?</summary>
<div class="answer">
<p>No. Gosub is a community project and is not backed by any commercial entities. It is built by volunteer developers, and we accept sponsorships to help offset operational expenses.</p>
</div>
</details>
<details>
<summary>How does this project make money?</summary>
<div class="answer">
<p>It currently doesn't, and that's fine. We're not opposed to income sources in the future, as long as they don't compromise user privacy - selling user data or showing ads is not something we are interested in. Instead, we pursue sponsorships and donations, so the engine stays accessible to everyone regardless of financial circumstance.</p>
</div>
</details>
<details>
<summary>What is the license of the project?</summary>
<div class="answer">
<p>Gosub is released under the <a href="https://opensource.org/licenses/MIT">MIT license</a>, which permits both commercial and personal use with proper attribution.</p>
</div>
</details>
<details>
<summary>Why not contribute to Servo instead?</summary>
<div class="answer">
<p>We have great respect for Servo, but we believe there is room for more than one browser engine written in Rust. We see ourselves as complementary rather than competitive - diversity is exactly what makes open-source development strong.</p>
</div>
</details>
<details>
<summary>How can I contribute?</summary>
<div class="answer">
<p>In many ways: writing code, improving documentation, testing, reporting bugs, suggesting features, or supporting the community. See the <a href="contribute.html">contribute page</a> for details on where help is needed most right now.</p>
</div>
</details>
</div>
</div>
</section>
<div class="abyss">
<div class="container">
<div class="depth">80 m · open water</div>
<h2>Still have questions?</h2>
<p class="zone-intro">The community is happy to help - drop by the Zulip chat or open an issue on GitHub.</p>
<div class="btn-row">
<a class="btn" href="https://chat.developer.gosub.io">Join the Zulip chat</a>
<a class="arrow-link ext" href="contact.html">Contact us</a>
</div>
<footer class="site-footer">
<p>Copyright © 2024–2026, the Gosub community.<br>Spotted an issue? <a href="https://github.com/gosub-io/gosub.io-website">Send a PR on GitHub</a>.</p>
<nav>
<a href="https://github.com/gosub-io/gosub-engine">GitHub</a>
<a href="https://chat.developer.gosub.io">Zulip</a>
<a href="https://chat.gosub.io">Discord</a>
<a href="contact.html">Contact</a>
</nav>
</footer>
<p class="seafloor">- seafloor reached · resurface at <a href="#top" style="color:inherit;">↑ 0 m</a> -</p>
</div>
</div>
</main>
</body>
</html>