Latent Growth Curve Models using the Lavaan Package in R workshop

Join our workshop on Latent Growth Curve Models using the Lavaan Package in R, which is a part of our workshops for Ukraine series! 


Here’s some more info: 

Title: Latent Growth Curve Models using the Lavaan Package in R

Date: Thursday, January 16th, 18:00 – 20:00 CET (Rome, Berlin, Paris timezone)

Speaker: Rogier Kievit is Professor of Developmental Neuroscience at the Donders Institute in Nijmegen, where he leads the Lifespan Cognitive Dynamics Lab (https://lifespancognitivedynamics.com/). He studies changes in cognitive abilities across the lifespan using multivariate techniques including factor analysis, growth curve models, mixture models and timeseries analysis. He using R almost every day, especially Lavaan and ggplot, and has contributed to multiple packages (e.g. ggrain, regsem, iced). If you send him exciting longitudinal data there is a real risk he may abandon other more urgent tasks.

Description: Rogier Kievit is Professor of Developmental Neuroscience at the Donders Institute in Nijmegen, where he leads the Lifespan Cognitive Dynamics Lab (https://lifespancognitivedynamics.com/). He studies changes in cognitive abilities across the lifespan using multivariate techniques including factor analysis, growth curve models, mixture models and timeseries analysis. He using R almost every day, especially Lavaan and ggplot, and has contributed to multiple packages (e.g. ggrain, regsem, iced). If you send him exciting longitudinal data there is a real risk he may abandon other more urgent tasks.


Minimal registration fee: 20 euro (or 20 USD or 800 UAH)



Please note that the registration confirmation email will be sent 1 day before the workshop.


How can I register?



  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the registration form, attaching a screenshot of a donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after donation).

If you are not personally interested in attending, you can also contribute by sponsoring a participation of a student, who will then be able to participate for free. If you choose to sponsor a student, all proceeds will also go directly to organisations working in Ukraine. You can either sponsor a particular student or you can leave it up to us so that we can allocate the sponsored place to students who have signed up for the waiting list.


How can I sponsor a student?


  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the sponsorship form, attaching the screenshot of the donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after the donation). You can indicate whether you want to sponsor a particular student or we can allocate this spot ourselves to the students from the waiting list. You can also indicate whether you prefer us to prioritize students from developing countries when assigning place(s) that you sponsored.


If you are a university student and cannot afford the registration fee, you can also sign up for the waiting list here. (Note that you are not guaranteed to participate by signing up for the waiting list).



You can also find more information about this workshop series,  a schedule of our future workshops as well as a list of our past workshops which you can get the recordings & materials here.


Looking forward to seeing you during the workshop!

Satellite mapping of surface waters in R

Join our workshop on Satellite mapping of surface waters in R, which is a part of our workshops for Ukraine series! 

Here’s some more info: 

Title: Satellite mapping of surface waters in R

Date: Thursday, January 23rd, 18:00 – 20:00 CET (Rome, Berlin, Paris timezone)

Speaker: Lawrence Vulis is a senior hazard scientist at CoreLogic working on modelling climate impacts to natural hazards and property risk. He regularly works with statistical methods, numerical modelling, and geographic information systems (GIS) to interrogate natural hazard, property/building, and climate data. His background is in hydrology and geomorphology, with prior experience in the satellite imagery based monitoring and classification of coastal landscapes and surface water systems such as beaches, river deltas, and lakes.

Description: Surface waters such as rivers, streams, lakes, and reservoirs are an important source of freshwater and economic activity. Mapping such waters and their seasonal changes is crucial for understanding water resource availability or geomorphic activity. This workshop focuses on the interrogation of optical and multispectral satellite imagery for surface water mapping using R. We will examine different types of satellite imagery and how to extract surface water features. It is recommended but not required to have some basics in understanding geographic information systems (GIS) topics, image processing, and possibly some background in hydrology, geography, or earth science.

Minimal registration fee: 20 euro (or 20 USD or 800 UAH)


Please note that the registration confirmation email will be sent 1 day before the workshop.

How can I register?



  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the registration form, attaching a screenshot of a donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after donation).

