Zitat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| class MainClass { | |
| public static Letter GetAlphabet(Letter code, Letter letter) { | |
| return (Letter)(((int)code + (int)letter) % 26); | |
| } | |
| public static void Main (string[] args) { | |
| var code = "INFO" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema", | |
| "title": "Config schema", | |
| "type": "object", | |
| "properties": { | |
| "calendars": { | |
| "type": "array", | |
| "default": [], | |
| "uniqueItems": true, | |
| "items": { |
- John Rawls: Grundsätze der Gerechtigkeit
- Zwei Grundsätze
- Erster Grundsatz
- Alle sind Gleich
- Alle haben das gleiche Recht auf das fairste und beste System.
- Zweiter Grundsatz
Wenn personen anders behandelt werden dann nur aus diesen Gründen:- Differenzenprinzip:
Der welcher die schlechtesten Startvoraussetzungen muss durch das System am meisten bevorzugt werden.
- Differenzenprinzip:
- Erster Grundsatz
- Zwei Grundsätze
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict" | |
| const hw = require('./util/hardware'); | |
| const express = require('express'); // call express | |
| const bodyParser = require('body-parser'); | |
| const app = express(); // define our app using express | |
| app.use(bodyParser.urlencoded({ extended: false })); | |
| app.use(bodyParser.json()); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html><html><head><meta charset='utf-8'> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.4.1/github-markdown.min.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.11.0/styles/default.min.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.css"> | |
| <link rel="stylesheet" href="https://gitcdn.xyz/repo/goessner/mdmath/master/css/texmath.css"> | |
| <link rel="stylesheet" href="https://gitcdn.xyz/repo/goessner/mdmath/master/css/vscode-texmath.css"> | |
| </head><body class="markdown-body"> | |
| <h1 data-line="0" class="code-line" id="gravitation">Gravitation</h1> | |
| <h2 data-line="2" class="code-line" id="keplersche-gesetze">Kepler'sche Gesetze</h2> |
OlderNewer