I hereby claim:
- I am rhdzmota on github.
- I am rhdzmota (https://keybase.io/rhdzmota) on keybase.
- I have a public key ASCLjW-y4L43TZVJ76_0iElh_vZInP3rtww0Oud7lAUvdgo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
function environ-check() { | |
local environ_tag="${1}" | |
local environ_val="${!1}" | |
if [[ -z "${environ_val}" ]] | |
then echo "Environ variable is not set ${environ_tag}"; exit 1 | |
fi | |
} |
import inspect | |
import json | |
from typing import Dict, TypeVar | |
SerializableADT = TypeVar("SerializableADT", bound="Serializable") | |
class Serializable: |
I hereby claim:
To claim this, I am signing this object:
The number of words in the essay should be between 700 and 1000 words. Students should follow the “five-paragraph essay” format, which consists of three principal components:
Use this guide to setup your class repository.
Create a new repository on your personal github account: https://github.com/new
CREDIT-RISK-2020B
Private
option.from dataclasses import dataclass | |
from typing import Callable, Dict, Optional | |
import pandas as pd | |
@dataclass | |
class CardConfig: | |
target_score: int | |
target_odds: int |
import datetime | |
import re | |
import streamlit as st | |
import pandas as pd | |
import requests | |
# Get application state | |
app_state = st.experimental_get_query_params() |
import datetime | |
import altair as alt | |
import streamlit as st | |
import pandas as pd | |
import requests | |
app_state = st.experimental_get_query_params() | |
@st.cache |