Skip to content

Instantly share code, notes, and snippets.

View denstream-io's full-sized avatar
💭
Numbers don't lie

Dennis 'Lucius' Chimezie denstream-io

💭
Numbers don't lie
View GitHub Profile
@denstream-io
denstream-io / vanilla-js-cheatsheet.md
Created May 12, 2023 20:06 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@denstream-io
denstream-io / 0_python_email.md
Created July 18, 2022 22:31 — forked from nickoala/0_python_email.md
Use Python to send and receive emails

Use Python to:

  • send a plain text email
  • send an email with attachment
  • receive and filter emails according to some criteria

Set the base image to Ubuntu must be first instruction - use docker search to find images

FROM ubuntu # <image>
FROM ubuntu:latest # - <image>:<tag>
FROM ubuntu:precise (LTS)

Set the maintainer info