Skip to content

Commit

Permalink
feat: intro concluida
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriqueAJNB committed Jun 25, 2024
1 parent 144de69 commit 7bb7e40
Show file tree
Hide file tree
Showing 9 changed files with 2,340 additions and 0 deletions.
32 changes: 32 additions & 0 deletions book/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html

title: Python para todos
author: Henrique Branco
logo: img/logo.png

# Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html
execute:
execute_notebooks: force

# Define the name of the latex output file for PDF builds
latex:
latex_documents:
targetname: book.tex

# Add a bibtex file so that we can create citations
bibtex_bibfiles:
- references.bib

# Information about where the book exists on the web
repository:
url: https://github.com/HenriqueAJNB/python-para-todos # Online location of your book
path_to_book: books # Optional path to your book, relative to the repository root
branch: main # Which branch of the repository should be used when creating links (optional)

# Add GitHub buttons to your book
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
html:
use_issues_button: true
use_repository_button: true
9 changes: 9 additions & 0 deletions book/_toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Table of contents
# Learn more at https://jupyterbook.org/customize/toc.html

format: jb-book
root: intro
options:
numbered: True
chapters:
- file: instalacao-python.md
Binary file added book/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions book/instalacao-python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Instalação Python
24 changes: 24 additions & 0 deletions book/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# ![python](https://cdn3.emoji.gg/emojis/1887_python.png) Python para todos

## Sobre mim

Olá, sou Henrique Branco, e este é meu [perfil do LinkedIn](https://www.linkedin.com/in/henriqueajnb/). É um prazer imenso ter você comigo aqui nesta jornada de aprendizado em linguagem Python. Eu adoro me conectar com as pessoas. Caso você comece a ler esse livro, me mande um oi no LinkedIn!

Desde 2018, mergulhei de cabeça no mundo de Python e, desde então, tive a alegria de ensinar centenas de alunos, tanto em aulas particulares quanto em grupo. Um dos momentos mais marcantes da minha carreira de ensino foi liderar um bootcamp de Python pela How Bootcamps em parceria com a Stone, onde 200 alunos participaram ao vivo durante 6 meses!

Além de ensinar em português, também lancei cursos na plataforma Coursera em inglês, abordando temas como Python com IA generativa, git e VSCode, ampliando o alcance do meu trabalho e ajudando ainda mais pessoas a desenvolverem suas habilidades.

Na minha trajetória profissional, atuei como Engenheiro de Machine Learning em empresas renomadas como Bosch, Cellere IT e Grupo Boticário. Essas experiências me permitiram aplicar e aprofundar meus conhecimentos em projetos reais, desafiadores e inovadores.

E dedici compartilhar conhecimento e conteúdo através deste livro.

## Objetivos

O objetivo deste livro é guiá-lo em sua jornada de aprendizado em Python, partindo do absoluto zero. Se você nunca programou antes ou está dando seus primeiros passos no mundo da programação, este livro foi feito especialmente para você.

Quero que você se sinta apoiado e confiante durante todo o processo de aprendizado. Por isso, ofereço uma linguagem informal e um contato próximo comigo, autor deste material, como um diferencial. Estarei disponível para esclarecer dúvidas, fornecer feedback e ajudá-lo a superar qualquer desafio que possa surgir. Minha intenção é criar uma experiência de aprendizado suave, onde você não apenas aprende Python, mas também seja ouvido com suas dúvidas.

## Conteúdo do livro

```{tableofcontents}
```
Empty file added book/references.bib
Empty file.
2,250 changes: 2,250 additions & 0 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[tool.poetry]
name = "python-para-todos"
version = "0.1.0"
description = ""
authors = ["Henrique Branco <[email protected]>"]
readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
jupyter-book = "^1.0.0"


[tool.poetry.group.dev.dependencies]
taskipy = "^1.13.0"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.taskipy.tasks]
build = { cmd = "jb build --all book", help = "runs all unit tests" }

0 comments on commit 7bb7e40

Please sign in to comment.