If you are not personally interested in attending, you can also contribute by sponsoring a participation of a student, who will then be able to participate for free. If you choose to sponsor a student, all proceeds will also go directly to organisations working in Ukraine. You can either sponsor a particular student or you can leave it up to us so that we can allocate the sponsored place to students who have signed up for the waiting list.


How can I sponsor a student?


  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the sponsorship form, attaching the screenshot of the donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after the donation). You can indicate whether you want to sponsor a particular student or we can allocate this spot ourselves to the students from the waiting list. You can also indicate whether you prefer us to prioritize students from developing countries when assigning place(s) that you sponsored.


If you are a university student and cannot afford the registration fee, you can also sign up for the waiting list here. (Note that you are not guaranteed to participate by signing up for the waiting list).



You can also find more information about this workshop series,  a schedule of our future workshops as well as a list of our past workshops which you can get the recordings & materials here.


Looking forward to seeing you during the workshop!

{SLmetrics}: Machine Learning performance evaluation on steroids

Introduction
{SLmetrics} is a low-level R package designed for efficient performance evaluation in supervised AI/ML tasks. By leveraging {Rcpp} and {RcppEigen}, it ensures fast execution and memory efficiency, making it ideal for handling large-scale datasets. Built on the robust S3 class system, {SLmetrics} integrates seamlessly with stable R packages, ensuring reliability and ease of use for developers and data scientists alike.

Why?
{SLmetrics} combines simplicity with exceptional performance, setting it apart from other packages. While it draws inspiration from {MLmetrics} in its intuitive design, it outpaces it in terms of speed, memory efficiency, and the variety of available performance measures. In terms of features, {SLmetrics} offers functionality comparable to {yardstick} and {scikit-learn}, while being significantly faster.

Current benchmarks show that {SLmetrics} is between 20-70 times faster than {yardstick}, {MLmetrics}, and {mlr3measures} (See Figure 1).

Alt Text
Figure 1. Median execution time of a 2×2 confusion matrix using {SLmetrics}, {MLmetrics}, {mlr3measures} and {yardstick}. The source code can be found in the {SLmetrics} repository on Github.
Whether you’re working with simple models or complex machine learning pipelines, {SLmetrics} provides a highly efficient, reliable solution for model evaluation.

Basic usage of {SLmetrics}
Load {SLmetrics},

library(SLmetrics)
We recode the Species variable and convert the problem to a binary classification problem,

# 1) recode Iris
# to binary classification
# problem
iris$species_num <- as.numeric(
  iris$Species == "virginica"
)

# 2) fit the logistic
# regression
model <- glm(
  formula = species_num ~ Sepal.Length + Sepal.Width,
  data    = iris,
  family  = binomial(
    link = "logit"
  )
)

# 3) generate predicted
# classes
response <- predict(model, type = "response")

# 3.1) generate actual
# classes
actual <- factor(
  x = iris$species_num,
  levels = c(1,0),
  labels = c("Virginica", "Others")
)
Construct the precision-recall curve,

# 4) generate precision-recall
# curve
roc <- prROC(
  actual   = actual,
  response = response
)
Visualize the precision-recall curve,

# 5) plot by species
plot(roc)

Summarise to get the area under the curve metric for each class,

# 5.1) summarise
summary(roc)
#> Reciever Operator Characteristics 
#> ================================================================================
#> AUC
#>  - Others: 0.473
#>  - Virginica: 0.764
The precision-recall function also supports custom thresholds,

# 6) provide custom
# threholds
roc <- prROC(
  actual     = actual,
  response   = response,
  thresholds = seq(0, 1, length.out = 4)
)
Visualize the precision-recall curve with custom thresholds,

# 5) plot by species
plot(roc)


Installing {SLmetrics}
The stable release {SLmetrics} can be installed as follows,
devtools::install_github(
  repo = 'https://github.com/serkor1/SLmetrics@*release',
  ref  = 'main'
)
The development version of {SLmetrics} can be installed as follows,
devtools::install_github(
  repo = 'https://github.com/serkor1/SLmetrics',
  ref  = 'development'
)

Get involved with {SLmetrics}
We’re building something exciting with {SLmetrics}, and your contributions can make a real impact!

While {SLmetrics} isn’t on CRAN yet—it’s a work in progress striving for excellence—this is your chance to shape its future. We’re thrilled to offer co-authorship for substantial contributions, recognizing your expertise and effort.

