Skip to content

Commit 5dcf8c9

Browse files
authored
Merge pull request #64 from ecabrerar/master
updating talk schedule
2 parents fd5fb70 + 1360761 commit 5dcf8c9

3 files changed

Lines changed: 67 additions & 59 deletions

File tree

src/jbake/assets/js/session.js

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,35 @@ fetch(fetchUrl)
1111
return response.json();
1212
})
1313
.then(function (sessionsJson) {
14-
var sessions = document.getElementById('sessions');
15-
16-
// traitement de l'objet
17-
for (let i in sessionsJson) {
18-
let title = sessionsJson[i].title;
19-
let id = sessionsJson[i].id;
20-
let abstract = sessionsJson[i].abstract;
21-
let speakerId = sessionsJson[i].speakers[0];
22-
let language = sessionsJson[i].language;
23-
let tags = sessionsJson[i].tags;
24-
let audienceLevel = sessionsJson[i].audience_level;
25-
let talkFormat = sessionsJson[i].talk_format;
26-
let time = sessionsJson[i].time;
27-
28-
let speakerPromise = getSpeakerById(getUsefulContents("lang", "../json/speakers/"+speakerId));
29-
30-
speakerPromise.then(function(speaker){
31-
sessions.innerHTML += createSessionCard(id,title,abstract,speaker, tags,language,audienceLevel,talkFormat, time);
32-
});
33-
}
14+
15+
var sessionList = [];
16+
for(let y in sessionsJson){
17+
sessionList.push(sessionsJson[y]);
18+
}
19+
20+
sessionList.sort(function(a, b){return a.id-b.id});
21+
22+
let sessions = document.getElementById('sessions');
23+
24+
sessionList.forEach((session) => {
25+
let title = session.title;
26+
let id = session.id;
27+
let abstract = session.abstract;
28+
let speakerId = session.speakers[0];
29+
let language = session.language;
30+
let tags = session.tags;
31+
let audienceLevel = session.audience_level;
32+
let talkFormat = session.talk_format;
33+
let time = session.time;
34+
35+
let speakerPromise = getSpeakerById(getUsefulContents("lang", "../json/speakers/"+speakerId));
36+
37+
speakerPromise.then(function(speaker){
38+
sessions.innerHTML += createSessionCard(id,title,abstract,speaker, tags,language,audienceLevel,talkFormat, time);
39+
});
40+
});
41+
42+
3443
});
3544

