A Python script that creates a simple chart showing the development of the COVID-19 7 day incidence in your city (or cities of interest).
Data is taken from [lgl.bayern.de][lgl] so it works only for cities in Bayern, Germany.
Render some Markdown file to HTML and show it in your browser.
This is useful when you want to check a Markdown file before pushing it onto GitHub/GitLab/etc or if you want to simply print a nice looking Markdown file. Just print it from your browser.
The look is broadly similar to that on GitHub but stripped down to the bare minimum. It can also be changed easily. Just have a look at the
(Not quite) Cloudy Conway for the Shader Editor Android app.
Just copy and paste :D
Explore a snippet of source code like a dungeon in a roguelike. Looks like this:
e
#!/usr/bin/env bash | |
# Replace that boring variable names with funny emojis in your Swift code | |
# | |
# @param 1 - file to emojize | |
emojize() { | |
local FILE=$1 | |
local EMOJI=(😀 😬 😁 😂 😃 😄 😅 😆 😇 😉 😊 🙂 🙃 😋 😌 😍 😘 😗 😙 😚 😜 😝 😛 🤑 🤓 😎 🤗 😏 😶 😐 😑 😒 🙄 🤔 😳 😞 😟 😠 😡 😔 😕 🙁 😣 😖 😫 😩 😤 😮 😱 😨 😰 😯 😦 😧 😢 😥 😪 😓 😭 😵 😲 🤐 😷 🤒 🤕 😴 💤 💩 😈 👿 👹 👺 💀 👻 👽 🤖 😺 😸 😹 😻 😼 😽 🙀 😿 😾 🙌 👏 👋 👍 👊 👌 💪 🙏 👆 👇 👈 👉 🖕 🤘 🖖 💅 👄 👅 👂 👃 👁 👀 👤 🗣 👶 👦 👧 👨 👩 👱 👴 👵 👲 👳 👮 👷 💂 🕵 🎅 👼 👸 👰 🚶 🏃 💃 👯 👫 👬 👭 🙇 💁 🙅 🙆 🙋 🙎 🙍 💇 💆 💑 💏 👪) | |
local EMOJI_LEN=${#EMOJI[@]} | |
local I=0 |
// from http://editor.thebookofshaders.com/?log=170202213311 | |
#ifdef GL_FRAGMENT_PRECISION_HIGH | |
precision highp float; | |
#else | |
precision mediump float; | |
#endif | |
uniform vec2 resolution; | |
uniform float time; | |
uniform vec2 offset; |
#!/usr/bin/env bash | |
# Print n blank lines | |
# | |
# @param 1 - number of blank lines to print (default 1) | |
blanks() { | |
local I | |
for (( I=${1:-1}; I--; )) | |
do | |
echo |