Even smaller improvements will earn you a spot on our contributor list, showcasing your valuable role in enhancing {SLmetrics}. Join us in creating a high-quality tool that benefits the entire R community. Check out the repository and start contributing today!

Crafting Custom and Reproducible PDF Reports with Quarto and Typst in R workshop

Join our workshop on Crafting Custom and Reproducible PDF Reports with Quarto and Typst in R, which is a part of our workshops for Ukraine series! 

Here’s some more info: 

Title: Crafting Custom and Reproducible PDF Reports with Quarto and Typst in R

Date: Thursday, December 19th, 18:00 – 20:00 CEST (Rome, Berlin, Paris timezone)

Speaker: Riva Quiroga is a linguist and educator based in Valparaíso, Chile. She is a Software Sustainability Insitute Fellow, part of the R-Ladies Global Leadership Team, and a Women Techmakers Ambassador.

Description: In this workshop, we will cover the process of creating a fully customized and reproducible PDF report using Quarto and Typst, a modern typesetting and markup language designed for creating high-quality PDFs that offers a more user-friendly alternative to LaTeX. After walking participants through the building blocks of document layout, the workshop will focus on Quarto’s ability to translate CSS properties into Typst properties, a feature that expands the possibilities for customizing a document’s appearance.

Minimal registration fee: 20 euro (or 20 USD or 800 UAH)



Please note that the registration confirmation email will be sent 1 day before the workshop.


How can I register?



  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the registration form, attaching a screenshot of a donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after donation).

If you are not personally interested in attending, you can also contribute by sponsoring a participation of a student, who will then be able to participate for free. If you choose to sponsor a student, all proceeds will also go directly to organisations working in Ukraine. You can either sponsor a particular student or you can leave it up to us so that we can allocate the sponsored place to students who have signed up for the waiting list.


How can I sponsor a student?


  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the sponsorship form, attaching the screenshot of the donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after the donation). You can indicate whether you want to sponsor a particular student or we can allocate this spot ourselves to the students from the waiting list. You can also indicate whether you prefer us to prioritize students from developing countries when assigning place(s) that you sponsored.


If you are a university student and cannot afford the registration fee, you can also sign up for the waiting list here. (Note that you are not guaranteed to participate by signing up for the waiting list).



You can also find more information about this workshop series,  a schedule of our future workshops as well as a list of our past workshops which you can get the recordings & materials here.


Looking forward to seeing you during the workshop!

DataCamp’s RADAR: Forward Edition

As 2024 draws to a close, which new trends should you be paying attention to?


Join DataCamp’s flagship conference RADAR: Forward Edition to explore developments in data and AI that will shape 2025 and beyond.

  • Date: November 13, 2024.
  • Location: Online
  • Cost: Free of charge

Experts from top tech organizations will cover topics such as generative AI, how leadership can leverage and transform their organizations with AI, career development in AI, and more.


Register now for free

Introduction to generalized linear models in R workshop

Join our workshop on Introduction to generalized linear models in R, which is a part of our workshops for Ukraine series! 

Here’s some more info: 

Title:  Introduction to generalized linear models in R

Date: Thursday, December 5th, 18:00 – 20:00 CET (Rome, Berlin, Paris timezone)

Speaker: Bodo Winter is Professor of Linguistics at the Dept. of Linguistics and Communication, University of Birmingham, and a UKRI Future Leaders Fellow for the project “Making numbers meaningful”. He uses data science-driven methods to study gesture, iconicity, and numerical communication in language. Bodo has authored Statistics for Linguists: An Introduction Using R and co-founded the Birmingham Statistics for Linguists Summer School.

Description: In this talk, you’ll learn about the fundamentals of generalized linear models, a powerful extension of the general linear model/multiple regression. We will discuss different distributions that can be used to model a diverse range of data-generating processes and how to interpret models that use different link functions. In the hands-on part of the workshop, we’ll work through a dataset for which we are going to use a mixed Poisson regression model, implemented with the package brms. Materials for the hands-on session will be distributed a couple days prior to the workshop.

Minimal registration fee: 20 euro (or 20 USD or 800 UAH)


