All Projects → mrichman → Kubecon 2018

mrichman / Kubecon 2018

Licence: other
Slides from Kubecon 2018

Projects that are alternatives of or similar to Kubecon 2018

Backslide
💦 CLI tool for making HTML presentations with Remark.js using Markdown
Stars: ✭ 679 (+4143.75%)
Mutual labels:  slides, presentation
Godot Power Pitch
International pitch for the Godot Game Engine, made in Godot, available in 15+ languages
Stars: ✭ 348 (+2075%)
Mutual labels:  slides, presentation
Presentation
📑 Presentation helps you to make tutorials, release notes and animated pages.
Stars: ✭ 3,004 (+18675%)
Mutual labels:  slides, presentation
slides
Terminal based presentation tool
Stars: ✭ 5,347 (+33318.75%)
Mutual labels:  presentation, slides
Fusuma
✍️Fusuma makes slides with Markdown easily.
Stars: ✭ 5,033 (+31356.25%)
Mutual labels:  slides, presentation
StageMate
StageMate is the smart assistant for your presentation. It will cover all aspects of your pitch from skipping slides to reminding you if you miss some major point.
Stars: ✭ 60 (+275%)
Mutual labels:  presentation, slides
Xaringanthemer
😎 Give your xaringan slides some style
Stars: ✭ 337 (+2006.25%)
Mutual labels:  slides, presentation
slides
No description or website provided.
Stars: ✭ 27 (+68.75%)
Mutual labels:  presentation, slides
Shlide
🖼 a slide deck presentation tool written in pure bash
Stars: ✭ 406 (+2437.5%)
Mutual labels:  slides, presentation
Reveal Hugo
📽️ Create rich HTML-based presentations with Hugo and Reveal.js
Stars: ✭ 381 (+2281.25%)
Mutual labels:  slides, presentation
getting-started-with-grails
Conference Talk - Getting Started with Grails
Stars: ✭ 23 (+43.75%)
Mutual labels:  presentation, slides
Marp Cli
A CLI interface for Marp and Marpit based converters
Stars: ✭ 606 (+3687.5%)
Mutual labels:  slides, presentation
diorama
A set of React.js components to create easy en extendable presentations.
Stars: ✭ 17 (+6.25%)
Mutual labels:  presentation, slides
code-slides
present your code as slides in VSCode
Stars: ✭ 17 (+6.25%)
Mutual labels:  presentation, slides
nicar tworkshop
Slides for #NICAR18 workshop on collecting and analyzing Twitter data
Stars: ✭ 23 (+43.75%)
Mutual labels:  presentation, slides
Big
presentations for busy messy hackers
Stars: ✭ 3,208 (+19950%)
Mutual labels:  slides, presentation
cppcon2015
Repository for the slides and the code of my CppCon 2015 talks.
Stars: ✭ 93 (+481.25%)
Mutual labels:  presentation, slides
markdown-deck
A web component for presenters
Stars: ✭ 15 (-6.25%)
Mutual labels:  presentation, slides
Marpit
The skinny framework for creating slide deck from Markdown
Stars: ✭ 364 (+2175%)
Mutual labels:  slides, presentation
Code Surfer
Rad code slides <🏄/>
Stars: ✭ 5,477 (+34131.25%)
Mutual labels:  slides, presentation

Slides from Kubecon 2018

I downloaded all the slides using this script:

#!/bin/bash

mkdir kubecon
DAYS=("2018-12-11" "2018-12-13" "2018-12-12")
for DAY in "${DAYS[@]}"; do
  #Super shitty pipefest because of grep matched groups sadness
  LINKS=($(curl https://kccna18.sched.com/${DAY}/overview | grep -oEi "f='(.*)' cl" | cut -d\' -f 2 | tr '\n' ' '))
  for LINK in "${LINKS[@]}"; do
    echo "Requesting https://kccna18.sched.com${LINK}"
    #Find file link on event page
    FILE_URL=$(curl -s https://kccna18.sched.com${LINK} | grep "file-uploaded" | cut -d\" -f 4)
    #If there's an uploaded file on the page, download it
    if [ -n "${FILE_URL}" ]; then
      FILENAME=${LINK#https:*}
      FILENAME="$DAY-${FILENAME##/*/}.${FILE_URL##*.}"
      curl -o "kubecon/${FILENAME}" -s "${FILE_URL}"
    fi
  done
done
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].