Compare commits

..

4 Commits

Author SHA1 Message Date
adrianj12
d1de084ef8 add hugo_stats 2024-08-04 03:41:24 +01:00
adrianj12
293e2cf00d ignore resources 2024-08-04 03:38:06 +01:00
adrianj12
28b0bdcd91 more content files 2024-08-04 03:37:44 +01:00
adrianj12
895240dc20 hugo deploy rules 2024-08-04 03:35:00 +01:00
14 changed files with 84 additions and 24 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
public/ public/
resources/
hugo_stats.json
.hugo_build.lock

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
deploy: generate
rsync -avz -e 'ssh -p 21098' public/ adrizyks@server198.web-hosting.com:~/public_html
generate: public/*
hugo

24
content/contact.md Normal file
View File

@ -0,0 +1,24 @@
---
title: 'Contact me'
date: 2024-08-03
type: landing
sections:
- block: cta-button-list
content:
# Need a custom icon?
# Add an SVG image to the `assets/media/icons/` folder and reference it in the `icon` field below
buttons:
- text: Connect with me on LinkedIn
icon: brands/linkedin
url: https://linkedin.com/in/adrian-abeyta
- text: Follow me on Mastodon
icon: brands/mastodon
url: https://emacs.ch/@databased
- text: See my projects on GitHub
icon: brands/github
url: https://github.com/adrianj12
- text: Email me
icon: inbox-arrow-down
url: "mailto: adrian@adrianabeyta.com"
---

View File

@ -1,6 +1,6 @@
--- ---
title: 'Experience' title: 'Experience'
date: 2023-10-24 date: 2024-08-01
type: landing type: landing
design: design:

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -0,0 +1,14 @@
---
title: Homebox
external_link: https://github.com/sysadminsmedia/homebox
date: 2024-08-01
tags:
- Go
- Vue
- Typescript
- Javascript
- CSS
- HTML
---
An inventory management system for home users, with a Vue-powered web UI.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,12 @@
---
title: Modified Algorithms
date: 2023-12-06
external_link: https://github.com/adrianj12/cs361-final-project
tags:
- Java
- JavaFX
- Markdown
- UNM
---
Comparing the performance of 3 different sorting algorithms that are slightly modified from their classic implementations.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,12 @@
---
title: Disease Simulation
date: 2022-11-18
external_link: https://github.com/adrianj12/cs351-disease-simulation
tags:
- Java
- JavaFX
- Markdown
- UNM
---
This is a simple disease simulation application intended to model the spread of a contagious disease.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -3,8 +3,8 @@ title: NY Times Tiles Game Clone
date: 2022-01-01 date: 2022-01-01
external_link: https://github.com/adrianj12/tiles-game external_link: https://github.com/adrianj12/tiles-game
tags: tags:
- Java
- JavaFX - JavaFX
- Java
- Markdown - Markdown
- UNM - UNM
--- ---

View File

@ -12,7 +12,7 @@ sections:
- block: collection - block: collection
content: content:
title: Latest Projects title: Latest Projects
text: Here are some of the projects that have recently caught my interest. text: Projects that I created by myself or with a team.
filters: filters:
folders: folders:
- project - project
@ -20,4 +20,15 @@ sections:
view: article-grid view: article-grid
fill_image: false fill_image: false
columns: 3 columns: 3
- block: collection
content:
title: Interesting Projects
text: Public projects that have caught my interest and I have contributed or plan to contribute to.
filters:
folders:
- other-projects
design:
view: article-grid
fill_image: false
columns: 2
--- ---

View File

@ -1,21 +0,0 @@
[build]
command = "hugo --gc --minify -b $URL && npx pagefind --source 'public'"
publish = "public"
[build.environment]
HUGO_VERSION = "0.126.3"
HUGO_ENABLEGITINFO = "true"
[context.production.environment]
HUGO_ENV = "production"
[context.deploy-preview]
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL && npx pagefind --source 'public'"
[context.branch-deploy]
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL && npx pagefind --source 'public'"
[[plugins]]
package = "netlify-plugin-hugo-cache-resources"
[plugins.inputs]
debug = true