update events
ci/woodpecker/push/woodpecker Pipeline was successful Podrobnosti

This commit is contained in:
tree 2023-05-20 03:28:16 +02:00
rodič eee9c68ffe
revize 4cd04f0530
20 změnil soubory, kde provedl 38182 přidání a 28 odebrání

1
.obsidian/app.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1 @@
{}

3
.obsidian/appearance.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1,3 @@
{
"accentColor": ""
}

1
.obsidian/community-plugins.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1 @@
[]

29
.obsidian/core-plugins-migration.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1,29 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"starred": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false
}

20
.obsidian/core-plugins.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1,20 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"page-preview",
"daily-notes",
"templates",
"note-composer",
"command-palette",
"editor-status",
"starred",
"outline",
"word-count",
"file-recovery"
]

1
.obsidian/hotkeys.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1 @@
{}

30
.obsidian/plugins/obsidian-git/data.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1,30 @@
{
"commitMessage": "vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 0,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": false,
"disablePush": false,
"pullBeforePush": true,
"disablePopups": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "merge",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false,
"treeStructure": false,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": false,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"autoCommitMessage": "vault backup: {{date}}"
}

37397
.obsidian/plugins/obsidian-git/main.js vendorováno Normal file

Rozdílový obsah nebyl zobrazen, protože některé řádky jsou příliš dlouhá

Zobrazit soubor

@ -0,0 +1,9 @@
{
"id": "obsidian-git",
"name": "Obsidian Git",
"description": "Backup your vault with Git.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js",
"version": "2.19.1"
}

487
.obsidian/plugins/obsidian-git/styles.css vendorováno Normal file
Zobrazit soubor

@ -0,0 +1,487 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type='git-view'] .view-content {
padding: 0;
}
.workspace-leaf-content[data-type='git-history-view'] .view-content {
padding: 0;
}
.loading>svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
.git-tools {
display: flex;
margin-left: auto;
}
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list>li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list>li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}

154
.obsidian/workspace.json vendorováno Normal file
Zobrazit soubor

