Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
permalink: 404.html
---

<div>
<div class="page-content">
<h1>404: Page not found</h1>
<p>The page you're looking for doesn't exist.</p>
<p><a href="/">Back to home</a> &mdash; or check out <a href="/events.html">upcoming events</a>.</p>
</div>
4 changes: 2 additions & 2 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<footer class="Footer">
<div class="Footer-border">
<div class="Footer-border" aria-hidden="true">
==============================================================================================================================================================
</div>
<div class="Footer-inner">
<div class="Footer-source">
<a href="https://github.com/VancouverBitdevs/VancouverBitdevs.github.io" target="_blank" rel="noopener nofollow">Source
available on Github</a>
available on GitHub</a>
</div>
<div class="Footer-rss">
<a href="https://anchor.fm/vancouver-bitcoiners/episodes">Podcast</a>
Expand Down
16 changes: 11 additions & 5 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<head>

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>
{% if page.title == "Home" %}
{{ site.data.settings.title }} | {{ site.data.settings.tagline }}
Expand All @@ -8,13 +11,16 @@
{% endif %}
</title>

<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
{% if page.excerpt %}
<meta name="description" content="{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}">
{% else %}
<meta name="description" content="{{ site.data.settings.tagline }}">
{% endif %}

<link rel="stylesheet" href="/assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">

<!-- <script type="text/javascript" src="{{ site.github.url }}/assets/js/script.js" async></script> -->
<link rel="stylesheet" href="/assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap" rel="stylesheet">

<!-- Use Atom -->
{% feed_meta %}
Expand Down
8 changes: 4 additions & 4 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<header class="Header">
<div class="Header-inner">
<div class="Header-logo">
<a href="{{ site.github.url }}/">{{ site.data.settings.title }}</a>
<a href="/">{{ site.data.settings.title }}</a>
</div>
<nav class="Header-nav">
<nav class="Header-nav" aria-label="Main navigation">
{% for item in site.data.settings.menu %}
{% if item.external %}
<a href="{{ item.url }}" target="_blank" rel="noopener nofollow">
{{ item.name }}
</a>
{% else %}
<a href="{{ site.github.url }}{{ item.url }}">{{ item.name }}</a>
<a href="{{ item.url }}">{{ item.name }}</a>
{% endif %}
{% endfor %}
</nav>
</div>
<div class="Header-border">
<div class="Header-border" aria-hidden="true">
==============================================================================================================================================================
</div>
</header>
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

{% include head.html %}

Expand All @@ -13,7 +13,7 @@

{% include footer.html %}

<div>
</div>

