Mercurial > public > dennis-website
changeset 1:2d31c91cb5b5
add code
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Fri, 15 Nov 2024 14:46:01 +0000 |
parents | 861a976974b5 |
children | d1526da4dc4b |
files | src/index.html src/style.css |
diffstat | 2 files changed, 74 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/index.html Fri Nov 15 14:46:01 2024 +0000 @@ -0,0 +1,56 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Dennis C. M.</title> + <link rel="stylesheet" href="style.css"> +</head> + +<body> + <main> + <h1>Dennis C. M.</h1> + <h2>Programmer</h2> + <h3>Projects:</h3> + <ul> + <li><a href="#" target="_blank">EVB-A32QS1-RFRG: </a> A GNSS receiver development board based on a STM32 + MCU.</li> + <li><a href="#" target="_blank">EVB-A32M1-F: </a> A small STM32F0 development board with the same dimensions + as the Raspberry Pi Pico.</li> + <li><a href="#" target="_blank">EVB-A32S1-M:</a> A electronic speed controller based on a STM32 MCU.</li> + <li><a href="#" target="_blank">Logic LED:</a> My first Arduino project. A simple circuit to interact with + logic gates.</li> + <li><a href="#" target="_blank">Hey!:</a> Hey! is a simple TCP streaming app developed in C using POSIX + APIs. Both client and server are containerized using Docker.</li> + <li><a href="#" target="_blank">Algo Animator:</a> An interactive program to visualize sorting algorithms. + Developed in C using OpenGL, GLUT, and FreeType.</li> + <li><a href="#" target="_blank">Maze Solver:</a> A maze solver written in C.</li> + <li><a href="#" target="_blank">Geoquiz:</a> A geography game for iOS written in SwiftUI.</li> + <li><a href="#" target="_blank">Bitcaviar Plus:</a> A Bitcoin blockchain parser written in Python.</li> + <li><a href="#" target="_blank">Finance Parser:</a> Serverless parser to extract information from financial + reports using AWS Step Functions, AWS S3, AWS Api Gateway, AWS Textract, AWS DynamoDB and Eventbridge. + </li> + <li><a href="#" target="_blank">Tweet Analysis:</a> Serverless app to fetch & analyse tweets using AWS + Comprehend.</li> + <li><a href="#" target="_blank">Simoleon:</a> A currency converter app for iOS written in SwiftUI.</li> + <li><a href="#" target="_blank">Python Black Scholes:</a> A command line utility to calculate the + theoretical call and put price of an European option using the black-scholes method.</li> + <li><a href="#" target="_blank">Stock Charts:</a> A library to display interactive charts in SwiftUI.</li> + <li><a href="#" target="_blank">Lazybear:</a> My first iOS app and programming project.</li> + </ul> + <h3>Active projects:</h3> + <ul> + <li><a href="#" target="_blank">Youtube channel: </a> I have a youtube channel where I upload videos about + photography.</li> + </ul> + <h3>Hobbies:</h3> + <ul> + <li>Programming.</li> + <li>Photography.</li> + <li>Boxing.</li> + </ul> + </main> +</body> + +</html> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/style.css Fri Nov 15 14:46:01 2024 +0000 @@ -0,0 +1,18 @@ +body { + margin: 40px auto; + max-width: 650px; + line-height: 1.6; + font-size: 18px; + color: #444; + padding: 0 10px +} + +h1, +h2, +h3 { + line-height: 1.2 +} + +h2 { + font-weight: normal; +} \ No newline at end of file