Please note that the registration confirmation email will be sent 1 day before the workshop.


How can I register?



  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the registration form, attaching a screenshot of a donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after donation).

If you are not personally interested in attending, you can also contribute by sponsoring a participation of a student, who will then be able to participate for free. If you choose to sponsor a student, all proceeds will also go directly to organisations working in Ukraine. You can either sponsor a particular student or you can leave it up to us so that we can allocate the sponsored place to students who have signed up for the waiting list.


How can I sponsor a student?


  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the sponsorship form, attaching the screenshot of the donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after the donation). You can indicate whether you want to sponsor a particular student or we can allocate this spot ourselves to the students from the waiting list. You can also indicate whether you prefer us to prioritize students from developing countries when assigning place(s) that you sponsored.


If you are a university student and cannot afford the registration fee, you can also sign up for the waiting list here. (Note that you are not guaranteed to participate by signing up for the waiting list).



You can also find more information about this workshop series,  a schedule of our future workshops as well as a list of our past workshops which you can get the recordings & materials here.


Looking forward to seeing you during the workshop!






DataCamp’s Free Access Week, Nov 4–10

Free Access Week is a free week to explore all of DataCamp’s features for zero cost.


From November 4 (9 AM EST) – November 10 (11.59 PM EST), anyone can access DataCamp Premium features with a free DataCamp account.


Don’t have an account? Sign up here, and you’ll gain unlimited access until November 10.


What is DataCamp?


From data newbies to advanced practitioners, DataCamp is an online data and AI learning platform that helps over 14 million learners worldwide upskill in new technologies.


All 500+ courses, career tracks, and products are available in-browser, so you don’t need any additional software to access DataCamp.


Whether you’re looking to develop your programming skills, enhance your CV, build AI skills, or upskill your team—Free Access Week gives you unlimited learning for all levels and career ambitions.


Sign Up Here

Free Data and AI Courses with 365 Data Science—Unlimited Access until Nov 21

365 Data Science opens its doors this November!

From November 1 to November 21, 2024 (8 a.m. UTC), enjoy unrestricted access to its entire platform, including a selection of R programming courses and projects.

This offer includes expert-led courses, hands-on projects, and interactive exercises on various data science and AI topics. With flexible, 24/7 access, learners can study at their own pace—making it an excellent opportunity to advance in these fields.
365 Data Science offer free data and AI courses until November 21st.

The Initiative’s Fourth and Biggest Year

As 2024 unfolds, 365 Data Science’s free access initiative enters its fourth consecutive year, reinforcing its dedication to democratizing data science education. This program—which emerged as a response to global lockdowns—has become a pivotal annual event in the data science community.

CEO Ned Krastev emphasizes the initiative’s alignment with industry trends: “As data science continues to shape our world, we’re committed to equipping learners with cutting-edge skills and knowledge.”

The 2023 edition saw remarkable engagement, with over 75,000 participants collectively spending over 3.6 million minutes on the platform and earning over 17,000 certificates. Krastev adds, “The consistent engagement each year reflects a global hunger for knowledge and skills in data science. We’re proud to support learners on their journey to excellence in this field.”

Boost Your Career with Professional Certifications

365 Data Science empowers learners to translate their newly acquired knowledge into tangible career advancements by offering free, authenticated proof of expertise—narrowing the divide between educational achievement and industry recognition.

The program offers diverse certifications encompassing broad career trajectories and niche specializations. These credentials can bolster participants’ profiles in the ever-evolving data science landscape.

Course collections to teach you the skills to become a data scientist, data analyst, or business analyst.

And these certifications are just the beginning of what 365 Data Science offers for free.

R Programming: A Core Focus

365 Data Science recognizes R’s pivotal role in data analysis and visualization, as evidenced by their tailored course offerings:

  • Introduction to R Programming: This foundational course covers syntax, data structures, and basic operations, setting the stage for your R journey.
  • The Complete Data Visualization Course with Python, R, Tableau, and Excel: While comprehensive in scope, this course significantly emphasizes R’s powerful visualization capabilities.

You can also find other vital courses to enhance your use of R and other programming languages, including Statistics, Probability, Statistical Tests in Sales and Marketing, Data Preprocessing, and more.
Interactive exercises to boost your practical data and AI skills

