Hi there 👋

Here you will find a list of random finds, thoughts and notes on health informatics, data science, and other topics!

Full Stack Fastapi Template

From GitHub: Full stack, modern web application template. Using FastAPI, React, SQLModel, PostgreSQL, Docker, GitHub Actions, automatic HTTPS and more. https://github.com/fastapi/full-stack-fastapi-template

September 14, 2024 · 1 min · 21 words · DC

Aws Tools

Mocking Python https://github.com/getmoto/moto - Moto is a library that allows your tests to easily mock out AWS Services. Other https://github.com/localstack/localstack - LocalStack is a cloud service emulator that runs in a single container on your laptop or in your CI environment. https://www.localstack.cloud/localstack-for-snowflake - https://github.com/localstack/terraform-local https://github.com/localstack/awscli-local https://github.com/orgs/localstack/repositories?type=all

September 14, 2024 · 1 min · 46 words · DC

Github Fastapi Sqlmodel

From Github: SQLModel is a library for interacting with SQL databases from Python code, with Python objects. It is designed to be intuitive, easy to use, highly compatible, and robust. SQLModel is based on Python type annotations, and powered by Pydantic and SQLAlchemy. https://github.com/fastapi/sqlmodel 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 from typing import Optional from sqlmodel import Field, Session, SQLModel, create_engine class Hero(SQLModel, table=True): id: Optional[int] = Field(default=None, primary_key=True) name: str secret_name: str age: Optional[int] = None hero_1 = Hero(name="Deadpond", secret_name="Dive Wilson") hero_2 = Hero(name="Spider-Boy", secret_name="Pedro Parqueador") hero_3 = Hero(name="Rusty-Man", secret_name="Tommy Sharp", age=48) engine = create_engine("sqlite:///database....

September 12, 2024 · 1 min · 121 words · DC

Learn Azure from Microsoft

Came across this link: https://info.microsoft.com/ww-landing-learn-azure-in-a-month-of-lunches.html Can download a free e-book from manning. Learn Azure in a Month of Lunches, Second Edition breaks down the most important Azure concepts into bite-sized lessons with exercises and labs—along with project files available in GitHub—to reinforce your skills.

September 12, 2024 · 1 min · 44 words · DC

New Read: Lessons Learned in Creating Interoperable Fast Healthcare Interoperability Resources Profiles for Large-Scale Public Health Programs

“This article describes lessons learned from the collaborative creation of logical models and standard Health Level Seven (HL7) Fast Healthcare Interoperability Resources (FHIR) profiles for family planning and reproductive health. The National Health Service delivery program will use the FHIR profiles to improve federal reporting, program monitoring, and quality improvement efforts.” Matney, S. A., Heale, B., Hasley, S., Decker, E., Frederiksen, B., Davis, N., Langford, P., Ramey, N., & Huff, S....

September 11, 2024 · 1 min · 99 words · DC