Where can i find the instruction notes in the training slides ? With s i get a speaker view but there are no notes ?
Are you looking at gslides or reveal slides? Which particular course?
Elaine
The course is 4.0-intro-neo4j. In reveal slides there are no notes in the speaker view.
We have gone away from using reveal.js for our slides. The slides we produce currently are gslides and our instructors had their own custom notes.
Elaine
How can i produce gslides out of training-v3 and the instructor-notes in the adoc files are not used any more ?
Bests
Andreas
You need a google API credentials to do so.
./gradlew :convertGoogleSlides
It uses the [.notes] areas for instructor notes.
Elaine
How can i add this ?
Bests
Andreas
You need a GCP account where you have access to to asciidoc to gslides API.
Elaine
Ok, no alternative for a volunteer ;-) Will the reveal.js version be updated in the future and is there a way to create a pdf out of the slides ?
Last Question: Some slides have text out of focus, any ideas about that ?
Bests
Andreas
We are not really maintaining the content for reveal.js production, but rather gslide production which is the preferred option for our instructors.
If you apply to the Educator Program (from a University), you get access to the gslides:
Elaine
Ok, how can i apply ?
You can find my affiliation here:
Prof. Dr. Andreas Kuczera
Technische Hochschule Mittelhessen
Fachbereich MNI, A 10, Raum 6.60
Wiesenstraße 14
35390 Gießen
Email: andreas.kuczera@mni.thm.de
My course starts on Friday ;-)
Bests
Andreas
Click on the above link to apply.
Elaine
Sorry my addblocker ublock deleted the forms ;-)
I applied successfully now.
Bests
Andreas
Did you submit your application? I don't see it on our side.
Elaine
Yes i did with my mail andreas.kuczera@mni.thm.de
Welcome to Neo4j!
Thanks so much Andreas for signing up for Neo4j. Please verify your email address (andreas.kuczera@mni.thm.de) by clicking the following button:
Andreas,
I sent you a link to the resources via email.
Elaine
Worked ;-)
Thanks and all the best
Andreas
Hi Elaine,
this query does not work:
LOAD CSV WITH HEADERS FROM
'https://data.neo4j.com/v4.0-intro-neo4j/movie1s.csv' as row
MERGE (m:Movie {id:toInteger(row.movieId)})
ON CREATE SET
m.title = row.title,
m.avgVote = toFloat(row.avgVote),
m.releaseYear = toInteger(row.releaseYear),
m.genres = split(row.genres,":")
Is the resource online or maybe its a typo in the slides ?
Bests
Andreas
Should be movies1.csv
Elaine