Skip to content

Commit

Permalink
gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianoGTZ committed May 19, 2024
0 parents commit 47414a8
Show file tree
Hide file tree
Showing 604 changed files with 25,256 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
version: 2

defaults: &defaults
docker:
- image: cimg/node:16.15.0
working_directory: ~/juliano-lima-personal-blog

jobs:
build:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "yarn.lock" }}
- run: yarn install --frozen-lockfile
- save_cache:
paths:
- node_modules
key: dependencies-{{ checksum "yarn.lock" }}

lint:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "yarn.lock" }}
- run: yarn lint

test:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "yarn.lock" }}
- run: yarn test --runInBand --no-cache

coverage:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "yarn.lock" }}
- run: yarn test:coverage --runInBand --no-cache
- save_cache:
key: coverage-{{ .Environment.CIRCLE_SHA1 }}
paths:
- coverage

workflows:
version: 2
test:
jobs:
- build
- lint:
requires:
- build
- test:
requires:
- build
- coverage:
requires:
- build
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/public/*
/node_modules/*
/scripts/*
.DS_Store
31 changes: 31 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
env: {
browser: true,
es6: true,
node: true,
'jest/globals': true,
},
extends: ['plugin:react/recommended', 'airbnb', 'prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: ['react', 'jest'],
rules: {
'jest/no-disabled-tests': 'warn',
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
'jest/prefer-to-have-length': 'warn',
'jest/valid-expect': 'error',
'react/jsx-props-no-spreading': 'off',
'react/require-default-props': 'off' ,
'import/extensions': 'off'
},
};
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/.github export-ignore
/.gitattributes export-ignore
/.editorconfig export-ignore
/.travis.yml export-ignore
**/*.js.snap export-ignore
/static/css export-ignore
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## Description
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
Binary file added .github/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules/
.cache/
public/
npm-debug.log
.eslintcache
.gatsby-context.js
.idea
gatsby-starter-lumen.iml
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## My Blog

Hi folks o/

This is the repository of my blog using React, Jest and Gatsby :rocket:. Honorable Mention to [Lumen](https://lumen.netlify.com/), which was the main tool used, which accumulates the other technologies that the project uses.

If you want to know more about these technologies:

- [React](https://reactjs.org/)
- [Gatsby](https://www.gatsbyjs.org/)

This README is still poor regarding documentation details, but it is still the **beginning .... of a great journey**.

As the [agile manifesto]((https://agilemanifesto.org/):) suggests:

```
Working software over comprehensive documentation
```

Have a good reading.
50 changes: 50 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
module.exports = {
url: 'https://julianogtz.github.io/my-personal-blog/',
siteUrl: 'https://julianogtz.github.io/my-personal-blog/',
pathPrefix: 'my-personal-blog/',
title: 'Blog by Juliano Lima',
subtitle:
'Software Engineer, Computer Scientist, Cartoons Analyst, and Amateur Commentator Football.',
copyright: '© All rights reserved.',
disqusShortname: 'https-julianogtz-github-io-my-personal-blog',
postsPerPage: 4,
googleAnalyticsId: 'G-EG3RQMD2NY',
useKatex: false,
menu: [
{
label: 'Articles',
path: '/',
},
{
label: 'About me',
path: '/pages/about',
},
{
label: 'Contact',
path: '/pages/contacts',
},
],
author: {
name: 'Juliano Lima',
photo: '/photo.png',
bio:
'Software Engineer, Computer Scientist, Cartoons Analyst, and Amateur Football Commentator.',
contacts: {
email: '',
facebook: 'juliano.gutierrez.92',
telegram: 'julianogt',
twitter: 'julianodgtz',
github: 'JulianoGTZ',
rss: '',
vkontakte: '',
linkedin: 'julianopereiralima',
instagram: 'julianogt',
line: '',
gitlab: '',
weibo: '',
codepen: '',
youtube: '',
soundcloud: '',
},
},
};
32 changes: 32 additions & 0 deletions content/pages/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: 'About me'
template: 'page'
socialImage: '/media/image-2.jpg'
---
## Where I from, What I Do, Where I live

Hi, my name is Juliano Pereira Lima. I have a bachelor's degree in Computer Science from [UNIVALI](https://www.univali.br/graduacao/ciencia-da-computacao-itajai). A relevant part of my graduation was also done at [UEMS](https://www.comp.uems.br/).

I'm from **Mato-Grosso do Sul**. Currently, I'm living in São Paulo, Capital.

I'm software Engineer at Nubank, working specifically in Back-End using Clojure in a [very plural architecture](https://www.infoq.com/presentations/nubank-architecture/). I have worked with Java, C#, and React in past jobs, and sometimes I still develop some stuff with these technologies (mostly for fun).

I love the **Science** in the Computer Science. I usually study through textbooks, presentations, events, own experiments, and scientific articles trying to understand more about the theory behind everything happening technologically in the world.

The biggest obstacles I have experienced professionally led me to study Agile. I love to study this topic, including organizational structures. This knowledge greatly increases my breadth of problem-solving and helps me a lot to develop what is really necessary.

I like to contribute to the community by participating in [Meetups](https://youtu.be/1RFgwFJ73rc), writting on [Dev.to](https://dev.to/julianogtz) and [Medium](https://medium.com/@julianodgtz) and contributing to open source for projects like [Sweet Alert 2](https://sweetalert2.github.io/) and [Dev.to](http://dev.to/)

I love burgers, movies, different types of beer, football(especially **Corinthians**), and Non-Sense Cartoons.

![Regular Show](https://media.giphy.com/media/5hqs5IXmeIRFe6UlQa/giphy.gif)

I'm a fan of **pair-programming**. Usually, I'm programming with **Jorge**.

![Jorge, a very cute cat](/media/jorge.jpg)

### Copyright

All information published on this blog is created by me. The information on this site represents my personal opinion, and it may not be the same as yours or anyone else's, including the company I work for.

Feel free to use the content produced here, as long as there is a reference to the original source (this blog) and there is a common agreement between the content creator and who is reproducing it.
9 changes: 9 additions & 0 deletions content/pages/contacts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: 'Contacts'
template: 'page'
socialImage: '/media/image-4.jpg'
---
## Contact

You can contact me over [Twitter](https://twitter.com/julianodgtz), [Linkedin](https://www.linkedin.com/in/julianopereiralima/), or at `julianodgtz@gmail.com`.

Loading

0 comments on commit 47414a8

Please sign in to comment.