Theme update. Cleanup of projects YAML
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -1,15 +1,10 @@
|
|||||||
---
|
---
|
||||||
# Documentation: https://wowchemy.com/docs/managing-content/
|
|
||||||
|
|
||||||
title: "CHIP-8 (PHP)"
|
title: "CHIP-8 (PHP)"
|
||||||
summary: "A CHIP-8 emulator written in PHP."
|
summary: "A CHIP-8 emulator written in PHP."
|
||||||
categories: ["PHP"]
|
categories: ["PHP"]
|
||||||
|
|
||||||
# Optional external URL for project (replaces project detail page).
|
|
||||||
external_link: "https://github.com/furyfire/chip-8"
|
external_link: "https://github.com/furyfire/chip-8"
|
||||||
|
|
||||||
image:
|
image:
|
||||||
caption: "CHIP-8"
|
|
||||||
focal_point: ""
|
|
||||||
preview_only: false
|
preview_only: false
|
||||||
---
|
---
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Codingtests"
|
title: "Coding Tests"
|
||||||
summary: "Few solutions for classic online coding challenges. (CodeChef, ProjectEuler)"
|
summary: "Few solutions for classic online coding challenges. (CodeChef, ProjectEuler)"
|
||||||
categories: ["PHP", "C", "Lua", "Ruby"]
|
categories: ["PHP", "C", "Lua", "Ruby"]
|
||||||
external_link: "https://github.com/furyfire/codingtests"
|
external_link: "https://github.com/furyfire/codingtests"
|
@ -1,6 +1,4 @@
|
|||||||
---
|
---
|
||||||
# Documentation: https://wowchemy.com/docs/managing-content/
|
|
||||||
|
|
||||||
title: "Control Library"
|
title: "Control Library"
|
||||||
summary: "A library for quick and easy implementation of regulation and control loops. (PID)"
|
summary: "A library for quick and easy implementation of regulation and control loops. (PID)"
|
||||||
|
|
||||||
@ -10,33 +8,8 @@ date: 2021-07-21T20:49:38+02:00
|
|||||||
# Optional external URL for project (replaces project detail page).
|
# Optional external URL for project (replaces project detail page).
|
||||||
external_link: ""
|
external_link: ""
|
||||||
|
|
||||||
# Featured image
|
|
||||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
|
||||||
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
|
|
||||||
image:
|
image:
|
||||||
caption: "Control loop"
|
|
||||||
focal_point: ""
|
|
||||||
preview_only: false
|
preview_only: false
|
||||||
|
|
||||||
# Custom links (optional).
|
|
||||||
# Uncomment and edit lines below to show custom links.
|
|
||||||
# links:
|
|
||||||
# - name: Follow
|
|
||||||
# url: https://twitter.com
|
|
||||||
# icon_pack: fab
|
|
||||||
# icon: twitter
|
|
||||||
|
|
||||||
url_code: ""
|
|
||||||
url_pdf: ""
|
|
||||||
url_slides: ""
|
|
||||||
url_video: ""
|
|
||||||
|
|
||||||
# Slides (optional).
|
|
||||||
# Associate this project with Markdown slides.
|
|
||||||
# Simply enter your slide deck's filename without extension.
|
|
||||||
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
|
|
||||||
# Otherwise, set `slides = ""`.
|
|
||||||
slides: ""
|
|
||||||
---
|
---
|
||||||
{{% callout note %}}
|
{{% callout note %}}
|
||||||
Concept phase. No implementation yet.
|
Concept phase. No implementation yet.
|
||||||
@ -81,8 +54,6 @@ Compare with other implementations for correcteness taking into account floating
|
|||||||
- Map
|
- Map
|
||||||
- Limit
|
- Limit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Example
|
# Example
|
||||||
```mermaid
|
```mermaid
|
||||||
graph LR;
|
graph LR;
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
title: "IMDb to Hugo Markdown"
|
title: "IMDb to Hugo Markdown"
|
||||||
summary: "Convert a list of IMDb ratings to Markdown files suitable for Hugo"
|
summary: "Convert a list of IMDb ratings to Markdown files suitable for Hugo"
|
||||||
date: 2021-08-01T11:56:05+02:00
|
date: 2021-08-01T11:56:05+02:00
|
||||||
categories: ["PHP"]
|
categories: ["PHP"]
|
||||||
|
|
||||||
|
|
||||||
image:
|
image:
|
||||||
focal_point: ""
|
|
||||||
preview_only: false
|
preview_only: false
|
||||||
|
|
||||||
url_code: "https://github.com/furyfire/imdb-to-hugo-md"
|
url_code: "https://github.com/furyfire/imdb-to-hugo-md"
|
||||||
@ -39,7 +36,7 @@ The following fields are avaible in the CSV file.
|
|||||||
|
|
||||||
|
|
||||||
# Implementation
|
# Implementation
|
||||||
I opted to use PHP for the implementation.
|
I opted to use PHP for the implementation and the composer package manager.
|
||||||
|
|
||||||
- To parse the CSV file I use the library leauge/csv. (https://csv.thephpleague.com/)
|
- To parse the CSV file I use the library leauge/csv. (https://csv.thephpleague.com/)
|
||||||
- To scrape additional movie information from IMDb I used the library imdbphp/imdbphp. (https://github.com/tboothman/imdbphp)
|
- To scrape additional movie information from IMDb I used the library imdbphp/imdbphp. (https://github.com/tboothman/imdbphp)
|
||||||
|
@ -5,16 +5,9 @@ title: "Tidstagning"
|
|||||||
summary: "A very simple time tracking application written in C#.NET to be used for timing of yachtracing."
|
summary: "A very simple time tracking application written in C#.NET to be used for timing of yachtracing."
|
||||||
date: 2021-07-17T15:10:25+02:00
|
date: 2021-07-17T15:10:25+02:00
|
||||||
categories: ["C-Sharp"]
|
categories: ["C-Sharp"]
|
||||||
# Featured image
|
|
||||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
|
||||||
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
|
|
||||||
image:
|
image:
|
||||||
caption: "Icon"
|
|
||||||
focal_point: ""
|
|
||||||
preview_only: false
|
preview_only: false
|
||||||
|
|
||||||
# Custom links (optional).
|
|
||||||
# Uncomment and edit lines below to show custom links.
|
|
||||||
links:
|
links:
|
||||||
- name: Download
|
- name: Download
|
||||||
url: "https://share.jcktrue.dk/Tidstagning_1_1_2_26.zip"
|
url: "https://share.jcktrue.dk/Tidstagning_1_1_2_26.zip"
|
||||||
@ -22,16 +15,6 @@ links:
|
|||||||
icon: download
|
icon: download
|
||||||
|
|
||||||
url_code: "https://code.jcktrue.dk/jct/tidstagning"
|
url_code: "https://code.jcktrue.dk/jct/tidstagning"
|
||||||
url_pdf: ""
|
|
||||||
url_slides: ""
|
|
||||||
url_video: ""
|
|
||||||
|
|
||||||
# Slides (optional).
|
|
||||||
# Associate this project with Markdown slides.
|
|
||||||
# Simply enter your slide deck's filename without extension.
|
|
||||||
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
|
|
||||||
# Otherwise, set `slides = ""`.
|
|
||||||
slides: ""
|
|
||||||
---
|
---
|
||||||
# Introduction
|
# Introduction
|
||||||
A very simple time tracking application written in C#.NET. To be used for the timing of sailboat racing.
|
A very simple time tracking application written in C#.NET. To be used for the timing of sailboat racing.
|
||||||
|
4
go.mod
4
go.mod
@ -4,6 +4,6 @@ go 1.15
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/v5 v5.3.0
|
github.com/wowchemy/wowchemy-hugo-modules/v5 v5.3.0
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210725202142-0a8115627804 // indirect
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210807125257-88ec9270d03e // indirect
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210725202142-0a8115627804 // indirect
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210807125257-88ec9270d03e // indirect
|
||||||
)
|
)
|
||||||
|
4
go.sum
4
go.sum
@ -6,8 +6,12 @@ github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210721205100-
|
|||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210721205100-265894f90488/go.mod h1:Sp/AKo+2HAPi/IPHp1MEdKPmee+mzO5+efUBUPLPqPE=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210721205100-265894f90488/go.mod h1:Sp/AKo+2HAPi/IPHp1MEdKPmee+mzO5+efUBUPLPqPE=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210725202142-0a8115627804 h1:yE6hUygU5kHuF39wCfglfvB329cvXb7qPkqOQRVysNk=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210725202142-0a8115627804 h1:yE6hUygU5kHuF39wCfglfvB329cvXb7qPkqOQRVysNk=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210725202142-0a8115627804/go.mod h1:Sp/AKo+2HAPi/IPHp1MEdKPmee+mzO5+efUBUPLPqPE=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210725202142-0a8115627804/go.mod h1:Sp/AKo+2HAPi/IPHp1MEdKPmee+mzO5+efUBUPLPqPE=
|
||||||
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210807125257-88ec9270d03e h1:/jEzCRVB3KMmm2DEpacd0lJD0HsNgF2vkCJowFmew7s=
|
||||||
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5 v5.0.0-20210807125257-88ec9270d03e/go.mod h1:Sp/AKo+2HAPi/IPHp1MEdKPmee+mzO5+efUBUPLPqPE=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210629192904-559885af86b7/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210629192904-559885af86b7/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210721205100-265894f90488 h1:DNYn9kvZ43CY3koaBL5lWhXAHx3yaMTLBB4CEFq7NkU=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210721205100-265894f90488 h1:DNYn9kvZ43CY3koaBL5lWhXAHx3yaMTLBB4CEFq7NkU=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210721205100-265894f90488/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210721205100-265894f90488/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210725202142-0a8115627804 h1:l7imLsd0ZCE6Mm3/TebR7BlNxftmfODU8CMJA/IupBc=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210725202142-0a8115627804 h1:l7imLsd0ZCE6Mm3/TebR7BlNxftmfODU8CMJA/IupBc=
|
||||||
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210725202142-0a8115627804/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210725202142-0a8115627804/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
||||||
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210807125257-88ec9270d03e h1:J6H85UfeOzUouIenMxv/+FT1F5XlfzjuZYfMFdRux8Y=
|
||||||
|
github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5 v5.0.0-20210807125257-88ec9270d03e/go.mod h1:2iL9rdrUYyJXX2BeHKfK+QbqZlubCsaR60nQ87NRQTY=
|
||||||
|
Reference in New Issue
Block a user