Skip to content

Commit

Permalink
secrets slide. imagery fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
traceypooh committed Nov 9, 2024
1 parent 6090196 commit 64eb8a1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions aaron-swartz-day-2024/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,17 @@
- dependency scanning
- Automated Response: playbooks for incident response (disable accounts, block IPs in real-time)

---
## Secrets & Tokens
GitHub Actions/GitLab have easy repo/groups secrets mgmt
![gitlab secrets management panel](https://gitlab.com/internetarchive/nomad/-/raw/master/img/secrets.jpg)

- devs can self-administer secrets
- secrets become environment variables in deploys
- secrets easily "rotated"
- secrets easily audited


---
## Backup & Disaster Recovery
- Regular Backups: Enforce frequent & tested backups for data integrity
Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ME = {
slug: 'aaron-swartz-day-2024',
title: 'Microservices, Monoliths, and Operational Security <br> The Internet Archive in 2024',
img: 'first-big-break.jpg',
descrip: 'Aaron Swartz Day 2024.',
descrip: 'Aaron Swartz Day 2024',
}, {
slug: 'demuxed-2024',
title: 'Demuxed 2024:<br> What\'s on TV?<br> 4 editors and 2 robots walk into a bar..',
Expand Down Expand Up @@ -48,7 +48,7 @@ We use ffmpeg to crop the image area; tesseract to OCR the image into text; and
slug: 'dweb-2022',
slides: 'https://tracey.archive.org/dweb-2022',
title: 'Decentralized Social via markdown Blogs (+JS)',
img: 'https://tracey.archive.org/images/view-source.jpg',
img: 'view-source.jpg',
descrip: 'Create free blogs and websites entirely from markdown leveraging one JavaScript file. Take back control of your content with a newer vision for internetworked, decentralized social sharing with friends, family, and the world. Your website will be archivable, decentralize-able, 100% content-first, and will live forever. <a href="https://blogtini.com">blogtini.com</a>',
}, {
href: 'https://www.youtube.com/watch?v=NXsvhSgYKfk',
Expand Down Expand Up @@ -201,7 +201,7 @@ function main() {
str += `
<div class="card card-body bg-light">
<a href="${href}">
<img src="images/${card.img}"/>
<img src="${card.img?.startsWith('https://') ? '' : 'images/'}${card.img}"/>
</a>
<h3>
<a href="${href}">${card.title}</a>
Expand Down

0 comments on commit 64eb8a1

Please sign in to comment.