Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Como criar seu portfólio no GitHub com GitHub P...
Search
Otacilio Saraiva Maia Neto
February 13, 2019
Science
0
360
Como criar seu portfólio no GitHub com GitHub Pages
Workshop apresentado na Campus Party São Paulo #CPBR12
Otacilio Saraiva Maia Neto
February 13, 2019
Tweet
Share
More Decks by Otacilio Saraiva Maia Neto
See All by Otacilio Saraiva Maia Neto
Pergunte pro Marty: Usando IA na criação de chatbots para Whatsapp
otacilion
0
31
Primeiros passos com Git e GitHub
otacilion
0
66
Pitch - Como vender uma ideia em poucos minutos
otacilion
0
99
What makes Latam communities different and what you can learn with them
otacilion
0
53
Risoflora - Status Report 2
otacilion
0
150
Dossiê Risoflora - Status Report 2
otacilion
0
100
Como o GraphQL mudou nossa relação cliente-servidor
otacilion
0
87
Workshop Arduino Day 2019
otacilion
0
35
Brasilino Arduino Day Recife 2019
otacilion
0
36
Other Decks in Science
See All in Science
機械学習 - 授業概要
trycycle
PRO
0
200
データベース02: データベースの概念
trycycle
PRO
2
750
眼科AIコンテスト2024_特別賞_6位Solution
pon0matsu
0
410
[第62回 CV勉強会@関東] Long-CLIP: Unlocking the Long-Text Capability of CLIP / kantoCV 62th ECCV 2024
lychee1223
1
950
データベース09: 実体関連モデル上の一貫性制約
trycycle
PRO
0
690
生成AI による論文執筆サポートの手引き(ワークショップ) / A guide to supporting dissertation writing with generative AI (workshop)
ks91
PRO
0
500
地質研究者が苦労しながら運用する情報公開システムの実例
naito2000
0
210
Masseyのレーティングを用いたフォーミュラレースドライバーの実績評価手法の開発 / Development of a Performance Evaluation Method for Formula Race Drivers Using Massey Ratings
konakalab
0
160
02_西村訓弘_プログラムディレクター_人口減少を機にひらく未来社会.pdf
sip3ristex
0
480
Factorized Diffusion: Perceptual Illusions by Noise Decomposition
tomoaki0705
0
390
CV_5_3dVision
hachama
0
140
科学で迫る勝敗の法則(電気学会・SICE若手セミナー講演 2024年12月) / The principle of victory discovered by science (Lecture for young academists in IEEJ-SICE))
konakalab
0
100
Featured
See All Featured
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
53k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
22k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
5
230
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
680
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.6k
It's Worth the Effort
3n
185
28k
Why Our Code Smells
bkeepers
PRO
337
57k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
Transcript
#CPBR12 #GitHub #GitHubNaCPBR12 Como criar seu portfólio no GitHub com
GitHub Pages
@Roeeyn @Fernanda Ochoa @ovflowd @OtacilioN @Perkles
None
Site de página de usuário e organizações Para usuário, crie
um repositório com: <usuario>.github.io Para organização, crie um repositório com: <organizacao>.github.io
Site de projetos Crie um repositório o nome do projeto:
NomeDoProjeto E o site ficará disponível no domínio: http(s)://<usuario>.github.io/<NomeDoProjeto>
Criando um repositório
Criando um repositório
Habilitando a página através do settings
Escolhendo um tema
Clonando o repositório Git clone https://github.com/user/user.github.io E navegue para a
pasta com: cd user.github.io
Instalando o Jekyll no seu computador https://help.github.com/articles/setting-up-your-git hub-pages-site-locally-with-jekyll/ Ou usando
o shorter: http://bit.ly/jekyllcpbr
Após instalar, sirva localmente bundle exec jekyll serve Ou usando
o shorter: http://bit.ly/jekyllcpbr
Criando um arquivo .gitignore Vamos ignorar tudo que comece com:
_site
Commitando o arquivo git add . git commit -m “add:
initial version” git push
Entendendo um pouco sobre markdown # Este é um título
grande ## Já este é um subtítulo ### Este é um pouco menor #### Ainda menor ##### incrivelmente menor ###### O menor título de todos
Ênfases em markdown *Isto é um texto em itálico* **Isto
é um texto em negrito** *Você **pode** combinar eles*
Listas não ordenadas * Item 1 * Item 2 *
Item 2a * Item 2b
Listas ordenadas 1. Item 1 2. Item 2 * Item
3a * Item 3b
Links 
Imagens  
Citações Assim como disse: > Nós estamos vivendo no futuro,
então > o presente é o nosso passado.
Citações Assim como disse: > Nós estamos vivendo no futuro,
então > o presente é o nosso passado.
Casos de sucesso com GitHub Pages https://lab.github.com/
Casos de sucesso com GitHub Pages colaboradados.github.io
Valeus!
None