-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
214 lines (196 loc) · 7.42 KB
/
about.html
File metadata and controls
214 lines (196 loc) · 7.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - BitDevs Melbourne</title>
<meta
name="description"
content="Melbourne BitDevs is an in-person meetup held monthly for discussing: Bitcoin software, tools, research, protocol upgrades (BIPs), mining and more."
/>
<meta
name="keywords"
content="bitcoin, bitdevs, melbourne, cryptocurrency, blockchain, meetup, developer, socratic seminar"
/>
<meta name="author" content="BitDevs Melbourne" />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:title" content="About - BitDevs Melbourne" />
<meta
property="og:description"
content="Melbourne BitDevs is an in-person meetup held monthly for discussing: Bitcoin software, tools, research, protocol upgrades (BIPs), mining and more."
/>
<meta
property="og:image"
content="https://melb.bitdevs.com.au/header.jpg"
/>
<meta property="og:url" content="https://melb.bitdevs.com.au/about.html" />
<meta property="og:site_name" content="BitDevs Melbourne" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="About - BitDevs Melbourne" />
<meta
name="twitter:description"
content="Melbourne BitDevs is an in-person meetup held monthly for discussing: Bitcoin software, tools, research, protocol upgrades (BIPs), mining and more."
/>
<meta
name="twitter:image"
content="https://melb.bitdevs.com.au/header.jpg"
/>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
<script>
// Apply Tailwind config from external stylesheet
if (
typeof tailwind !== "undefined" &&
typeof tailwind.config === "object"
) {
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#00ffff",
secondary: "#ff9900",
tertiary: "#888",
background: "#0a0a0f",
surface: "#1a1a2e",
text: "#e0e0e0",
accent: "#7c3aed",
muted: "#404040",
},
fontFamily: {
mono: ["Source Code Pro", "monospace"],
},
},
},
};
}
</script>
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="favicon.ico" />
</head>
<body class="font-mono bg-background text-text min-h-screen">
<div class="container mx-auto px-4 py-8 max-w-4xl">
<!-- Header -->
<header class="mb-12 relative">
<div
class="hex-accent inline-block p-4 rounded-lg bg-surface/50 backdrop-blur-sm mb-4"
>
<h1 class="text-4xl font-semibold text-primary mb-2 relative">
<a href="index.html" class="hover:text-secondary transition-colors"
>BitDevs Melbourne</a
>
</h1>
</div>
<nav class="text-lg flex flex-wrap gap-6">
<a
href="#"
class="hex-accent px-3 py-1 rounded text-primary hover:text-secondary transition-colors border border-primary/20 hover:border-secondary/40"
>About</a
>
<a
href="https://github.com/MelbourneBitDevs/MelbBitDevs/issues"
class="hex-accent px-3 py-1 rounded text-primary hover:text-secondary transition-colors border border-primary/20 hover:border-secondary/40"
target="_blank"
rel="noopener"
>Next Month's Topics</a
>
</nav>
</header>
<!-- Main Content -->
<main class="prose prose-lg max-w-none">
<h1 class="text-3xl font-semibold mb-6">BitDevs Melbourne</h1>
<p class="mb-4">
BitDevs Melbourne is held on the last Thursday of every month at 6PM.
</p>
<p class="mb-6">
As a group, we discuss the latest Bitcoin news from a technical
perspective. Sometimes diverging into adjacent fields of privacy, self
hosting, free software, and more!
</p>
<p class="mb-8">
<strong
><a
href="https://www.meetup.com/melbourne-bitcoin-only"
class="text-secondary hover:text-tertiary hover:underline"
target="_blank"
rel="noopener"
>See the meetup page</a
>
to join our group and confirm event details!</strong
>
</p>
<p class="mb-8">
Please feel free to ping someone in the community if joining approval
is taking too long!
</p>
<h2 class="text-2xl font-semibold mb-4">News items for this month</h2>
<p class="mb-8">
Please suggest any noteworthy topics for next month in the
<a
href="https://github.com/MelbourneBitDevs/MelbBitDevs/issues"
class="text-secondary hover:text-tertiary hover:underline"
target="_blank"
rel="noopener"
>GitHub issue</a
>! We're open to discussing pretty much anything Bitcoin or
Bitcoin-adjacent!*
</p>
<p class="text-xs text-text/60 mb-8">
*Except shitcoins or scams unless technically relevant.
</p>
<h2 class="text-2xl font-semibold mb-4">Things to note</h2>
<p class="mb-4">Attendence is often larger than meetup page RSVPs.</p>
<p class="mb-4">
This event is not streamed online, to preserve free discussion,
atmosphere, engagement, and community.
</p>
<p class="mb-8">
To facillitate optimal free and open discussion, privacy of attendees
is taken seriously, absolutely no photos/recordings without explicit
consent from all parties.
<a
href="https://en.wikipedia.org/wiki/Chatham_House_Rule"
class="text-secondary hover:text-tertiary hover:underline"
target="_blank"
rel="noopener"
>Chatham house rule</a
>
applies.
</p>
<div
class="my-8 h-px bg-gradient-to-r from-transparent via-primary/40 to-transparent"
></div>
<h2 class="text-2xl font-semibold mb-4">Group Activities</h2>
<p class="mb-4">
We aim to occasionally try new software or tutorials as a group,
building applicable skills within a supportive group environment. It
may be useful to bring a laptop machine along with you! MacOS or Linux
preferred (for windows
<a
href="https://www.makeuseof.com/tag/install-linux-windows-vmware-virtual-machine/"
class="text-secondary hover:text-tertiary hover:underline"
target="_blank"
rel="noopener"
>you could use a virtual machine</a
>).
</p>
</main>
<!-- Footer -->
<footer
class="mt-16 pt-8 border-t border-primary/20 text-center relative"
>
<a
href="https://utxo.club"
class="text-xl hover:scale-110 transition-transform inline-block"
target="_blank"
rel="noopener"
>🧡</a
>
</footer>
</div>
</body>
</html>