Comprehensive Learning Experience

While R programming is one of their focuses, 365 Data Science offers a wide array of courses covering various aspects of data science and AI:

  • Foundational Skills: Courses in data literacy, strategy, math, and more to build a solid analytical base
  • Programming Languages: Comprehensive courses in Python and SQL to complement your R skills
  • Machine Learning: From basic concepts to advanced algorithms and deep learning
  • Artificial Intelligence: Cutting-edge AI topics, including natural language processing and generative AI
  • Business Applications: Courses that bridge the gap between technical skills and real-world business scenarios

These diverse offerings ensure a well-rounded education in data science and AI.

Beyond Courses: Hands-On Projects & Career Prep

Theory alone isn’t enough in data science. 365 Data Science offers practical projects that let you apply your R skills to real-world scenarios. A standout example includes the Housing Market Data Analysis in R Project, where you’ll use R to dissect and interpret housing market trends. But there is far more to explore on their website.

Mastering technical skills is just one part of pursuing a data science or AI career. You also need to articulate your knowledge and experience during interviews. 365 Data Science has just developed an innovative AI-powered interview preparation tool to help with just that. It offers real-time practice and customizability so you can walk into your next data science or AI interview well-prepared and self-assured.

The #365DataLearningChallenge

To add an element of excitement, 365 Data Science is running a learning challenge alongside the free access period. Participants can earn points by completing courses, projects, and exercises. The top performers can win lifetime platform access, career consultations, and portfolio feedback. So don’t miss this opportunity!

Take Advantage Before November 21

Mark your calendars! This free access window runs from November 1 to November 21, 2024.

Staying competitive is essential in today’s rapidly evolving data and artificial intelligence landscape. This three-week complimentary access to 365 Data Science presents a valuable investment opportunity for your professional growth.

Seize this moment to elevate your career and immerse yourself in data science and AI with 365 Data Science this November.

Begin your journey for free at 365 Data Science.

Free Interview Prep Tool for Data Professionals by 365 Data Science

In an exciting development for aspiring data scientists and analysts, 365 Data Science has launched InterviewAce, an AI-powered interview preparation tool designed to give candidates a competitive edge in the job market. This innovative platform offers a unique, personalized approach to interview prep, including the ability to practice technical questions such as R programming.

Explore InterviewAce for free here.

Tailored Preparation for Data Science Roles

InterviewAce stands out by offering customized interview simulations for a wide array of data-related positions, including:

  • Data Scientist
  • Data Analyst
  • Machine Learning Engineer
  • Business Analyst
  • BI Analyst
  • Data Architect
  • Risk Management Analyst
  • Tableau Developer
  • Database Administrator
  • Data Strategist

Unlike generic interview preparation tools, InterviewAce is specifically tailored for data professionals. It goes beyond general questions, offering a focused approach that addresses the unique challenges and requirements of data-related roles.

You can prepare for 10 roles, including data scientist, data analyst, Tableau developer, etc.

Realistic Interview Scenarios with Coding Capabilities

One of InterviewAce’s standout features is its ability to simulate real-world interview scenarios, including technical assessments. Users can demonstrate their coding skills directly within the tool, including R programming. This feature offers several benefits to candidates.

First, it allows users to familiarize themselves with common technical coding questions that are frequently asked in data science interviews. By practicing these questions, candidates can build confidence and improve their problem-solving skills.

Second, the platform provides immediate feedback on code quality and efficiency. This instant evaluation helps users identify areas for improvement and refine their coding practices to meet industry standards.

Last, InterviewAce enables candidates to enhance their ability to explain technical concepts clearly—demonstrating not only technical proficiency, but also the ability to communicate complex ideas effectively to both technical and non-technical audiences.

AI-Driven Personalization

InterviewAce leverages OpenAI’s GPT models to deliver a personalized preparation experience. The tool adapts to each user’s responses, offering customization for both HR and technical interview simulations. This tailored approach includes several key features.

The platform adjusts question difficulty based on the user’s proficiency, ensuring candidates are consistently challenged at an appropriate level.

The AI also analyzes and interprets the user’s previous experience, selecting targeted questions based on this knowledge.

Finally, InterviewAce simulates the interview style of specific target companies, helping candidates prepare for the unique approaches and expectations of their desired employers.

