1

big timeline

This commit is contained in:
Evan Pratten 2022-12-14 11:49:39 -05:00
parent 33ae2bef34
commit 566c2f5757
7 changed files with 61 additions and 77 deletions

View File

@ -1,6 +0,0 @@
---
title: November 2022
---
- **Nov 4**
- Early afternoon: QSO with VA3ZEV (Dave) via the VE3RSB repeater

View File

@ -0,0 +1,10 @@
---
title: Update from November 7, 2017
date: 2017-11-07
extra:
icon: las la-comment
---
Our class project yesterday.
![](/images/microblog/927939789311107072-DOC0OKwVQAAYH6R.jpg)

View File

@ -0,0 +1,3 @@
---
title: Updates
---

View File

@ -1,67 +0,0 @@
---
title: IP Addressing Plan
extra:
uses: [graphviz]
---
- `2602:faf5::/40`
- `2602:faf5::/48` Site - Cologix Toronto
- `2602:faf5:0:1::/64` Personal VPN
- `2602:faf5:0:ffff::/64` /64 announcement test
<!-- - `10 - 1F`: Reserved
- `20 - 2F`: Customer allocations
- `2602:faf5:20::/48` /64 allocation block -->
<!-- This is a planning document that keeps track of my IP address space. This is by no means complete, just a reference for a specific part of my network. -->
<!-- - `172.23.44.128/25`
-
- **`44.31.62.0/24`**: Aggregated at edge
- `44.31.62.0/25`
- `44.31.62.0/26`
- **`44.31.62.0/28`**: Routing infrastructure
- **`44.31.62.16/28`**: Point-to-Point linking prefix
- **`44.31.62.32/27`**: Homelab
- **`44.31.62.64/26`**: Pubnet
- **`44.31.62.65/32`**: Gateway (`border.lab`)
- **`44.31.62.66/31`**: Dragon
- `44.31.62.129/25`
- `2a12:dd47:9000::/36`
- **`2a12:dd47:9001::/48`**: Pubnet
- **`2a12:dd47:9001::1/128`**: Gateway (`border.lab`)
- **`2a12:dd47:9001::2/127`**: Dragon
- `2a12:dd47:9002::/48`: Point-to-Point linking prefix
- **`2a12:dd47:9002::/126`**: Links `border.lab` and `bgp-vm.lab`
- **`2a12:dd47:9003::/48`**: Website infrastructure
- **`2a12:dd47:9004::/48`**: Homelab -->
<!-- ## Needs
- VPN
- Home IPv6
## Sites
- Home
- yyz-edge
## Plan -->
<!-- - `44.31.62.0/24`
- `44.31.62.0/25`
- `44.31.62.0/26`
- `44.31.62.0/27`
- `44.31.62.32/27` VPN Space
- `44.31.62.64/26` Homelab prefix
- `44.31.62.128/25` Temp: Home
- `44.31.119.0/24`
- `xxxx:xxxx:xx00::/40`
- `xxxx:xxxx:xx01::/48` Site: Home
- `xxxx:xxxx:xx01::/52` Home network clients
- *This should be further broken down by vlan*
- *All clients should be eui-64 if possible*
- *RDNS: `abcd-abff-fecd-abcd.home.ewpratten.com`*
- `xxxx:xxxx:xx01:1000::/52` Homelab prefix
- `xxxx:xxxx:xx02::/48` VPN space -->

View File

@ -2,6 +2,8 @@
& > .container { & > .container {
max-width: 800px; max-width: 800px;
margin: auto !important; margin: auto !important;
padding-left: 1em;
padding-right: 1em;
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 KiB

View File

@ -10,14 +10,16 @@
{% set blog_section = get_section(path="blog/_index.md") %} {% set blog_section = get_section(path="blog/_index.md") %}
{% set music_ewp_section = get_section(path="music/evan-pratten/_index.md") %} {% set music_ewp_section = get_section(path="music/evan-pratten/_index.md") %}
{% set music_rtl_section = get_section(path="music/retrylife/_index.md") %} {% set music_rtl_section = get_section(path="music/retrylife/_index.md") %}
{% set photo_section = get_section(path="photography/_index.md") %} {# {% set photo_section = get_section(path="photography/_index.md") %} #}
{% set microblog_section = get_section(path="microblog/_index.md") %}
{# Combine pages #} {# Combine pages #}
{% set all_pages = [] %} {% set all_pages = [] %}
{% set all_pages = all_pages | concat(with=blog_section.pages) %} {% set all_pages = all_pages | concat(with=blog_section.pages) %}
{% set all_pages = all_pages | concat(with=music_ewp_section.pages) %} {% set all_pages = all_pages | concat(with=music_ewp_section.pages) %}
{% set all_pages = all_pages | concat(with=music_rtl_section.pages) %} {% set all_pages = all_pages | concat(with=music_rtl_section.pages) %}
{% set all_pages = all_pages | concat(with=photo_section.pages) %} {# {% set all_pages = all_pages | concat(with=photo_section.pages) %} #}
{% set all_pages = all_pages | concat(with=microblog_section.pages) %}
{# Sort and group #} {# Sort and group #}
{% set all_pages = all_pages | sort(attribute="date") | reverse %} {% set all_pages = all_pages | sort(attribute="date") | reverse %}
@ -32,9 +34,10 @@
{% set pages = map[year] %} {% set pages = map[year] %}
{# Per-year heading #} {# Per-year heading #}
<h2>{{year}}</h2> <h2>{{year}}</h2>
<ul> {# <ul> #}
{% for page in pages %} {% for page in pages %}
{% if not page.draft %} {% if not page.draft %}
<!--
<li class="timeline-item"> <li class="timeline-item">
<div class="timeline-datestamp"> <div class="timeline-datestamp">
{# Informational icon #} {# Informational icon #}
@ -53,7 +56,46 @@
<br class="mobile-linebreak" style="display: none;"> <br class="mobile-linebreak" style="display: none;">
<a href="{{page.path}}" class="timeline-title">{{page.title}}</a> <a href="{{page.path}}" class="timeline-title">{{page.title}}</a>
</li> </li>
-->
<div class="card">
<div class="card-header">
{# Informational icon #}
{% if page.extra.icon %}
<i class="{{page.extra.icon}}"></i>
{% else %}
<i class="las la-book"></i>
{% endif %}
<strong>{{page.title}}</strong>
</div>
<div class="card-body">
{# Embed appropriate content #}
{# {% if page.extra.excerpt %}
<p>{{page.extra.excerpt}}</p>
{% endif %} #}
{# Handle page types #}
{% if page.path is starting_with("/music") %}
{{page.content | safe}}
{% elif page.path is starting_with("/blog") %}
<blockquote>
{% if page.extra.excerpt %}
{{page.extra.excerpt}}
{% endif %}
</blockquote>
<a href="{{page.path}}">Read More</a>
{% elif page.path is starting_with("/microblog") %}
{{page.content | safe}}
{% endif %}
</div>
</div><br>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</ul> {#
</ul> #}
{% endfor %} {% endfor %}