@ -0,0 +1,154 @@
{
"main": {
"id": "0eccaf44d534238a",
"type": "split",
"children": [
{
"id": "db0e280a448c1489",
"type": "tabs",
"children": [
{
"id": "d37d221223c1052a",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "README.md",
"mode": "source",
"source": false
}
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "1082705a1babdd36",
"type": "split",
"children": [
{
"id": "f0a130f4edc142d8",
"type": "tabs",
"children": [
{
"id": "416d59e29f9aa1d7",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "6c1974d4da4d0d81",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "059f90e237234204",
"type": "leaf",
"state": {
"type": "starred",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "0a2174dbdc5806a7",
"type": "split",
"children": [
{
"id": "cbd2e3e92e25969b",
"type": "tabs",
"children": [
{
"id": "649e94445d82188d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "README.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "18c99c10a7fbde66",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "README.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "6b538365511ce6fe",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "1fc585a9905d62a7",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "README.md"
}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Otevřít rychlé přepínání": false,
"graph:Otevřít graf": false,
"canvas:Create new canvas": false,
"daily-notes:Otevřít dnešní poznámku": false,
"templates:Vložit šablonu": false,
"command-palette:Otevřít paletu příkazů": false
}
},
"active": "d37d221223c1052a",
"lastOpenFiles": [
"udalosti/beerfi.md",
"node_modules/@colors/colors/README.md"
]
}

Zobrazit soubor

@ -18,8 +18,8 @@ const sidebars = {
collapsible: false,
items: [
'utxo',
'ethbrno-prague',
'ethbrno-proxy',
'web3privacy-summit',
'l2loft',
],
},
{
@ -34,7 +34,7 @@ const sidebars = {
},
{
type: 'category',
label: 'Online události',
label: 'Online události (neaktivní)',
collapsed: false,
collapsible: false,
items: [

binární
udalosti/assets/utxo23-banner.jpg Normal file

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 289 KiB

Zobrazit soubor

@ -1,5 +0,0 @@
# ETHBrno@Prague
- Termín konání: **červen** (v rámci "Prague Blockchain Week")
Mezinárodní kryptoměnová konference pro odbornou veřejnost, zaměřená na soukromí a bezpečnost, která se koná v červnu v Praze. Konference se koná jako doprovodná akce podzimního [ETHBrno hackathonu](/udalosti/ethbrno).

Zobrazit soubor

@ -1,8 +0,0 @@
# ETHBrno Proxy
- Termín konání: **první polovina listopadu** (souběžně s [ETHBrno hackathonem](/udalosti/ethbrno))
- Web: [proxy.ethbrno.cz](https://proxy.ethbrno.cz)
Kryptoměnová konference pro široké publikum, která se koná souběžně s mezinárodním hackathonem [ETHBrno](/udalosti/ethbrno).
Nabízí průřez aktuálními novinkami s důrazem na bezpečnost a soukromí v dnešním digitálním světě. Své si v celodenním programu od zástupců České a Slovenské kryptokomunity najde jak začátečník, tak i pokročilejší uživatel.

Zobrazit soubor

@ -4,17 +4,22 @@
- Web: [ethbrno.cz](https://ethbrno.cz)
- Twitter: [@ETHBrno](https://twitter.com/ETHBrno)
ETHBrno je každoroční *mezinárodní, nezávislý a komunitní hackathon* (dříve konference) pro příznivce decentralizovaných financí, chytrých kontraktů a Web3 odehrávající se v Brně v České republice. Motivem hackathonu je [lunarpunk](https://www.youtube.com/watch?v=QA3YZVDUN5s) a je zaměřený na téma **soukromí a bezpečnost**.
ETHBrno je každoroční *mezinárodní, nezávislý a komunitní hackathon* (dříve konference) pro příznivce decentralizovaných financí, chytrých kontraktů a Web3 odehrávající se v Brně v České republice.
Motivem hackathonu je [lunarpunk](https://www.youtube.com/watch?v=QA3YZVDUN5s) a je zaměřený na téma **soukromí a bezpečnost**.
ETHBrno je organizové Gwei.cz komunitou a legálně zaštítěné spolkem [UTXO Foundation](https://utxo.foundation/).
## Přehled ročníků
| Pořadí | Název | Datum | Místo | Téma |
| Pořadí | Název | Datum | Místo | Typ |
| --- | --- | --- | --- | --- |
| #3 | **ETHBrno×3** | listopad 2023 | TBA | Soukromí a bezpečnost (lunarpunk) 🇬🇧 |
| #2 | [**ETHBrno²**](#ethbrno-2022) | 11-13.11.2022 | [Impact Hub Brno](https://www.hubbrno.cz/) | Soukromí a bezpečnost (lunarpunk) 🇬🇧 |
| #1 | [**ETHBrno**](#ethbrno-2021) | 9.10.2021 | [KC Skála](https://www.novy-liskovec.cz/komunitni-centrum-skala/ds-1389) | Obecná Ethereum konference 🇨🇿 |
| #3 | **ETHBrno×3** (plánováno) | 3-5.11.2023 | [Impact Hub Brno](https://www.hubbrno.cz/) | 🇬🇧 hackathon |
| #2 | [**ETHBrno²**](#ethbrno-2022) | 11-13.11.2022 | [Impact Hub Brno](https://www.hubbrno.cz/) | 🇬🇧 hackathon |
| #1 | [**ETHBrno**](#ethbrno-2021) | 9.10.2021 | [KC Skála](https://www.novy-liskovec.cz/komunitni-centrum-skala/ds-1389) | 🇨🇿 konference |
### ETHBrno×3 2023
Plánováno na 3-5. listopadu 2023.
### ETHBrno² 2022

Zobrazit soubor

@ -25,8 +25,8 @@ Seznam všech událostí naleznete na našem fóru v [sekci Kalendář](https://
### Konference
- [UTXO Praha](/udalosti/utxo) (*červen*) 🇨🇿 - lokální komunitní konference pro širokou veřejnost
- [ETHBrno@Prague](/udalosti/ethbrno-prague) (*červen*) 🇬🇧 - odborná lunarpunk konference zaměřená na soukromí a bezpečnost
- [ETHBrno Proxy](/udalosti/ethbrno-proxy) (*listopad*) 🇨🇿 - konference zaměřená na soukromí a bezpečnost pro široké publikum
- [Web3Privacy Summit](/udalosti/web3privacy-summit) (*červen*, *listopad*) 🇬🇧 - odborná lunarpunk konference zaměřená na soukromí a bezpečnost
- [L2Loft](/udalosti/l2loft) (*červen*) 🇨🇿 - pop-up akce zaměřená na Layer2 a související témata
### Meetupy
- [BeerFi Prague](/udalosti/beerfi) (*poslední úterý v měsíci)* 🇬🇧 - setkání vývojářů smart-kontraktů

10
udalosti/l2loft.md Normal file
Zobrazit soubor

@ -0,0 +1,10 @@
# L2Loft
- Termín konání: ***různé***
- Web: [l2loft.com](https://l2loft.com)
Pop-up akce zaměřená na Layer2 a související témata. Nápad vznikl v souvislosti s [Prague Blockchain Week 2023](https://prgblockweek.com).
| Název | Datum | Místo |
| --- | --- | --- |
| L2Loft Prague | 8.6.2023 | Praha 🇨🇿 |

Zobrazit soubor

@ -6,20 +6,26 @@
UTXO (/juː-tiː-ɛks-əʊ/) je otevřená komunitní konference zaměřená na kryptoměny a blockchain, která se koná v červnu v Praze. Je určená především pro lokální česko-slovenské publikum.
Konference je organizována spolkem [UTXO Foundation](https://utxo.foundation/), a Gwei.cz se podílí především na obsahu.
Konference je organizována spolkem [UTXO Foundation](https://utxo.foundation/).
## Přehled ročníků
| Pořadí | Název | Datum | Místo |
| --- | --- | --- | --- |
| #3 | **UTXO.23** | červen 2023 | TBA |
| #2 | [**UTXO.23**](#utxo23-2023) | 3-4.6. 2023 | [Gabriel Loci](https://www.gabrielloci.com/) |
| #1 | [**UTXO.22**](#utxo22-2022) | 4-5.6.2022 | [Gabriel Loci](https://www.gabrielloci.com/) |
### UTXO.23 (2023)
```mdx-code-block
import utxo23 from './assets/utxo23-banner.jpg';
```
<a href="https://utxo.cz/"><img src={utxo23} style={{maxWidth: '70%'}} /></a>
### UTXO.22 (2022)
```mdx-code-block
import utxo22 from './assets/utxo22-banner.jpg';
```
<a href="https://docs.utxo.cz/"><img src={utxo22} style={{maxWidth: '70%'}} /></a>
Více informací o tomto ročníku můžete najít v [dokumentaci UTXO](https://docs.utxo.cz/).
<a href="https://22.utxo.cz/"><img src={utxo22} style={{maxWidth: '70%'}} /></a>

Zobrazit soubor

@ -0,0 +1,14 @@
# Web3Privacy Summit
- Termín konání: **červen a listopad**
- Web: [github.com/web3privacy/events](https://github.com/web3privacy/events)
Ve spolupráci s iniciativou [Web3Privacy Now](https://web3privacy.info/) pořádáme konference zaměřené na soukromí ve Web3 průmyslu. Celá iniciativa vznikla v souvislosti s [ETHBrno](/udalosti/ethbrno) hackathonem, který je také zaměřený na soukromí.
## Seznam událostí
| Název | Datum | Místo |
| --- | --- | --- |
| Web3Privacy Summit #2 (plánovaný) | 2.11.2023 | Brno 🇨🇿 |
| [Web3Privacy Summit #1](https://prague.web3privacy.info) | 5.6.2023 | Praha 🇨🇿 |