-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (71 loc) · 3.28 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meus Artigos</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anta">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="https://jorgerabello3.github.io/">Início</a></li>
<li><a href="https://jorgerabello3.github.io/docker.html">Docker</a></li>
<li><a href="https://jorgerabello3.github.io/designpatterns.html">Design Patterns</a></li>
<li><a href="https://jorgerabello3.github.io/databases.html">Bancos de Dados</a></li>
<li><a href="https://jorgerabello3.github.io/java8.html">Funcionalidades do Java 8</a></li>
<li><a href="https://jorgerabello3.github.io/modernjava.html">Programação Moderna Com Java</a></li>
<li><a href="https://jorgerabello3.github.io/techinterviews.html">Perguntas em Entrevistas Técnicas</a></li>
<li><a href="https://jorgerabello3.github.io/livros.html">Livros Recomendados</a></li>
<li><a href="https://jorgerabello3.github.io/cursos.html">Cursos Recomendados</a></li>
</ul>
</nav>
</header>
<main>
<h1>Jorge Rabello</h1>
<h2>a.k.a: @seujorge</h2>
<section>
<h2>Sobre</h2>
<p>Possuo experiência desenvolvendo aplicações web e mobile, utilizando Java (JDK 7+), Kotlin, NodeJS
(Angular, e NestJS), também possuo experiência com AWS Cloud (CloudFormation, RDS, DynamoDB, ECS, SQS,
SNS, EC2, S3), Docker, Kubernetes e CI/CD (GitHubActions, Jenkins e CircleCI).</p>
<p>Sou certificado AWS Cloud Practitioner, em busca das certificações AWS Developer Associate e AWS
Certified Solutions Architect – Associate.</p>
<p>Possuo sólidos conhecimentos em modelagem de dados e em banco de dados relacionais como Oracle,
PostgreSQL e MySQL e não relacionais como MongoDB e Redis, além de conhecimentos em migrations de bancos
de dados utilizando Liquibase e FlyWay.</p>
<p>Possuo experiência com testes automatizados, testes unitários, testes E2E e testes de integração.</p>
<p>Detenho conhecimentos e experiência em versionamento de código utilizando git como ferramenta de
versionamento e bitbucket ou github como repositórios de código.</p>
</section>
</main>
<footer>
<section>
<p>
<a href="https://www.linkedin.com/in/jorgerabellodev/" target="_blank">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
</p>
<p>
<a href="https://bitbucket.org/jorge_rabello/workspace/repositories/" target="_blank">
<i class="fab fa-bitbucket"></i> Bitbucket
</a>
</p>
<p>
<a href="https://sharebook.com.br/search/Jorge%20Rabello" target="_blank">
<i class="fab fa-youtube"></i> Vídeos Técnicos - Sharebook
</a>
</p>
<p>
<a href="https://www.tabnews.com.br/seujorge/conteudos/1" target="_blank">
<i class="fa-solid fa-book"></i> TabNews
</a>
</p>
</section>
</footer>
<script src="js/script.js" async defer></script>
</body>
</html>