A collection of learning resources about Trino. The presentations can be used for any event and demo.
- What is Trino? at Trino Community Broadcast 48
- SQL training 1: Getting started with Trino and SQL
- SQL training 2: Advanced analytics with SQL and Trino
- SQL training 3: Data management with SQL and Trino
- SQL training 4: Functions with SQL and Trino
Other assets:
- Background images for video calls and other usage in
assets/backgrounds
. - Logo files for Trino and related technologies in
assets/logos
.
Use the URL for the repository to display the overview presentation, and navigate to the individual presentation.
Alternatively, run a local webserver with the runLocalServer.sh
or
runLocalServer.cmd
scripts, and navigate to
http://localhost:9000.
Press ?
for keyboard shortcuts, and find more information in the reveal.js
documentation.
- Uses reveal.js version 4.4.0 source in the
reveal
folder. - reveal.js documentation for info on writing and other details.
- keyboard shorts for presenting
Reveal.js has multiple built-in themes but what's better is you can customize your own theme. Trino presentations use our own branding and coloring already, but they can always be improved. Here are the steps to update them.
We've created trino-theme.scss from the .scss
files in /reveal/css/theme/source. It will be
automatically compiled from Sass to CSS (see the
gulpfile) when
you run npm run build -- css-themes
. To see all exposed variables to use in
the scss files, reference the
/reveal/css/theme/template/exposer.scss
file.
Note For more general css changes to the presentation that don't directly apply to the Trino Reveal theme, put that CSS in /css/trino.css
Each theme file does four things in the following order:
-
Include /reveal/css/theme/template/mixins.scss Shared utility functions.
-
Include /reveal/css/theme/template/settings.scss Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
-
Override This is where you override the default theme. Either by specifying variables (see settings.scss for reference) or by adding any selectors and styles you please.
-
Include /reveal/css/theme/template/theme.scss The template theme file which will generate final CSS output based on the currently defined variables.