initial commit
This commit is contained in:
commit
f43d4736a8
11
.editorconfig
Normal file
11
.editorconfig
Normal file
|
@ -0,0 +1,11 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
charset = utf-8
|
||||
|
||||
[*.nix]
|
||||
indent_style = tab
|
||||
indent_size = 2
|
5
.envrc
Normal file
5
.envrc
Normal file
|
@ -0,0 +1,5 @@
|
|||
# https://github.com/direnv/direnv/wiki
|
||||
|
||||
use flake
|
||||
|
||||
eval "$shellHook"
|
16
.gitignore
Normal file
16
.gitignore
Normal file
|
@ -0,0 +1,16 @@
|
|||
# General
|
||||
*.dll
|
||||
*.log
|
||||
*.so
|
||||
*.swp
|
||||
export
|
||||
img
|
||||
tmp
|
||||
|
||||
# Nix
|
||||
.direnv
|
||||
.pre-commit-config.yaml
|
||||
result
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
16
.reuse/dep5
Normal file
16
.reuse/dep5
Normal file
|
@ -0,0 +1,16 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: planktoscope-build-workshop-slides
|
||||
Upstream-Contact: Curious Community Labs <planktoscope@curious.bio>
|
||||
Source: https://code.curious.bio/swendel/planktoscope-build-workshop-slides
|
||||
|
||||
Files:
|
||||
.*
|
||||
flake.*
|
||||
Copyright: (C) 2023 Sebastian Wendel
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
Files:
|
||||
images/*
|
||||
*.md
|
||||
Copyright: (C) 2023 Sebastian Wendel
|
||||
License: CC-BY-SA-4.0
|
14
README.md
Normal file
14
README.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# PlanktoScope Build Workshop Slides
|
||||
|
||||
Dieses Git-Repository enthält Präsentationsfolien für den PlanktoScope Build Workshop.
|
||||
|
||||
Die Folien sind in Markdown geschrieben und können mit dem VS Code Plugin Marp als Folien formatiert und in PDF umgewandelt werden.
|
||||
|
||||
## Ressources
|
||||
|
||||
- [VSCodium](https://vscodium.com/)
|
||||
- [Marp for VS Code](https://github.com/marp-team/marp-vscode)
|
||||
|
||||
## License
|
||||
|
||||
Das Git-Repository verwendet zur Lizenzierung den Reuse-Standard der Free Software Foundation. Der Reuse-Standard ist ein Lizenzierungs- und Urheberrechtssystem, das auf der Annahme basiert, dass Open-Source-Software klar und einfach zu lizenzieren sein sollte.
|
37
ccl_planktoscope_build_workshop.md
Normal file
37
ccl_planktoscope_build_workshop.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
marp: true
|
||||
title: PlanktoScope
|
||||
description: PlanktoScope Build Workshop
|
||||
theme: uncover
|
||||
paginate: true
|
||||
_paginate: false
|
||||
---
|
||||
|
||||
![bg cover left:60%](https://planktoscope.curious.bio/images/project_description/planktoscope_hero.png)
|
||||
|
||||
## Interfacer Project Build Workshops
|
||||
|
||||
> Buildung für alle
|
||||
|
||||
---
|
||||
|
||||
## Formalien
|
||||
|
||||
- Teilnehmerliste
|
||||
- Einwilligungserklärung
|
||||
|
||||
---
|
||||
|
||||
## Agenda
|
||||
|
||||
---
|
||||
|
||||
## Chat
|
||||
|
||||
---
|
||||
|
||||
## Chat
|
||||
|
||||
---
|
||||
|
||||
## Feedback
|
26
flake.nix
Normal file
26
flake.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
description = "PlanktoScope Build Workshop Slides";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
...
|
||||
} @ inputs:
|
||||
flake-utils.lib.eachSystem ["aarch64-linux" "x86_64-linux"] (localSystem: {
|
||||
devShells.default = import ./nix/shell.nix inputs localSystem;
|
||||
devShell.x86_64-linux = let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs = [
|
||||
pkgs.gcc.cc.lib
|
||||
];
|
||||
};
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue