Portfolio
Publications
Yes, I write research articles too!
Artificial Tea - Secrets of the leaf
Me, Myself, and my very self
Online, 2026
Projects
Subtitle 1

Artificial Tea
A website that serves as: a living portfolio, a services dashboard, and a place to organize technical ponderings.

The Coffee Machine
A step away from artificial tea to a coffee machine...
Skills
Languages
EE
Links
Markdown
Can add miniblogs too?!
Dummy Markdown Document
Introduction
This is a dummy Markdown document demonstrating a variety of Markdown features. It includes italic text, bold text, strikethrough text, lists, links, tables, quotes, code, and more.
Text Formatting
- Bold text
- Italic text
- Bold and italic text
Strikethrough textInline code- <u>Underlined text using HTML</u>
You can also highlight an important term, such as Markdown syntax, within a paragraph.
Links
Visit the example text resource.
You can also display the URL directly:
https://artificialtea.com/admin/resources/vm_file.txt
Unordered List
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered List
- Create a Markdown file.
- Add some content.
- Save the file.
- Preview the rendered output.
Task List
- Add headings
- Add text formatting
- Add a link
- Review the document
- Publish the document
Blockquote
Markdown is a lightweight markup language.
It is commonly used for documentation, README files, and online content.
Code Example
pythondef greet(name: str) -> str: """Return a simple greeting.""" return f"Hello, {name}!" print(greet("World"))