</body>

Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-02-27-vancouver-socratic-10.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Please join us for today's Socratic Seminar. A special thank you to our sponsor
- [Pearth Heat "Stealing Sats"](https://twitter.com/perthheat/status/1618853483133931521)
- [Lightning paywall for Ghost](https://twitter.com/martybent/status/1622747716563468295)
- [Neutronpay building Lightning infrastructure for Colombian Neobank](https://twitter.com/malcolm_weed/status/1623057213236588548)
- [Localbitcoins shutting down](https://twitter.com/localbitcoins/status/16236832231788625930
- [Localbitcoins shutting down](https://twitter.com/localbitcoins/status/1623683223178862593)
- [Telegram launches p2p market](https://toninfo.substack.com/p/wallet-new-p2p-market)
- [Paywithmoon no longer issues prepaid debit cards](https://medium.com/paywithmoon/an-important-update-about-moon-visa-prepaid-cards-2e7f7c63ea18)
- [Options contract code for Liquid made public](https://github.com/elementsproject/options)
Expand Down
8 changes: 4 additions & 4 deletions about.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
layout: default
title: About
---

BitDevs is a community for those interested in discussing and participating in
Expand All @@ -26,9 +27,8 @@ recorded. It is recommended that you have a firm grasp of the basics of Bitcoin
in order to extract the most value from our Socratic events.

Please contact the organizers if you'd like to present at a future Socratic
event or have a recommended topic for discussion: bitdevsnyc at gmail. There
are different requirements for presentations depending on the nature of the
project.
event or have a recommended topic for discussion. There are different
requirements for presentations depending on the nature of the project.

### Whitepaper Series

Expand All @@ -47,7 +47,7 @@ Elliptic Curve encryption) a chapter of a textbook, Wikipedia article, or other
material can be suggested.

To propose a topic to present or volunteer to present a paper, please contact
bitdevsnyc at gmail.
the organizers via the Meetup page or GitHub discussions.

### Debate Series

Expand Down
16 changes: 16 additions & 0 deletions assets/css/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ html, body {
}
}

// Responsive nav: stack on small screens
@media (max-width: $small-screen) {
.Header-inner {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.Header-nav {
flex-wrap: wrap;
a {
margin-left: 0;
margin-right: 1rem;
}
}
}

.Site {
max-width: 880px;
margin: 0 auto;
Expand Down
47 changes: 47 additions & 0 deletions assets/css/_post.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,53 @@
.Post {
word-wrap: break-word;

em { font-style: italic; }
strong { font-weight: bold; }

ol, ul {
list-style: disc;
margin-block-start: 1em;
margin-block-end: 1em;
}
ol {
list-style: decimal;
}
ul ul {
margin-block-start: 0;
margin-block-end: 0;
}
li:before {
content: initial;
}

blockquote {
border-left: 3px solid $primary-color;
padding-left: 1rem;
opacity: 0.8;
margin: 1rem 0;
}

code {
background: #f4f4f4;
padding: 0.1em 0.3em;
border-radius: 3px;
font-family: $body-font;
font-size: 0.9em;
}

pre code {
background: none;
padding: 0;
}

pre {
background: #f4f4f4;
padding: 1rem;
overflow-x: auto;
margin: 1rem 0;
border-radius: 3px;
}

&-title {
margin: 0 0 0.25rem 0;
font-size: 1.8rem;
Expand Down
1 change: 1 addition & 0 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ <h2 class="Home-posts-title">Blog Posts</h2>
</div>
{% endif %}
{% endfor %}
</div>
</div>
2 changes: 1 addition & 1 deletion calendar.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: Meetings
title: Calendar
---

BitDevs Vancouver is typically held once a month. You can subscribe to event announcements via [meetup.com](https://www.meetup.com/Vancouver-Bitcoiners/).
Expand Down
7 changes: 4 additions & 3 deletions cities.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
layout: default
title: Cities
---

As Bitcoin has grown, so too have the local communities of like minded enthusiasts who wish to learn from one another and connect on a deeper level. Each of these communities is unique in its own way, composed of individuals from all walks of life with different ideas about what Bitcoin is and what it is not. What it can do, and what it cannot. But no matter from what lense you view Bitcoin, you cannot escape certain shared beliefs, because without them Bitcoin would not exist. One most critical is that of open source software development––"standing on the shoulder's of giants"––a principle that enables a seemingly endless chain of novel insights from which Bitcoin was born and so too are the ideas that will allow it to scale and remain secure in an increasingly adversarial world.
As Bitcoin has grown, so too have the local communities of like minded enthusiasts who wish to learn from one another and connect on a deeper level. Each of these communities is unique in its own way, composed of individuals from all walks of life with different ideas about what Bitcoin is and what it is not. What it can do, and what it cannot. But no matter from what lense you view Bitcoin, you cannot escape certain shared beliefs, because without them Bitcoin would not exist. One most critical is that of open source software development––"standing on the shoulders of giants"––a principle that enables a seemingly endless chain of novel insights from which Bitcoin was born and so too are the ideas that will allow it to scale and remain secure in an increasingly adversarial world.

Inspired by this very ethos, the BitDevs NYC community fostered an in-person environment where technically focused dialogue could be used as a way of testing ideas, just in the same way software protocols are challenged in open networks. Instead of organizing meetups exclusively around presentations and lectures, events were styled as Socratic Seminars, such that open discourse underpinned each event, inviting a collaborative spirit that reflected the base principles of the Bitcoin protocol and cypherpunk spirit.

Expand All @@ -16,8 +17,8 @@ As a disclaimer, BitDevs NYC has no official associations with or oversight of t
- [Austin](https://austinbitdevs.com/)
- [Berlin](https://bitdevs.berlin/)
- [Chicago](https://chibitdevs.org/)
- [Denver](http://denverbitdevs.com/)
- [Honolulu](http://www.honolulubitdevs.com/)
- [Denver](https://denverbitdevs.com/)
- [Honolulu](https://www.honolulubitdevs.com/)
- [London](https://londonbitdevs.org/)
- [Los Angeles](https://bitdevsla.org/)
- [Miami](https://miamibitdevs.org/)
Expand Down
1 change: 1 addition & 0 deletions events.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ <h2 class="Home-posts-title">Socratic Seminars</h2>
</div>
{% endif %}
{% endfor %}
</div>
</div>
5 changes: 3 additions & 2 deletions map.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
layout: default
title: Map
---

We love Bitcoin, we love earning Bitcoin and we love spending Bitcoin. Below you can find a curated selection of businesses around Greater Vancouver where we spend our sats. If you would like to see your business added, [open a discussion here.](https://github.com/VancouverBitdevs/VancouverBitdevs.github.io/discussions/categories/merchants).
Expand All @@ -23,7 +24,7 @@ We love Bitcoin, we love earning Bitcoin and we love spending Bitcoin. Below you
- [The Laughing Bean Coffee](https://www.laughingbeancoffee.com/): Coffee and baked delicacies
- [The Loft on Denman](https://loftondenman.com/): Carribbean specialties

#### Miscallaneous
#### Miscellaneous

- [Arborist Pro](https://www.arborist-pro.ca/): Reports, removals, cutting & emergency response
- [Frasier River Forge](https://fraserriverforge.com/): Learn blacksmithing
Expand All @@ -38,5 +39,5 @@ id="btcmap"
title="BTC Map"
width="100%" height="480"
allowfullscreen="true"
src="https://www.btcmap.org/map?lat=49.326912087086605&long=-122.85976409912111&lat=49.11747845930749&long=-123.3424758911133"
src="https://www.btcmap.org/map?lat=49.2489&long=-123.0032&zoom=11"
></iframe>