Shortcut | Description |
---|---|
⌘⇧. | Toggle hidden files |
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
showUser(userId){ | |
if (this.state.loggedIn) { | |
this.setState({ | |
userToShow: userId || databaseUtils.getUserInfo().uid | |
}) | |
this.changePage('user') | |
} | |
} | |
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
zemiak = [ | |
('Tesco', 20, 7.99), | |
('Lidl', 10, 9.5), | |
('Kaufland', 20, 6.99), | |
('GVP', 5, 2.3) | |
] | |
def cena_za_kilogram(balenie): | |
return balenie[2] / balenie[1] |
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
Feki APP [11:35] | |
Prišiel ti obed veg4p z Veglife :slightly_smiling_face: | |
Feki APP [12:15] | |
Prišiel ti obed presto1p2 z Pizza Presto :slightly_smiling_face: | |
Feki APP [12:10] | |
Prišiel ti obed pizza24v33 z Pizza Presto :slightly_smiling_face: | |
Prišiel ti obed pizza24v33 z Pizza Presto :slightly_smiling_face: |
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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: teal; icon-glyph: utensils; | |
const click = "http://m.clickfood.sk/sk/menu/"; | |
async function getMenu(link, parseMenu) { | |
try { | |
if (link.endsWith("date=")) { | |
const date = getMomentForMenu().format("DD.MM.YYYY"); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Title</title> | |
<!-- <link rel="stylesheet" href="style.css"> --> | |
</head> | |
<body> | |
<h1>Hello world</h1> |
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
alias ga='git add' | |
alias gb='git branch' | |
alias gc='git commit -v' | |
alias gcb='git checkout -b' | |
alias gco='git checkout' | |
alias gcm='git checkout master' | |
alias gd='git diff' | |
alias gl='git pull' | |
alias gm='git merge' | |
alias glg='git log --all --graph --pretty=format:"%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit --date=relative' |
OlderNewer