- change default branch name (if not
main
) on line 5 - change directory to take files from (if not
dist
) on line 20 - save the config file as
.github/workflows/gh-pages.yml
- commit the config file into the default branch
- turn on Pages in repo settings (if not already on)
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
<br> | |
<b>Kde: přes internet z pohodlí domova, na <a href="https://discord.gg/frmr3fM">tomto Discordu</a></b><br> | |
<b>Startovné:</b> zdarma ❤️<br> | |
<b>Ceny <small>(při minimálně osmi hráčích, méně hráčů = menší odměny)</small>:</b> | |
<ul> | |
<li>1. místo 500 zlaťáků a nominace na Mistrovství ve Scratch Wars</li> | |
<li>2. místo 400 zlaťáků a nominace na Mistrovství ve Scratch Wars</li> | |
<li>3. místo 300 zlaťáků</li> | |
<li>4. místo 200 zlaťáků</li> | |
<li>5. místo 100 zlaťáků</li> |
I hereby claim:
- I am katemihalikova on github.
- I am katemihalikova (https://keybase.io/katemihalikova) on keybase.
- I have a public key whose fingerprint is C276 21FE 2573 0D61 A98F 8820 1514 D3C0 2EC1 52B0
To claim this, I am signing this object:
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
{ | |
"dependencies": { | |
"@types/node": { | |
"version": "6.0.73", | |
"from": "@types/node@>=6.0.46 <7.0.0", | |
"resolved": "https://registry.npmjs.org/@types/node/-/node-6.0.73.tgz", | |
"dev": true | |
}, | |
"@types/q": { | |
"version": "0.0.32", |
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
snippet = ` | |
#include <stdio.h> | |
int main(void) { | |
printf("hello world"); | |
} | |
`; |
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
function zamichat(selektor) { | |
let obrazky = []; | |
document.querySelectorAll(selektor).forEach(elem => obrazky.push(elem.src)); | |
zamichatPole(obrazky); | |
document.querySelectorAll(selektor).forEach((elem, i) => elem.src = obrazky[i]); | |
} | |
function zamichatPole(pole) { | |
for (let odkud = pole.length - 1; odkud >= 0; odkud--) { | |
let kam = Math.floor(Math.random() * (odkud + 1)); |