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
| --- | |
| metadata: | |
| title: Pětadvactíka | |
| short title: Pětadvactíka | |
| documentation: "Zatím není" | |
| description: Pomoc živnostníkům Pětadvactíka v souvislosti s COVID-19 | |
| authors: | |
| - name: Ondřej Profant | |
| organization: Pirátská strana | |
| - name: Jan Suchánek |
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
| --- | |
| metadata: | |
| title: Pětadvactíka | |
| short title: Pětadvactíka | |
| documentation: "None" | |
| description: Pomoc živnostníkům Pětadvactíka v souvislosti s COVID-19 | |
| authors: | |
| - name: Ondřej Profant | |
| organization: Pirátská strana | |
| - name: Jan Suchánek |
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 lang="en"> | |
| <head> | |
| <!-- Required meta tags --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <!-- Bootstrap CSS --> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> |
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
| Já: Zajímá mě pythagorova věta. | |
| ChatGPT 3.5: Samozřejmě, pythagorova věta je velmi zajímavá a užitečná v matematice i v praxi. | |
| Pythagorova věta říká, že v pravoúhlém trojúhelníku je součet druhých mocnin délek odvěsen roven druhé mocnině délky přepony. Tuto větu lze zapsat následovně: | |
| a^2 + b^2 = c^2, | |
| kde a a b jsou délky odvěsen a c je délka přepony. Tuto větu objevil starověký řecký matematik Pythagoras, a od té doby se stala jednou z nejdůležitějších a nejznámějších vět v matematice. | |
| Pythagorova věta má mnoho využití v geometrii a fyzice. Například se používá k výpočtu vzdáleností, délek stran a diagonál různých geometrických tvarů, jako jsou čtverce, obdélníky a trojúhelníky. Též se používá při výpočtech v elektrotechnice, strojírenství a architektuře. |
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
| from typing import List, Iterator | |
| from contextlib import asynccontextmanager | |
| from pydantic import BaseModel | |
| from sqlmodel import SQLModel, Session, Field, Relationship, create_engine, select | |
| from fastapi import FastAPI, Depends | |
| class Kind(SQLModel, table=True): | |
| id: int | None = Field(default=None, primary_key=True) | |
| name: str |
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
| #!/bin/bash | |
| if [ -z "$1" ] || [ -z "$2" ]; then | |
| echo "Usage: $0 <fw> <name>" | |
| echo "FW can be django, wagtail, fastapi, litestar" | |
| exit 1 | |
| fi | |
| fw=$1 | |
| name=$2 |
OlderNewer