mirror of
https://github.com/LukeHagar/jims-blog.git
synced 2025-12-06 04:20:07 +00:00
Adding conferences
This commit is contained in:
@@ -34,6 +34,12 @@ Menus:
|
||||
title: Livestreams
|
||||
url: /livestreams
|
||||
weight: 3
|
||||
|
||||
- identifier: conferences
|
||||
name: Conferences
|
||||
title: Conferences
|
||||
url: /conferences
|
||||
weight: 4
|
||||
|
||||
#Dropdown menu
|
||||
# - identifier: dropdown
|
||||
@@ -400,4 +406,50 @@ params:
|
||||
|
||||
- title: "Episode 6: Rolling out the Tea Trolley"
|
||||
id: "a0D--654gfM"
|
||||
description: No app is complete without deployment. In this episode Jim and Sam look at how to manage and deploy services using DevOps practices, including using tools to define your infrastructure as code, and to deploy automatically from GitHub.
|
||||
description: No app is complete without deployment. In this episode Jim and Sam look at how to manage and deploy services using DevOps practices, including using tools to define your infrastructure as code, and to deploy automatically from GitHub.
|
||||
|
||||
conferences:
|
||||
upcoming:
|
||||
series:
|
||||
- title: "Edge Impulse Imagine"
|
||||
videos:
|
||||
- title: What’s new with Azure IoT to get you building solutions faster
|
||||
time: Friday 30th Sep
|
||||
description: "We all know IoT is hard! So many different tools to use with different boards, so many ways to build out the cloud side of the solution. This is why the IoT teams at Microsoft have been working hard to simplify this process and allow you to go from unboxing an IoT board to a fully working IoT application in as little time as possible."
|
||||
image: /images/conferences/edge-impulse-imagine.png
|
||||
registrationLink: https://www.edgeimpulse.com/imagine
|
||||
previous:
|
||||
series:
|
||||
- title: NDC
|
||||
videos:
|
||||
- title: How thanking people can lead to a better culture
|
||||
id: 5hjpxa52PPc
|
||||
description: This lightning talk investigates thanks through a case study of a company in New Zealand that decided to take thanks from a biweekly meeting held by one team, to a company wide culture change that led to a happier workplace for everyone.
|
||||
- title: Build cross-platform mobile apps using Fabulous
|
||||
id: Hm4EDPNXQqY
|
||||
description: This session will start with an overview of MVU, discussing how it works and why it is such a great architecture. It will then move on to building your first Fabulous app that runs on iOS and Android.
|
||||
- title: YES All digital 2021
|
||||
videos:
|
||||
- title: Introduction to IoT using Azure IoT services
|
||||
id: j-TukPd42ro
|
||||
description: Yearly Edu Summit 2021. Introduction to IoT using Azure IoT services
|
||||
- title: Microsoft Build 2020
|
||||
videos:
|
||||
- title: Recognizing speech with a few lines of Python
|
||||
id: h6xbpMPSGEA
|
||||
description: In this session we unlock the power of AI to convert the spoken work to text in only a few lines of Python code. Create live captions, dictate messages with your voice, and amaze your friends!
|
||||
- title: Microsoft Build 2019
|
||||
videos:
|
||||
- title: Prototyping an internet connected smart home device with Azure IoT hub
|
||||
id: Dr_nva7q90Q
|
||||
description: In this session we look at how to create a prototype interconnected fan unit using an IoT prototyping board. This board will connect to Azure to upload sensor data, and connect to a fan turning it on if the temperature is above a threshold.
|
||||
- title: Microsoft Build 2018
|
||||
videos:
|
||||
- title: All Things Mobile
|
||||
id: _N2mHFgshOU
|
||||
description: In this video, Christina and Jim interview Miguel de Icaza, Simina Pasat and Thomas Dohmke about all things mobile.
|
||||
- title: Xamarin Evolve 2016
|
||||
videos:
|
||||
- title: Clicking on the Real World with iBeacon and Eddystone
|
||||
id: vQqIXKU98LI
|
||||
description: In this session, Jim will take you through a quick overview of beacon technology, including Apple's iBeacons and Google's Eddystone, before diving into some code. We'll even build a simple app live on stage to demonstrate how you can detect and wake up beacons, as well as detect user proximity to beacons.
|
||||
@@ -3,6 +3,8 @@ title: "Led Ticker Tape"
|
||||
date: 2022-02-25T17:01:05Z
|
||||
draft: false
|
||||
featured_image: hello-lights.png
|
||||
tags: ["led", "light", "dotnet" ,".net", "iot"]
|
||||
description: Learn how to scroll text using .NET IoT and an LED panel
|
||||
---
|
||||
|
||||

