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
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Copyright (C) 2013-2018 Diego Torres Milano | |
Created on 2018-04-07 by Culebra v15.1.2 | |
__ __ __ __ | |
/ \ / \ / \ / \ | |
____________________/ __\/ __\/ __\/ __\_____________________________ | |
___________________/ /__/ /__/ /__/ /________________________________ | |
| / \ / \ / \ / \ \___ |
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 | |
n=32 | |
arg=setaf | |
text='Hello World! This is %s %d' | |
_help() | |
{ | |
printf 'usage: %s [--help|-H] [--16] [--256] [-t|--tiny] [--background|-b]\n' "$(basename $0)" | |
exit 0 |
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
#! /usr/bn/env streamlit run | |
import random | |
import streamlit as st | |
import streamlit.components.v1 as components | |
def content(): | |
for i in range(50): | |
st.write(f"line {i}: {random.randint(0, 1000)}") | |
OlderNewer