Skip to content

Commit e5cb01c

Browse files
committed
hi! interwebs
Signed-off-by: paodelonga <[email protected]>
0 parents  commit e5cb01c

File tree

3 files changed

+107
-0
lines changed

3 files changed

+107
-0
lines changed

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["deploy/gh-pages"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: gh-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: '.'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

favicon.ico

15 KB
Binary file not shown.

index.html

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<html lang="pt-br">
2+
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="icon" type="image/x-icon" href="./favicon.ico">
7+
<title>Pão</title>
8+
</head>
9+
10+
<body>
11+
<div align="left">
12+
<div align="center">
13+
<p align="left">
14+
<samp>
15+
hi, y'all :3<br>
16+
<br>
17+
- call me Pão (/pɐ̃w̃/);<br>
18+
- a Brazilian with a alter-ego in Cologne, Germany;<br>
19+
- pt_br, en_us, de_ge;<br>
20+
<br>
21+
- a curious & self-learner;<br>
22+
- network eng. student at <a href="https://ifma.edu.br/">Federal</a>;<br>
23+
- system & network admin at <a href="https://www.senac.br/">SENAC</a>;<br>
24+
- eyeing devops, infra 'n a degree in comp engineering;<br>
25+
- side hustle: deploy stuffs, homelab, <a href="https://github.com/vrykolakasmc">minecraft servers</a>;<br>
26+
<br>
27+
- computers, coffee, tea, retro tech, minecraft servers;<br>
28+
- pixel art, hacking culture, music, unix, homelab nerd;<br>
29+
- foss, floss, oss, libre, these libre stuffs 'n thoughts;<br>
30+
<br>
31+
- back-end, devops, infra, networks;<br>
32+
- switching, routing, firewalls, network design;<br>
33+
- docker, kubernetes, terraform, openstack, aws;<br>
34+
<br>
35+
- ubuntu, mint, debian, nixos, arch(main);<br>
36+
- windows, suse, centos, vmware, kvm, proxmox;<br>
37+
<br>
38+
- git, gitea, github, gitlab, codeberg, prometheus;<br>
39+
- grafana, zabbix, nagios, elasticsearch, fail2ban;<br>
40+
- crowdsec, firewalld, nginx, traefik, cloudflare, ansible;<br>
41+
<br>
42+
- python, java, js, ts, c++, lua, rust;<br>
43+
- nix, bash, sh, fish, zsh, markdown;<br>
44+
</samp>
45+
</p>
46+
</div>
47+
<samp>
48+
<a href="mailto:[email protected]">contact me</a>,
49+
<a href="https://discordapp.com/users/242367322478739456">on discord</a>,
50+
<a href="https://bsky.app/profile/paodelonga.dev">a greatsky</a>,
51+
<a href="https://x.com/paodelonga">formally twitter</a>,
52+
<a href="https://linkedin.com/in/paodelonga">linkedin</a>
53+
<br>
54+
<a href="https://wakatime.com/@paodelonga">coding stats</a>,
55+
<a href="https://github.com/paodelonga">catbox code's</a>,
56+
<a href="https://gitlab.com/paodelonga">foxhole code's</a>,
57+
<a href="https://vitae.paodelonga.dev">resume</a>,
58+
<a href="https://blog.paodelonga.dev">texts</a>,
59+
<a href="https://mustychivalry.github.io">click me</a>
60+
</samp>
61+
</div>
62+
</body>
63+
64+
</html>

0 commit comments

Comments
 (0)