Skip to content

markjjacob/df-review

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LiaScript

Digital Fellows - Summary 2021

This is a brief overview of the work carried out by the team of Professor Sebastian Zug and Dr Mark Jacob in the framework of a tandem Digital Fellowship awarded by the SMWK (Saxon Ministry of Science, Culture and Tourism).

Parameter Value
Start 01.07.2020
End 31.12.2021
Duration 18 months
Amount €25,000

For an overview of all Digital Fellows in Saxony from 2019 to 2022, please click here.

Learning materials and tools

Collection of online ...

  1. learning materials (programming content)
  2. instructions for presenting scientific content (good and bad examples)
  3. tools

... to prepare student presentations (4.)

We focused the development for this project on LiaScript.

Learning materials

Embedded Coding Environment

void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);
  delay(1000);
  digitalWrite(LED_BUILTIN, LOW);
  delay(1000);
}

@AVR8js.sketch

Programming Environment

using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;

int n;
Console.Write("Number of primes: ");
n = int.Parse(Console.ReadLine());

ArrayList primes = new ArrayList();
primes.Add(2);

for(int i = 3; primes.Count < n; i++) {
	bool isPrime = true;
	foreach(int num in primes) isPrime &= i % num != 0;
	if(isPrime) primes.Add(i);
}

Console.Write("Primes: ");
foreach(int prime in primes) Console.Write($" {prime}");
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net5.0</TargetFramework>
  </PropertyGroup>
</Project>

@LIA.eval(["Program.cs", "project.csproj"], dotnet build -nologo, dotnet run -nologo)

Complete course materials for secific topics

??DigitalImageFilters

Instructions for presenting scientific

1. Introducing yourself

<iframe src="https://video.tu-freiberg.de/media/embed?key=4349372d9d69e2415729b1a3a2fab941&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

2. Introducing your topic

<iframe src="https://video.tu-freiberg.de/media/embed?key=5978d19af08232dfa88c03cb7ad2a14f&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

3. Synonyms

<iframe src="https://video.tu-freiberg.de/media/embed?key=c2230053b26249e624c2476f8c7a409a&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

4. Useful phrases

<iframe src="https://video.tu-freiberg.de/media/embed?key=3bebb19a2d1f9c8fa2a6c4d338134561&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

5. Nerves

<iframe src="https://video.tu-freiberg.de/media/embed?key=89bf38bd9dc6eb725746648b05e67c75&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

6.1 Non-verbal communication

<iframe src="https://video.tu-freiberg.de/media/embed?key=d5b08cd5a5b7ffcd076acfcf29fa1b30&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

6.2 Non-verbal communication

<iframe src="https://video.tu-freiberg.de/media/embed?key=892ed954c1bb2fc53f5a6efaf97f0e4f&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

7. Conclusion

<iframe src="https://video.tu-freiberg.de/media/embed?key=04a93eca656810677743ff2488fda44b&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

8. Questions

<iframe src="https://video.tu-freiberg.de/media/embed?key=e87b984068e6be6ac2d41d9941e133dd&width=560&height=315&autoplay=false&autolightsoff=false&loop=false&chapters=false&related=false&responsive=false&t=0" data-src="" class="iframeLoaded" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allowtransparency="true" scrolling="no" aria-label="media embed code" style=""></iframe>

Tools for digital learning

 {{0-1}}

Image describer

??ImageDescriber

StudentDescription


   {{1-2}}

ONYX markdown converter

What is the correct spelling of H(D)D?

[(X)] hard (**disk**) drive
[( )] hard (**desk**) drive
[(x)] hard (**disc**) drive

What is the correct spelling of H(D)D?

[(X)] hard (disk) drive [( )] hard (desk) drive [(x)] hard (disc) drive

Take a closer view to LiaScript quizzes in the Documentation

??OnyxConverter


   {{2-3}}

Video analysis tool

alt-text


Presentations

??ExamplePresentation

Student feedback

img1

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •