Skip to content

Commit 74122a9

Browse files
author
Sangeeth Sudheer
authored
meetup31: add musthaq (#102)
* meetup31: add musthaq * fix: workaround for vuejs/vuepress#2831
1 parent 3602a18 commit 74122a9

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

.vuepress/components/EventPage.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<main class="agenda">
2626
<EventGallery :photos="$page.frontmatter.photos" />
2727
<div
28-
v-if="$page.frontmatter.description"
29-
v-html="$page.frontmatter.description"
28+
v-if="$page.frontmatter.event_description"
29+
v-html="$page.frontmatter.event_description"
3030
></div>
3131
<h2>Agenda</h2>
3232
<template

26/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 26
33
title: Vue.js Global (vue-global)
4-
description: |
4+
event_description: |
55
<p>Come to the first ever Vue Global Meetup event!</p>
66
<p>We want to bring all Vue communities together and create a place where we can all share resources and knowledge. Every location can provide a speaker as we broadcast around the world bringing new and seasoned speakers to everyone!</p>
77
<p>The first event will include collaboration between the following communities:</p>

27/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 27
33
title: 'VueBLR Online #27'
4-
description: |
4+
event_description: |
55
<p>We're getting ready for a new online meetup experience for the VueBLR community. Join us and the many Vue enthusiasts on Saturday, the 23rd of May for some great sessions and discussions.</p>
66
<p>📝 Agenda:</p>
77
<p>2:00 - 2:15 PM: Get to know each other</p>

28/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 28
33
title: 'VueBLR Online #28'
4-
description: |
4+
event_description: |
55
<p>We're keeping the ball rollin' and having our second remote meetup this month. We'll have our usual lineup of great speakers and great talks—all experienced at the comfort of your homes.</p>
66
<p>📝 Schedule:</p>
77
<p>2:00 - 2:05 PM: Get to know each other</p>

29/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 29
33
title: 'VueBLR Online #29'
4-
description: |
4+
event_description: |
55
<p>Hi y'all! It's <a href="https://youtu.be/Gs069dndIYk">September</a> and we have another fantastic online meetup in the works. Check out the schedule for all the details.</p>
66
<p>📝 Schedule:</p>
77
<p>2:00 - 2:05 PM: Get to know each other</p>

30/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 30
33
title: "VueBLR Online #30"
4-
description: |
4+
event_description: |
55
<p>Hello friends! 👋 It's been a while, but we're back and there's A LOT to talk about. We're kicking off our first meetup for the year, this March so get excited!</p>
66
<p>📝 Schedule:</p>
77
<p>2:30 - 2:45 PM: Intro</p>

31/README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
id: 31
33
title: "VueBLR Online #31"
4-
description: |
4+
event_description: |
55
<p>We're gearing up for the April meetup. Want to be in the spotlight? <a href="https://bit.ly/vueblrcfp">Submit your talk here.</a></p>
66
<p>📝 Schedule:</p>
7-
<p>TBA</p>
7+
<p>2:30 - 2:45 PM: Intro</p>
8+
<p>2:45 - 3:30 PM: Talk #1: Going off the main thread in Vue by Musthaq Ahamad</p>
9+
<p>TBA</p>
810
<p>PS. All times are in IST (+5:30 GMT)</p>
911
<p>📹 YouTube Stream link: TBA</p>
1012
<p>You can post your questions and discuss with us in the YouTube chat.</p>
@@ -15,6 +17,13 @@ venue:
1517
name: Online
1618
photos:
1719
- https://secure.meetupstatic.com/photos/event/6/c/3/5/highres_495447701.jpeg
20+
agenda:
21+
- title: "Going off the main thread in Vue"
22+
type: talk
23+
description: |
24+
Modern web frameworks and architecture heavily relies on the main/ui thread and any expensive computation done with Javascript can block the main thread causing slow pages, unresponsive feedbacks and lagging. In this talk we'll explore ways we can optimize our vue applications with best practices and utilising available options to spawn web workers to offload task off from the main thread.
25+
speaker: Musthaq Ahamad <@haxzie_>
26+
bio: "UX Engineer at Locale.ai. Loves to write, design and build for the web."
1827
organizers:
1928
- Vue Bangalore <@vueblr>
2029
---

0 commit comments

Comments
 (0)