Skip to content

Commit

Permalink
Merge pull request #1 from moromis/project/ROC
Browse files Browse the repository at this point in the history
feat: add ROC project
  • Loading branch information
moromis authored Feb 14, 2024
2 parents d5e00a7 + 8d2e3b7 commit 83577e5
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 144 deletions.
2 changes: 1 addition & 1 deletion content/projects/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Projects
summary: Tell visitors about your projects by customizing this text.
summary: Explore some of the projects I've worked on.
description: Explore some of the projects I've worked on.
---
2 changes: 1 addition & 1 deletion content/projects/portfolio-project-1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Portfolio Project 1 is my first portfolio project.
slug: portfolio-project-1
author: John Doe

draft: false
draft: true
date: 2019-02-20T03:52:30-05:00
lastmod:
expiryDate:
Expand Down
2 changes: 1 addition & 1 deletion content/projects/portfolio-project-2/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Portfolio Project 2 is my second portfolio project.
slug: portfolio-project-2
author: John Doe

draft: false
draft: true
date: 2020-02-20T03:52:30-05:00
lastmod:
expiryDate:
Expand Down
161 changes: 23 additions & 138 deletions content/projects/portfolio-project-3/index.md
Original file line number Diff line number Diff line change
@@ -1,158 +1,43 @@
---
title: Portfolio Project 3
seo_title: Portfolio Project 3
summary: Portfolio Project 3 is my third portfolio project.
title: Robot Operational Control (ROC)
seo_title: Robot Operational Control (ROC)
summary: United Rentals contract project crafting a autonomous vehicle control app
description: Portfolio Project 3 is my third portfolio project.
slug: portfolio-project-3
author: John Doe
slug: project-roc
author: Kevin Ulrich

draft: false
date: 2023-02-20T03:52:30-05:00
date: 2024-02-13T23:09:02+0000
lastmod:
expiryDate:
publishDate:

feature_image:
feature_image: roc.jpeg
feature_image_alt:

project types:
- Open Source
- Contract
- Consulting

techstack:
- Hugo
- HTML/CSS
- SQLite
- JavaScript
- Netlify
live_url: https://hugo-liftoff.netlify.app
source_url: https://github.com/wjh18/hugo-liftoff
- Electron
- React
- Redux
- Material-UI
- OpenLayers
- GIS
link: https://www.freshconsulting.com/work/united-rentals-robot-operational-control
---

This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
# Robot Operational Control (ROC)

## Headings
## Summary
In 2018 I had the pleasure of working on a project for United Rentals with Fresh Consulting. It was a desktop web app, intended to be run on tablets on-site in construction projects. It was an Electron web app with a SQLite backend, and a GraphQL interface between.

The following HTML `<h2>``<h6>` elements represent five levels of section headings. `<h2>` is the highest section level you should use in markdown while `<h6>` is the lowest. `<h1>` should be reserved for the page title.
## Details
I worked on this project for a year. It was my first professional project out of college, and it was a blast! I got my hands dirty with React and Javascript for the first time. Many lessons learned and late nights as sometimes the work needed to get done but I wasn't quite up to snuff on some parts of software development. I had incredible mentors, team leads, and PMs on this project though, so everything always went smoothly.

## H2
### H3
#### H4
##### H5
###### H6

## Paragraph

Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.

Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.

## Blockquotes

The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.

### Blockquote without attribution

> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
> **Note** that you can use *Markdown syntax* within a blockquote.
### Blockquote with attribution

> Don't communicate by sharing memory, share memory by communicating.<br>
> — <cite>Rob Pike[^1]</cite>
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.

## Tables

Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.

Name | Age
--------|------
Bob | 27
Alice | 23

### Inline Markdown within tables

| Italics | Bold | Code |
| -------- | -------- | ------ |
| *italics* | **bold** | `code` |

## Code Blocks

### Code block with backticks

```html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
```

### Code block indented with four spaces

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>

### Code block with Hugo's internal highlight shortcode

{{< highlight html >}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
{{< /highlight >}}

## List Types

### Ordered List

1. First item
2. Second item
3. Third item

### Unordered List

* List item
* Another item
* And another item

### Nested list

* Fruit
* Apple
* Orange
* Banana
* Dairy
* Milk
* Cheese

## Other Elements — abbr, sub, sup, kbd, mark

<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.

H<sub>2</sub>O

X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>

Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.

Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
The highlight of this project was going to Florida for a week to work on-site at a solar panel installation as they were building it. We tested the track loaders and used the software that I and my team were building in real time. The only downside was that it was over 100 degrees every day. We were in a small, old house for 12 hours a day, and throughout the day the AC was overcome to the point that by dinner it was almost the same temperature inside as outside.
Binary file added content/projects/portfolio-project-3/roc.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion content/projects/portfolio-project-4/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Portfolio Project 4 is my fourth portfolio project.
slug: portfolio-project-4
author: John Doe

draft: false
draft: true
date: 2022-02-20T03:52:30-05:00
lastmod:
expiryDate:
Expand Down
2 changes: 1 addition & 1 deletion content/projects/portfolio-project-5/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Portfolio Project 5 is my fifth portfolio project.
slug: portfolio-project-5
author: John Doe

draft: false
draft: true
date: 2021-02-20T03:52:30-05:00
lastmod:
expiryDate:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ <h3 class="project-entry-title">
{{- .Description -}}
{{- end -}}
</p>
{{ if or (.Params.live_url) (.Params.source_url) }}
{{ if or (.Params.live_url) (.Params.source_url) (.Params.link) }}
<div class="btn-group">
{{ with .Params.link }}
<a class="btn-primary" href="{{ . }}" target="_blank">Link</a>
{{ end }}
{{ with .Params.live_url }}
<a class="btn-primary" href="{{ . }}" target="_blank">Live</a>
{{ end }}
Expand Down
1 change: 1 addition & 0 deletions themes/hugo-liftoff/layouts/shortcodes/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ <h2 class="home-section-title">
{{ $num = 6 }}
{{ end }}
{{ $projects := where site.RegularPages "Section" "projects" | first $num }}
{{ $projects = where $projects "Params.draft" false }}
{{ with $projects }}
<div class="project-list">
{{- range . }}
Expand Down

0 comments on commit 83577e5

Please sign in to comment.