- Installiere Miniconda
- Öffne die
Eingabeaufforderung
und teste mitconda -V
die Installation. - Erstelle eine neue Python Testumgebung:
conda create --name python-lernen
- Aktiviere die Umgebung:
conda activate python-lernen
- Installiere JupyterLab:
conda install -c conda-forge jupyterlab
- Starte JupyterLab:
jupyter lab
- Es müsste sich automatisch ein Browserfenster öffnen. (manuell)
- Öffne Links einen beliebigen Ordner und Erstelle mit
->
ein Jupyter Notebook.
This file contains 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
# serverpod_cli would use this to tell the developer what | |
# a recommended steps subset does. | |
comment: Migrate from current to target | |
# A list of steps, that have to be performed, in order to | |
# migrate from current to target. | |
# If a step fails, the transaction is canceled and the migration failed. | |
# Tables might be prefixed with the schema. If not, `public` is assumed. | |
steps: | |
- renameTable: |
This file contains 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
{ | |
"name": "serverpod_test", | |
"tables": [ | |
{ | |
"name": "serverpod_auth_key", | |
"schema": "public", | |
"tableSpace": null, | |
"columns": [ | |
{ | |
"name": "id", |
This file contains 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
# Alternatively, CONSTRAINTs could be represented directly. | |
# This however might require polymorphism. | |
# yaml-language-server: $schema=https://go.fischerscode.com/serverpod-schema | |
### The definition of a (desired) table in the database. | |
class: TableDefinition | |
fields: | |
### The table name | |
tableName: String |
This file contains 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": "https://json-schema.org/draft/2020-12/schema", | |
"title": "Protocol file definition", | |
"oneOf": [ | |
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"title": "protocol file with fields", | |
"description": "class or exception", | |
"oneOf": [ | |
{ |
This file contains 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
<mxfile host="app.diagrams.net" modified="2022-11-08T00:20:26.167Z" agent="5.0 (Macintosh)" etag="mD3JkrJ4J5qzCa1Aji5g" version="20.5.3" type="device"><diagram id="50Z8j9QIt7mUmtRq36Iw" name="Seite-1">7Zjdb9owEMD/mjy2ygefjyXt1kl06sbD9la5yZF4dWzmmAL963fGNiGklLYUMW1ISMTnO+fufmfO2IviYv5Zkkl+I1JgXuincy+69MIwaIUd/NKShZF0+20jyCRNrVIlGNEnsELfSqc0hbKmqIRgik7qwkRwDomqyYiUYlZXGwtWf+uEZNAQjBLCmtIfNFW5kfbCbiW/Bprl7s1Bp29mCuKUbSRlTlIxWxNFV14USyGUeSrmMTCdPJcXY/dpy+zKMQlcvcbgup0kdz9vaDES8fDr70X326+7s6BllnkkbGojHtJSWY/VwqWhnNGCEY6jwVhwNbIzPo6TnLJ0SBZiqt0oFUke3GiQC0mfUJ8wnApQgNNSWcpYGusaI21p15RQos6tiy3YEN2QeU1xSErlvBGMkUlJ75f+acOCyIzygVBKFFaJMJpxfE5wLZAuJuMVZiQa2KSAVDDfmu5gBRGrH0QBSi5QxRp0LXZb91HHjmdVFQVOltcryFavrdxstXQFFx8s37ewbjdYf1FQoCRo8Ma41RKXFA8QCyYwS5dcmAKgjG2IyglJKM+GMNZRtCrJdxuYFgnM55gtt0BO0xS45icUUeR+VUwTQblaBt4e4AfzE/vnba+NPsU4DqoxfrS6VLHg6CahSyyAlTADXQ01puFrmb6wSZqkLVr3E7eLbOQfCmxnG9jwBHYPsO2jg+1uAxudwO4Btnd0sL1T2z1M220FG323e/y+2z/13fft4t7f3Xfdyf7Udz8W7NH7rgvk1Hc/FuzR+24YNsA2gAJPL/TFQcUsV4VrpFJMeQqpZWBsIW1cIWx0K1x |
This file contains 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
// ignore_for_file: no_leading_underscores_for_library_prefixes | |
import 'package:serverpod/serverpod.dart' as _i1; | |
import 'package:serverpod/protocol.dart' as _i2; | |
import 'package:serverpod_auth_server/module.dart' as _i3; | |
import 'package:serverpod_serialization/serverpod_serialization.dart' as _i4; | |
class Example extends _i1.TableRow { | |
Example({ | |
this.id, | |
required this.name, |
This file contains 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
test test test |
This file contains 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
#!/bin/bash | |
LC_ALL=C tr -dc 'A-Za-z0-9!#$%&()*+,-./:;<=>?@[\]^_`{|}~' </dev/urandom | head -c $1 ; echo |
NewerOlder