3645
function createSessionCard(id, title,abstract, speaker, tags, language,audienceLevel, talkFormat, time) {

src/jbake/assets/json/sessions.json

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,39 @@
11
{
22

3-
43
"101": {
54
"id": 101,
6-
"title": "Introduction to the GraalVM polyglot virtual machine",
7-
"abstract": "This talk will present five use cases for the multilingual virtual machine, GraalVM, that can benefit your organization today. From speeding up your applications to using multiple programming languages in the same project, native languages on top of the JVM and more.",
8-
"description": "This talk will present five use cases for the multilingual virtual machine, GraalVM, that can benefit your organization today. From speeding up your applications to using multiple programming languages in the same project, native languages on top of the JVM and more.",
5+
"title": "Clean Threading with Kotlin Coroutines",
6+
"abstract": "Async and Threading are words that very often scare the developers. In Android, traditionally we have managed some of those tasks with the now deprecated AsyncTask, but that callback oriented way has some limitations.\n\nLet's learn how we can refactor our legacy background operations using callbacks for a graceful and very optimized way using Kotlin Coroutines.\n\nYou will get started with Kotlin coroutines, learn how to perform multiple operations in parallel or performing sequential operations.",
7+
"description": "Async and Threading are words that very often scare the developers. In Android, traditionally we have managed some of those tasks with the now deprecated AsyncTask, but that callback oriented way has some limitations.\n\nLet's learn how we can refactor our legacy background operations using callbacks for a graceful and very optimized way using Kotlin Coroutines.\n\nYou will get started with Kotlin coroutines, learn how to perform multiple operations in parallel or performing sequential operations.",
98
"audience_level": "Intermediate",
10-
"time": "TBD",
9+
"time": "10:30 AM",
1110
"language": "es",
1211
"talk_format": "Talk (~30-45 minutes)",
1312
"tags": [
14-
"Java",
15-
"JVM"
13+
"JVM",
14+
"Kotlin",
15+
"Framework"
1616
],
1717
"speakers": [
18-
"psanders"
18+
"euryperez"
1919
]
2020
},
2121

2222
"102": {
2323
"id": 102,
24-
"title": "Clean Threading with Kotlin Coroutines",
25-
"abstract": "Async and Threading are words that very often scare the developers. In Android, traditionally we have managed some of those tasks with the now deprecated AsyncTask, but that callback oriented way has some limitations.\n\nLet's learn how we can refactor our legacy background operations using callbacks for a graceful and very optimized way using Kotlin Coroutines.\n\nYou will get started with Kotlin coroutines, learn how to perform multiple operations in parallel or performing sequential operations.",
26-
"description": "Async and Threading are words that very often scare the developers. In Android, traditionally we have managed some of those tasks with the now deprecated AsyncTask, but that callback oriented way has some limitations.\n\nLet's learn how we can refactor our legacy background operations using callbacks for a graceful and very optimized way using Kotlin Coroutines.\n\nYou will get started with Kotlin coroutines, learn how to perform multiple operations in parallel or performing sequential operations.",
24+
"title": "Introduction to the GraalVM polyglot virtual machine",
25+
"abstract": "This talk will present five use cases for the multilingual virtual machine, GraalVM, that can benefit your organization today. From speeding up your applications to using multiple programming languages in the same project, native languages on top of the JVM and more.",
26+
"description": "This talk will present five use cases for the multilingual virtual machine, GraalVM, that can benefit your organization today. From speeding up your applications to using multiple programming languages in the same project, native languages on top of the JVM and more.",
2727
"audience_level": "Intermediate",
28-
"time": "TBD",
28+
"time": "11:15 AM",
2929
"language": "es",
3030
"talk_format": "Talk (~30-45 minutes)",
3131
"tags": [
32-
"JVM",
33-
"Kotlin",
34-
"Framework"
32+
"Java",
33+
"JVM"
3534
],
3635
"speakers": [
37-
"euryperez"
36+
"psanders"
3837
]
3938
},
4039

@@ -44,7 +43,7 @@
4443
"abstract": "In this session we will deal with the topic of reactive programming using the Mutiny library. There will be live code!",
4544
"description": "What is reactive programming? When we search in Wikipedia, you might find the following definition:\n\nReactive programming combines functional programming, the observer pattern, and the iterable programming\n\n.It is correct but we did not find a more useful definition but let's make a simpler definition.\n\nReactive programming is about programming with data streams.\n\nMutiny is a new reactive programming library.\n\nProvides a simple but powerful asynchronous development model that allows you to create reactive applications.\n\nEasy to implement?\n\nThe API does not require much advanced knowledge. This should help design your logic.\n\nThere will be live code!",
4645
"audience_level": "All",
47-
"time": "TBD",
46+
"time": "12:00 M",
4847
"talk_format": "Talk (~30-45 minutes)",
4948
"language": "es",
5049
"tags": [
@@ -59,7 +58,7 @@
5958
"104": {
6059
"id": 104,
6160
"title": "Our journey to adopt Kubernetes to create an App like Tinder from start to finish",
62-
"time": "TBD",
61+
"time": "12:45 M",
6362
"abstract": "How many questions cross your mind at the time of starting a complex platform-adaptive app like Tinder? Probably many, especially in terms of technology and infrastructure.\n\nIn this talk, we'll discuss our approaches to overcome challenges that could prevent us from reaching our goals to create a viable solution for our users. We'll focus on open source tools that help us achieve the following objectives:\n\n- Have a single source of truth for our environments to support our contingency plan.\n- Reduce developer onboarding overhead and increase productivity.\n- Leverage existing technologies to reduce time to market.\n- Increase value for our users by improving service reliability.\n- Support business objectives with metrics, analytics, and platform observability.\nI invite you to join my talk to help you streamline your process of creating complex enterprise applications.",
6463
"description": "How many questions cross your mind at the time of starting a complex platform-adaptive app like Tinder? Probably many, especially in terms of technology and infrastructure.\n\nIn this talk, we'll discuss our approaches to overcome challenges that could prevent us from reaching our goals to create a viable solution for our users. We'll focus on open source tools that help us achieve the following objectives:\n\n- Have a single source of truth for our environments to support our contingency plan.\n- Reduce developer onboarding overhead and increase productivity.\n- Leverage existing technologies to reduce time to market.\n- Increase value for our users by improving service reliability.\n- Support business objectives with metrics, analytics, and platform observability.\nI invite you to join my talk to help you streamline your process of creating complex enterprise applications.",
6564
"audience_level": "All",
@@ -79,7 +78,7 @@
7978
"abstract": "With the proliferation of systems that implement the microservices architecture and the associated problems in the exchange of messages under REST, a new system arises that greatly helps in the performance of the exchange of messages for multiplatform systems and independent of the implementation language, This technology is called gRPC (general-purpose Remote Procedure Call) and we will be seeing its implementation under the Java platform and integrating into other languages.",
8079
"description": "With the proliferation of systems that implement the microservices architecture and the associated problems in the exchange of messages under REST, a new system arises that greatly helps in the performance of the exchange of messages for multiplatform systems and independent of the implementation language, This technology is called gRPC (general-purpose Remote Procedure Call) and we will be seeing its implementation under the Java platform and integrating into other languages.",
8180
"audience_level": "All",
82-
"time": "TBD",
81+
"time": "1:30 PM",
8382
"talk_format": "Talk (~30-45 minutes)",
8483
"language": "es",
8584
"tags": [
@@ -97,7 +96,7 @@
9796
"abstract": "The management and administration of APIs are becoming more widespread, today it is easier to expose APIs safely to the world. However, the API development cycle has some pending cases to solve. The entire API lifecycle should also be agile to remain relevant. So it's time to think of a new way to deliver APIs (including mockups and tests) to simplify and speed up the delivery of production-ready APIs.\n\nIn this session we are going to create a Web API covering different phases of API development (Design, Mock up and testing) until we reach to production.",
9897
"description": "The management and administration of APIs are becoming more widespread, today it is easier to expose APIs safely to the world. However, the API development cycle has some pending cases to solve. The entire API lifecycle should also be agile to remain relevant. So it's time to think of a new way to deliver APIs (including mockups and tests) to simplify and speed up the delivery of production-ready APIs.\n\nIn this session we are going to create a Web API covering different phases of API development (Design, Mock up and testing) until we reach to production.",
9998
"audience_level": "All",
100-
"time": "TBD",
99+
"time": "2:15 PM",
101100
"talk_format": "Talk (~30-45 minutes)",
102101
"language": "es",
103102
"tags": [

0 commit comments

Comments
 (0)