Comprehensive Feedback and Continuous Improvement

InterviewAce provides comprehensive feedback after each practice session, including overall scores with personalized comments. Users also receive individual critiques for each answer, providing detailed insights.

This feedback highlights areas for improvement, breaking down performance across various skill areas and offering tailored suggestions for specific questions or topics.

Furthermore, InterviewAce recommends additional study resources to help users expand their knowledge and address any gaps in understanding, ensuring continuous growth and preparation.
Feedback report for your interview answers

Key Features of InterviewAce

  • Daily practice with two interview sessions
  • Speech-to-text functionality for natural responses
  • Comprehensive reports and scoring to track progress over time
  • Company-specific interview customization to prepare for target employers
  • In-platform coding assessments, including R programming
  • Both HR and technical interview simulations to cover all aspects of the interview process

Free Access

InterviewAce is now available to all 365 Data Science users, requiring only a free account to access. This accessibility ensures that aspiring data professionals from all backgrounds can benefit from this powerful tool, regardless of their current career stage or financial situation. By democratizing access to high-quality interview preparation, 365 Data Science is helping to level the playing field in the competitive data science job market.

InterviewAce marks a significant advancement in interview preparation for data professionals. By combining AI technology with a focus on both technical and soft skills, 365 Data Science equips candidates with essential tools for success in the data science job market.

With its practical approach and personalized guidance, InterviewAce is a valuable resource for those looking to progress in this dynamic field.

Explore InterviewAce today to enhance your data science interview performance.

Visualizing Variance with Sankey diagrams/Riverplots using R: An Illustration with Longitudinal Multi-level Modeling workshop

Join our workshop on Visualizing Variance with Sankey diagrams/Riverplots using R: An Illustration with Longitudinal Multi-level Modeling, which is a part of our workshops for Ukraine series! 


Here’s some more info: 

Title: Visualizing Variance with Sankey diagrams/Riverplots using R: An Illustration with Longitudinal Multi-level Modeling

Date: Thursday, November 26th, 18:00 – 20:00 CET (Rome, Berlin, Paris timezone)

Speaker: Daniel P. Moriarity, PhD is a clinical psychologist with a particular interest in immunopsychiatry, psychiatric phenotyping, and methods reform in biological psychiatry. He currently works as a Postdoctoral Fellow in the UCLA Laboratory for Stress Assessment and Research with Dr. George Slavich. Starting January 2025, he will join the University of Pennsylvania’s Psychology Department as an Assistant Professor of Clinical Psychology.

Description: This workshop will illustrate how to create Sankey diagrams/Riverplots with a focus on longitudinal multilevel modeling to separately visualize between-person and within-person variance. However, the technique can be applied to many other visualizations of different sources of variance (e.g., different variables, random vs. fixed effects). Data + code templates will be provided to follow along with.

Minimal registration fee: 20 euro (or 20 USD or 800 UAH)

Please note that the registration confirmation email will be sent 1 day before the workshop.

How can I register?



  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the registration form, attaching a screenshot of a donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after donation).

If you are not personally interested in attending, you can also contribute by sponsoring a participation of a student, who will then be able to participate for free. If you choose to sponsor a student, all proceeds will also go directly to organisations working in Ukraine. You can either sponsor a particular student or you can leave it up to us so that we can allocate the sponsored place to students who have signed up for the waiting list.


How can I sponsor a student?


  • Save your donation receipt (after the donation is processed, there is an option to enter your email address on the website to which the donation receipt is sent)

  • Fill in the sponsorship form, attaching the screenshot of the donation receipt (please attach the screenshot of the donation receipt that was emailed to you rather than the page you see after the donation). You can indicate whether you want to sponsor a particular student or we can allocate this spot ourselves to the students from the waiting list. You can also indicate whether you prefer us to prioritize students from developing countries when assigning place(s) that you sponsored.

If you are a university student and cannot afford the registration fee, you can also sign up for the waiting list here. (Note that you are not guaranteed to participate by signing up for the waiting list).



You can also find more information about this workshop series,  a schedule of our future workshops as well as a list of our past workshops which you can get the recordings & materials here.


Looking forward to seeing you during the workshop!