|
||||
|
||||
4
blog/content/conferences.md
Normal file
4
blog/content/conferences.md
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Conferences"
|
||||
layout: conferences
|
||||
---
|
||||
@@ -1,6 +1,4 @@
|
||||
---
|
||||
title: "Livestreams"
|
||||
layout: livestreams
|
||||
tags: ["led", "light", "dotnet" ,".net", "iot"]
|
||||
description: Learn how to scroll text using .NET IoT and an LED panel
|
||||
---
|
||||
|
||||
93
blog/layouts/_default/conferences.html
Normal file
93
blog/layouts/_default/conferences.html
Normal file
@@ -0,0 +1,93 @@
|
||||
{{ define "head" }}
|
||||
<meta name="description" content="{{ .Title }} of {{ .Site.Title }}">
|
||||
<!-- <link rel="stylesheet" href="{{ .Site.Params.staticPath }}/css/list.css" media="all"> -->
|
||||
<link rel="stylesheet" href="{{ .Site.Params.staticPath }}/css/projects.css" media="all">
|
||||
{{ end }}
|
||||
|
||||
{{ define "title" }}
|
||||
{{.Title }} | {{ .Site.Title }}
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<div class="container pt-5" id="list-page">
|
||||
<div class="row justify-content-center px-3 px-md-5">
|
||||
<h1 class="text-left pb-2">{{.Title}}</h1>
|
||||
<span class="subtitle text-left pb-2">Come meet me at these upcoming events, or catch a selection of my sessions from previous events</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container pt-5" id="list-page">
|
||||
<section id="projects">
|
||||
<div class="container">
|
||||
<div class="row justify-content-left px-3 px-md-5">
|
||||
<h2 class="text-left pb-2">Upcoming</h2>
|
||||
</div>
|
||||
{{ range .Site.Params.conferences.upcoming.series }}
|
||||
<div class="row justify-content-center px-3 px-md-5">
|
||||
<h3 class="text-left pb-2">{{ .title }}</h2>
|
||||
</div>
|
||||
<div class="row justify-content-left px-3 px-md-5">
|
||||
{{ range .videos}}
|
||||
<div class="col col-lg-4 col-md-4 my-3">
|
||||
<div class="card h-100" title="{{ .title }}">
|
||||
<div class="card-head">
|
||||
<a href="{{ .registrationLink }}">
|
||||
<img class="card-img-top" src="{{ .image }}" alt="{{ .title }}">
|
||||
</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{{ .title }}</h5>
|
||||
<h6 class="card-subtitle mb-2 text-muted">{{ .time }}</h6>
|
||||
<p class="card-text">{{ .description }}</p>
|
||||
</div>
|
||||
<div class="card-footer py-3">
|
||||
<span class="float-end">
|
||||
<a class="btn btn-sm" href="{{ .registrationLink }}" target="_blank">
|
||||
Register here
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="row justify-content-center px-3 px-md-5">
|
||||
<p class="text-center pb-2"> </p>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="projects" class="py-5">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center px-3 px-md-5">
|
||||
<h2 class="text-left pb-2">Previous conference sessions</h2>
|
||||
</div>
|
||||
{{ range .Site.Params.conferences.previous.series }}
|
||||
<div class="row justify-content-center px-3 px-md-5">
|
||||
<h3 class="text-left pb-2">{{ .title }}</h2>
|
||||
</div>
|
||||
<div class="row justify-content-left px-3 px-md-5">
|
||||
{{ range .videos}}
|
||||
<div class="col col-lg-4 col-md-4 my-3">
|
||||
<div class="card h-100" title="{{ .title }}">
|
||||
<div class="ratio ratio-16x9">
|
||||
<iframe src="https://www.youtube.com/embed/{{.id}}" frameborder="0"
|
||||
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{{ .title }}</h5>
|
||||
<p class="card-text">{{ .description }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="row justify-content-center px-3 px-md-5">
|
||||
<p class="text-center pb-2"> </p>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
{{ end }}
|
||||
BIN
blog/static/images/conferences/edge-impulse-imagine.png
Normal file
BIN
blog/static/images/conferences/edge-impulse-imagine.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
Reference in New Issue
Block a user