Skip to content

Commit 4c74c6e

Browse files
committed
first commit
0 parents  commit 4c74c6e

111 files changed

Lines changed: 17056 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/hugo.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# .github/workflows/gh-pages.yml
2+
3+
name: GitHub Pages
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
build-deploy:
12+
runs-on: ubuntu-latest
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
with:
19+
submodules: true
20+
fetch-depth: 0
21+
22+
- name: Setup Hugo
23+
uses: peaceiris/actions-hugo@v2
24+
with:
25+
hugo-version: "latest"
26+
extended: true
27+
28+
- name: Build
29+
run: hugo --minify
30+
31+
- name: Deploy
32+
uses: peaceiris/actions-gh-pages@v3
33+
if: ${{ github.ref == 'refs/heads/main' }}
34+
with:
35+
github_token: ${{ secrets.GITHUB_TOKEN }}
36+
publish_branch: gh-pages
37+
publish_dir: ./public

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
public
3+
*.lock
4+
resources

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
edbrsk.dev

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Hi there, I'm Edgar 👋
2+
3+
<p align="left">
4+
<a href="https://edbrsk.dev" target="_blank">
5+
<img src="https://img.shields.io/badge/Blog-edbrsk.dev-blue?style=for-the-badge" alt="Blog">
6+
</a>
7+
<a href="https://www.linkedin.com/in/edgarordonezrodriguez/" target="_blank">
8+
<img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge" alt="LinkedIn">
9+
</a>
10+
</p>
11+
12+
I'm a **Software Engineer** and **Data Science student**. Sharing my journey, one line of code at a time.
13+
14+
---
15+
16+
### 🚀 Current Projects
17+
18+
<table>
19+
<tr>
20+
<td width="50%">
21+
<h3><a href="https://edbrsk.dev">🌐 edbrsk.dev</a></h3>
22+
<p>My personal blog where I document my journey and explore diverse topics, from software development and data science to cybersecurity, music production, and filmmaking.</p>
23+
</td>
24+
<td width="50%">
25+
<h3><a href="https://edbrsk.dev/dreambudget">💸 Dreambudget</a></h3>
26+
<p>A minimalist and fast personal finance app designed to help you track your budget effortlessly. Built with a focus on simplicity and user experience.</p>
27+
</td>
28+
</tr>
29+
</table>
30+
31+
---
32+
33+
### 📫 Get in Touch
34+
35+
* **Blog:** [edbrsk.dev](https://edbrsk.dev)
36+
* **LinkedIn:** [linkedin.com/in/edgarordonezrodriguez](https://www.linkedin.com/in/edgarordonezrodriguez/)
37+
* **Email:** [edbrsk@gmail.com](mailto:edbrsk@gmail.com)

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

0 commit comments

Comments
 (0)