diff --git a/.gitattributes b/.gitattributes index 3a6fdd51ec6ee0165379f0c17c4146155d841725..3b768a59cfb3ea135d615082c07563cfc66db91e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ +*.jpg filter=lfs diff=lfs merge=lfs -text *.JPG filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..1efb093719e8c5dce55aa0deb489558179f96388 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +resources/_gen +public/ diff --git a/assets/background.png b/assets/background.png new file mode 100644 index 0000000000000000000000000000000000000000..bade9b9f01b23ebf78b3a782de94d90d037a5e62 Binary files /dev/null and b/assets/background.png differ diff --git a/assets/fernando.jpg b/assets/fernando.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dbf046c5c0784a22cd98f91048eaa65b8246de4 --- /dev/null +++ b/assets/fernando.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a41f6e59b97b384a3027b35217b8cc7cd2e3140bae2d735069a6668c6529891 +size 12303 diff --git a/assets/icons/codeforces.svg b/assets/icons/codeforces.svg new file mode 100644 index 0000000000000000000000000000000000000000..af2ef56806087b40b1b6f5e950c0c321ba03ed4d --- /dev/null +++ b/assets/icons/codeforces.svg @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --> +<svg fill="currentColor" width="800px" height="800px" viewBox="0 0 24 24" role="img" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 7.5A1.5 1.5 0 0 1 6 9v10.5A1.5 1.5 0 0 1 4.5 21h-3C.673 21 0 20.328 0 19.5V9c0-.828.673-1.5 1.5-1.5h3zm9-4.5A1.5 1.5 0 0 1 15 4.5v15a1.5 1.5 0 0 1-1.5 1.5h-3c-.827 0-1.5-.672-1.5-1.5v-15c0-.828.673-1.5 1.5-1.5h3zm9 7.5A1.5 1.5 0 0 1 24 12v7.5a1.5 1.5 0 0 1-1.5 1.5h-3a1.5 1.5 0 0 1-1.5-1.5V12a1.5 1.5 0 0 1 1.5-1.5h3z"/></svg> diff --git a/assets/pinhao-mosaic-reduced.png b/assets/pinhao-mosaic-reduced.png new file mode 100644 index 0000000000000000000000000000000000000000..bd5e321c9f454ef8b588be1d6a6be33c16f8bd57 Binary files /dev/null and b/assets/pinhao-mosaic-reduced.png differ diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 7b5381da96b4ce7beec22e9c1ce5d040d2c7d442..da1ebb83ed0ca1c39e42e2cbce8297404948df84 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -7,7 +7,7 @@ buildDrafts = false buildFuture = false enableEmoji = true googleAnalytics = "" -baseURL = "maratona.inf.ufpr.br" +baseURL = "https://maratona.inf.ufpr.br" [imaging] anchor = "Center" diff --git a/config/_default/languages.pt-BR.toml b/config/_default/languages.pt-BR.toml index 2bd5258270586a0a2e53f619305eb6046ca3092a..f0ab091e9dd3735fbd04f47ba667d57f502bdaea 100644 --- a/config/_default/languages.pt-BR.toml +++ b/config/_default/languages.pt-BR.toml @@ -11,3 +11,13 @@ rtl = false dateFormat = "2 January 2006" logo = "simbolo.png" description = "Competidores(as) Pirados em Maratona!" + +[params.author] + name = "Capimara UFPR" + email = "nuno@n9o.xyz" + image = "logo.png" + headline = "Competidores(as) Pirados em Maratona!" + links = [ + { telegram = "https://t.me/joinchat/Ca4s80-klY919sp-KUMR6Q" }, + { codeforces = "https://codeforces.com/group/Sm6u7LTfgX/blog" }, + ] diff --git a/config/_default/params.toml b/config/_default/params.toml index 40ad217d1ac24f45c79f55f44da3d27dac1b6302..9581de95d172aec0eb9f7fd519d4428d961dad7a 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -4,28 +4,30 @@ autoSwitchAppearance = true enableSearch = true enableCodeCopy = true replyByEmail = false -disableImageOptimization = false +disableImageOptimization = true disableTextInHeader = false giteaDefaultServer = "https://git.fsfe.org" forgejoDefaultServer = "https://v8.next.forgejo.org" +smartTOC = false +mainSections = ["participacoes"] [header] -layout = "basic" +layout = "fixed-fill-blur" [footer] showMenu = true -showCopyright = true +showCopyright = false showThemeAttribution = true showAppearanceSwitcher = true showScrollToTop = true [homepage] -layout = "card" -showRecent = false +layout = "profile" +showRecent = true showRecentItems = 5 showMoreLink = false showMoreLinkDest = "/posts/" -cardView = false +cardView = true cardViewScreenWidth = false layoutBackgroundBlur = false @@ -35,11 +37,11 @@ showViews = false showLikes = false showDateOnlyInArticle = false showDateUpdated = false -showAuthor = true +showAuthor = false showHero = false layoutBackgroundBlur = true layoutBackgroundHeaderSpace = true -showBreadcrumbs = false +showBreadcrumbs = true showDraftLabel = true showEdit = false editAppendPath = true diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/content/eventos/1a-fase-2024/featured.png b/content/eventos/1a-fase-2024/featured.png deleted file mode 100644 index d97bbf2e3b14c682b4ec932f215e3f9bf23048d3..0000000000000000000000000000000000000000 Binary files a/content/eventos/1a-fase-2024/featured.png and /dev/null differ diff --git a/content/eventos/1a-fase-2024/index.md b/content/eventos/1a-fase-2024/index.md deleted file mode 100644 index 56f9a2442ef1e310fa9bb690e8560b6c49cf450b..0000000000000000000000000000000000000000 --- a/content/eventos/1a-fase-2024/index.md +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: "Primeira Fase da Maratona SBC 2024" -date: 2024-08-31 -draft: false -tags: ["primeira-fase", "maratona-sbc"] -author: "Fernando Monteiro Kiotheka" ---- - -A primeira fase da Maratona SBC 2024 aconteceu em Joinville na UDESC! - -O coach Fernando Monteiro Kiotheka e co-coach André Luiz Pires Guedes -trouxeram os seguintes 14 times da UFPR para Joinville: - -/* very well-informed guess */ -: *8 balões, 601 minutos de penalidade, 27ª posição nacional, 3ª na sede* -: Pedro Vinicius de Sousa da Silva (PPGINF, 2024, BCC, 2019) -: Raul Gomes Pimentel de Almeida (PPGINF, 2022, BCC, 2018) -: Thiago José Theobaldo Trannin (PPGEE, 2024, Eng. Elétrica, 2019) - -Programação Casual -: *6 balões, 487 minutos de penalidade, 57ª posição nacional, 5ª na sede* -: David Lucas Pereira Gomes (BCC, 2021) -: Gabriel Lisboa Conegero (C3SL, BCC, 2022) -: Roberto Sprengel Minozzo Tomchak (BCC, 2023) - -TremBoys -: *4 balões, 107 minutos de penalidade, 137ª posição nacional, 10ª na sede* -: Eduardo Alencar Furtado Machoski (BCC, 2023) -: Enzo Langer (BCC, 2023) -: Igor Neves da Silva (BCC, 2023) - -Circuito_Honors -: *4 balões, 137 minutos de penalidade, 146ª posição nacional, 12ª na sede* -: Antonio de Ressureição Filho (BCC, 2024) -: Arthur Ribas de Oliveira (BCC, 2024) -: Nathan Endo (BCC, 2024) - -Fault || criatividade (10º lugar geral, 6º lugar da UFPR) -: *4 balões, 138 minutos de penalidade, 149ª posição nacional, 13ª na sede* -: Alexandre de Oliveira Plugge Freitas (BCC, 2020) -: Guilherme Pateiro (BCC, 2019) -: Rafael Munhoz de Cunha Marques (BCC, 2022) - -Davi's Fan Club -: *4 balões, 191 minutos de penalidade, 164ª posição nacional, 16ª na sede* -: Fernando de Barros Castro (BCC, 2023) -: Vinicius Jeremias dos Santos (BCC, 2023) -: Ruibin Mei (C3SL, BCC, 2023) - -DiPolo Induzido -: *4 balões, 215 minutos de penalidade, 174ª posição nacional, 19ª na sede* -: Gabriel Henrique Polo (BCC, 2024) -: Pedro Pierobon Marynowski (BCC, 2024) -: Vinícius Gregorio Fucci (BCC, 2024) - -Dinossaurada -: *4 balões, 238 minutos de penalidade, 190ª posição nacional, 22ª na sede* -: João Meyer Muhlmann (BCC, 2023) -: Tiago Augusto Fiatte Prestes (BCC, 2023) -: Vitor Faria Medeiros da Silveira (BCC, 2023) - -Trepa Colinas -: *4 balões, 245 minutos de penalidade, 196ª posição nacional, 24ª na sede* -: Anderson Aparecido do Carmo Frasão (C3SL, PPGINF, 2024, BCC, 2020) -: Marcus Vinícius Residoefer Pereira (C3SL, BCC, 2021) -: Muriki Gusmão Yamanaka (C3SL, BCC, 2020) - -Os 3 Reprovados -: *4 balões, 363 minutos de penalidade, 237ª posição nacional, 27ª na sede* -: Matheus Gimenes da Silva Viana (BCC, 2021) -: Matheus Telles Batista (BCC, 2021) -: Davi Garcia Lazzarin (BCC, 2020) - -Blumenau Paulista -: *4 balões, 469 minutos de penalidade, 266ª posição nacional, 29ª na sede* -: Kauê de Amorim Silva (BCC, 2024) -: Vinícius Hasse Nascimento (BCC, 2024) -: Víctor Hugo Weigmann Chequer Maia (BCC, 2024) - -Kão -: *3 balões, 110 minutos de penalidade, 326ª posição nacional, 37ª na sede* -: Camila Yuki Shibata (BCC, 2024) -: Leonardo Prazeres Tosin (BCC, 2024) -: Raphael Gaias Wrublewski (BCC, 2024) - -Senior HTML Engineers -: *3 balões, 160 minutos de penalidade, 377ª posição nacional, 39ª na sede* -: Bruno Corrado Crestani (BCC, 2022) -: Leonardo Pfeng (BCC, 2024) -: Gustavo Friedrich Jakobi (BCC, 2022) - -The Tortured Programmers Department -: *3 balões, 204 minutos de penalidade, 422ª posição nacional, 41ª na sede* -: Juliana Zambon (BCC, 2022) -: Luize Cunha Duarte (BCC, 2022) -: Millena Suaini Costa (BCC, 2022) diff --git a/content/fotos/1a-fase-2024/IMG_20240831_063206.jpg b/content/fotos/1a-fase-2024/IMG_20240831_063206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9443a5bf0b84c1c786abd64bea90abfb5028790 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_063206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f72663ff3d6850637625f46e6c54b7101ce0356cec5847cf927598b57c4162 +size 3498903 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_063207.jpg b/content/fotos/1a-fase-2024/IMG_20240831_063207.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efc3def1993f3f21a1708f4d0533de9aa61403e9 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_063207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5283504ffd71efed968a1a8dd7698c47c4ca24dfabe36e3d68f375ade60eeb29 +size 3301716 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100431.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2927183c1049ba9669c03b50f44bec8699cb7038 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d5ae89c9b879a8c031c5822d49086c8ed36efbada74a018156b63bb481b058 +size 1932598 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100446.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9670400bf9f998f23fa0c1490f2fc72515bb481d --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec91d7bf008e8b0e8cd4b617747fcf589b5b74fc2ad3125f3da52492648cb064 +size 1799504 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100457.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100457.jpg new file mode 100644 index 0000000000000000000000000000000000000000..262d55f9877517d954c232d3e2f67cd9cf2e6561 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81ab39dfe4e4c5f08de8c205894d523429c1bc4f1090b480d0670d363e07963 +size 2015051 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100518.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100518.jpg new file mode 100644 index 0000000000000000000000000000000000000000..adca35f715c0b9b24aa12198a3686eef7dbcf74c --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100e6dc5125925179616f9524eb3d53cfc430fb56f1fd9bd798d3b2db78fa352 +size 1751834 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100549.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d369f367096a533bfcc12bdd6dd6f9d578caa67a --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c47f9664efb1228088a4f21db342d28f066e0bf1178ea24982eee49344e5f33 +size 2865058 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100609.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100609.jpg new file mode 100644 index 0000000000000000000000000000000000000000..908a12e0cc7d8003fd90209bc11d6be92986e9f7 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73cb3aa7058f43c1f2ec9195c8a4a75a2e4877467f00f370b4ffa8525a96bd68 +size 2775095 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100635.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c74f15f1ae8a48e64dbeb60a0c6882e9e7608948 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61c1e0e83e849e2bfe0ae7d03b8e5982bade3d5ae6e872c92207ed2aa51508a +size 2902243 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100907.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100907.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c837f17ec6cbb11718ba503b11f7344612d17a4 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68e3ccbfdc68c7231327be11f82ef6ac6eb7fdf650d1e27c45c300dd3d4b2af +size 2341848 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_100908.jpg b/content/fotos/1a-fase-2024/IMG_20240831_100908.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f22789d28597a18b427458036eb0a1c5225f1d9c --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_100908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f299f15e3dd9a33a56bd7e51127674e025307f10bf398a63f981ac3ec7a8cf1e +size 2348502 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_101022.jpg b/content/fotos/1a-fase-2024/IMG_20240831_101022.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34c5f67561226b1c31993e046f9f6ce9ccf4425a --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_101022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58573cd3cbafca8afb081d1bd832cd513b6850c1f075ecd4e930a4795dfede8a +size 2981810 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_101023.jpg b/content/fotos/1a-fase-2024/IMG_20240831_101023.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cf196b0599e222bc4b40af35da5bea89707b311 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_101023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3297643088237e42eefd52827305b62cae507e79f96f1a47bc49b1a29b0e73f +size 3012917 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_101039.jpg b/content/fotos/1a-fase-2024/IMG_20240831_101039.jpg new file mode 100644 index 0000000000000000000000000000000000000000..beb19de1aed1186056048293c4d085d5c4990538 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_101039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f412967cf03aa2fa9930c49562c2adee4eb451fbdff5265bc6ae93d1ea5fe896 +size 2795845 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_101058.jpg b/content/fotos/1a-fase-2024/IMG_20240831_101058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..565b11207e6294c206db652df3a9ffbd230948ef --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_101058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f30141a360a506871040c45dc2a499c868a27559bf940d71dd778a359941e2c +size 2944678 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_101922.jpg b/content/fotos/1a-fase-2024/IMG_20240831_101922.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4d947b58faf30d4f7a5b0d865560558d3f6f0da --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_101922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc760b6460d94afbb04839f1a1a701b774e848de6d2ae14d7998e194b982d4df +size 1982179 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_101924.jpg b/content/fotos/1a-fase-2024/IMG_20240831_101924.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b55ebbfc8f2aebe9232cdf68e679e641235e298 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_101924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1844662e9fe0caa30dc21ab216b03ca658ff16e49644e39efddd305c239b421a +size 1818656 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_130942.jpg b/content/fotos/1a-fase-2024/IMG_20240831_130942.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d7188544863f9c49998e3f05ee26e0ea503d97d --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_130942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e3b7e62117ed3228924023ed8bc52ac71a130d8298a3edf4619471fdfd9814 +size 1934470 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_131101.jpg b/content/fotos/1a-fase-2024/IMG_20240831_131101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57f921cd586617f55602f1a79edbce99184b15df --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_131101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7357c79d51243de5987b6f612e75e88f07fb2491931b701f15e3b0fd7f568ab7 +size 1339640 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_131106.jpg b/content/fotos/1a-fase-2024/IMG_20240831_131106.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5773f1b70c37aaacb0e2f4dc6cd099898c5e6954 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_131106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77baec65db0545db17df0aefe13e6c70ec584efe88dfe405b4e0303432c24416 +size 1335176 diff --git a/content/fotos/1a-fase-2024/IMG_20240831_203630.jpg b/content/fotos/1a-fase-2024/IMG_20240831_203630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfa533af8b012ec674d8b600a9b255df3020c5d8 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240831_203630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d3aac57643ec37f4c3b7cc3fc769140570b69f8330d7bb616cdcdd364179fc +size 1685026 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141048_756.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141048_756.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d44711fee7fd7d75ba628dbba6f4701c6b3c3058 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141048_756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b906a737aa82ba7bc0668e397fb059de74120efe14f4733d55b3a7b3506cc29 +size 2413395 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_037.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_037.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f46091368b33a2f66cd4a25c1cc9c40d494fb24 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae964af01e2fde32b24f2b034c1790df18cbf5ee9581f6976bf0853fe55fee2 +size 2956793 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_078.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_078.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c3a166bccbd360e060c55763c855952f48e76b3 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e342fd635d0bc6e193a380f66703ff0d4ab924eaf6930655120a7bf568b12eda +size 2750130 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_112.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce02f4dc242a4855a10428d468ae29bd0570c10c --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c660ed4d73e79ff3dbbc624f3833f4553e8ec2aee4188a8dd7c770b5834e19 +size 2783031 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_678.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_678.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6775588742a6efd31f229c81ec193c24ac36d402 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81e721500483860cea2245d35e32672f3f88c8ffc90c3d021d502a2ead74bb8 +size 3014313 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_708.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b0774c62311d0adbfcd75cfda50344eb2105d62 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de255025203cb092dbb0950583c6ab8f69f1d5ebb05725727b4048e6311eaf17 +size 2907734 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_739.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_739.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daa43548dc3c89b8092d92cf663f27233d58fc5a --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84cb5bf35e56d24b0e34176a1ee123848f9a53161196878ad9ee3cc119d5a71e +size 2648914 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_770.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23d2c7572414c1766a01e1bf66d375f14d306f6c --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8959e71b9b179c1f41423a87834210791feda15b16135dfa83951e067bf1be +size 3056397 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_825.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_825.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d6c18ec6b80e9625b3656c01a7cebeba6b4c254 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9670414d514c8cc0b2dc8bb509e4fa4215d72da5ead9ed8dd3d51c7c3c05559c +size 2771402 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_839.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_839.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d96eb0bf874629cd7188a38cf3d061f1f38a335 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06dc614ea920d0530d518a00e9e7c3edd1add38f08ad87446af20478b7df228b +size 2705043 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_849.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_849.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7d9495cfb5ecfdbdb5823238f2270ad5ae2cf7a --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d698ff6996f1609b35dd1833a0cb233ef14450d655bd0a0d70231519a079dcd8 +size 2413594 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141049_974.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141049_974.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddb2098dd69dc891312c2986e886456b4b0f4c2c --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141049_974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2e76d1dfc7590b00f1c7c8e87867f9fabd9ab1d8e7ae784f3dd11adbef0f43 +size 2944510 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_064.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_064.jpg new file mode 100644 index 0000000000000000000000000000000000000000..576a676e5bc5657ab2eab15946eb1d2a62499134 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8943bbe4ef251cf5563da4e04f238eb7ac02518a658c6b096281f84e0f7bac9 +size 2883472 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_085.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_085.jpg new file mode 100644 index 0000000000000000000000000000000000000000..978104baaef9fb8a001f1fa3358bf38d42fa8806 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e129b3d8ead6946e6f321f2e50d68f7a63e9079caf4e1c2a0b45d56e7b06c64 +size 2830626 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_168.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_168.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a03e880ad8e929be226e836a82a9a489367ff9f --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ea39db05688459a97a6d8279716ee8b8fdc3fe2bafb83f811e06c26c9d8b7d +size 2669989 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_179.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_179.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04e74cc64eb4c446681cdf2a1232ac13704b8e4e --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a497d41f52e91e798c2138f80ab15a1cb4bf777ec8ac622111e7e02dbca574fc +size 2909794 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_184.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_184.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bace77a19b46ad886321d268361f3d5b73aaaee1 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122516c408c80db779fc816268576e3bd2da45c2a3a4450690d6b05b9e0c7514 +size 2633125 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_214.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_214.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9db8f376d493bbb5938b653854769a086363afa6 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1568c6e8c9809928a0133be6ffb1c65a542f7cb0c40942da307b0c6eb019b413 +size 3163553 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_231.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_231.jpg new file mode 100644 index 0000000000000000000000000000000000000000..856bf8938b34900f49a693f414f623f53844ea9e --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb6b8c6bafc9115c37f4912557f268e0d9f9822f089c17c3974aa966b91b413 +size 3089737 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_358.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_358.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0a7e185a905c5f1a17c626e01dba432fbe8ab21 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc9912b3e7f2dd8a79ac854ea905d659cd052f74c64135bdfae429d6c04a7dc +size 2565396 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_370.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_370.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a80cbb573143f8713e2cad75e846f48b51f17f45 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b7162307aef17a055b6317cbb3f4d85c5ee138f540f5a78f93a02aaba191b1 +size 3608935 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_438.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_438.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06e7c80e30e6669ecff6f936bee59423df5f07e9 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a33dd6b82ba0de81d09196149419e01dbaf8e1795f3aa63c0678f628ddcee1c +size 2660823 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_447.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_447.jpg new file mode 100644 index 0000000000000000000000000000000000000000..401e819f9d603708f6002911ddabcdf6d7778302 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626efaff293c2dde88be01e77aaed4894f3726d50e0201b7619b369292861c7e +size 2777711 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_509.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_509.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f578840d905a05619d669e7bd6ebd6d8db06eb3 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4050ae7c91157ffc0954ac503963bec18a2bf6bc3addbe18bb940e1b0fcf5c3d +size 3406940 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_541.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_541.jpg new file mode 100644 index 0000000000000000000000000000000000000000..136c249a0f4b85a33ebd64ffd2afb4c2c9e1eea3 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf269549806f5d65e9ea9328bc20b6e7efad90f7bda8cfb59390800086070df +size 2737290 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_711.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_711.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b918d19b161b173138c7a7cbb7d7ccb08aa20bee --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba39b8c1b7b8d63110ef51d0725bb819db82cd4c91aaeae64036a280ab2e27bd +size 3137056 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_775.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_775.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22553063b943c7c2f35517eb4b68bf46e806b957 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2263b64ccf3f631979b31bf714ca00057dca7075b4bdaa5eac83fb35be724d6d +size 3245266 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141050_860.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141050_860.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acba7416b6daa114d253b0b9e7897bb459c36430 --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141050_860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f0b238a4bf38c3182cd750afb7a7e3e18efa24dfd5ddb6bbc0b1940c389bd1 +size 2804539 diff --git a/content/fotos/1a-fase-2024/IMG_20240901_141051_051.jpg b/content/fotos/1a-fase-2024/IMG_20240901_141051_051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33b601a7c11139abdf84a20506e1387526d8c2ab --- /dev/null +++ b/content/fotos/1a-fase-2024/IMG_20240901_141051_051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4a95363a0587c413a89ab7985384ab8c11d2d7e1ba834f3bd70ed1a91e03af +size 2862761 diff --git a/content/fotos/1a-fase-2024/index.md b/content/fotos/1a-fase-2024/index.md new file mode 100644 index 0000000000000000000000000000000000000000..ee12a3f4ab1c5cedda03c3c5948638165758efcb --- /dev/null +++ b/content/fotos/1a-fase-2024/index.md @@ -0,0 +1,7 @@ +--- +title: "Fotos da Primeira Fase da Maratona SBC 2024" +date: 2024-08-31 +draft: false +tags: ["primeira-fase", "maratona-sbc", "fotos"] +url: /participacoes/1a-fase-2024/fotos/ +--- diff --git a/content/participacoes/1a-fase-2024/3reprovados.jpg b/content/participacoes/1a-fase-2024/3reprovados.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76531ade7a89337aae39ea89e8661b937a2d7665 --- /dev/null +++ b/content/participacoes/1a-fase-2024/3reprovados.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e0a3b2a177965cecf8d7b81b6cc4dd6641ef0583132bd29295a1c50a8258d6 +size 721049 diff --git a/content/participacoes/1a-fase-2024/blumenaupaulista.jpg b/content/participacoes/1a-fase-2024/blumenaupaulista.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21672df3e8c023a1acef84f6e544289ce3c74b5b --- /dev/null +++ b/content/participacoes/1a-fase-2024/blumenaupaulista.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:950076323c715b4163f4d36e4894d7e31300b48f59153c26c5a3896ebdbea7e5 +size 563281 diff --git a/content/participacoes/1a-fase-2024/circuito.jpg b/content/participacoes/1a-fase-2024/circuito.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e80c8d441fac3673ae136f14d3d522886706c58d --- /dev/null +++ b/content/participacoes/1a-fase-2024/circuito.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624e06e499bed192e086c51d0887e0b03dcddfaec8d8d4e32ae9178df6d36093 +size 876321 diff --git a/content/participacoes/1a-fase-2024/davis.jpg b/content/participacoes/1a-fase-2024/davis.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72670e80373f515bb3a5e3efa36b25a978259e62 --- /dev/null +++ b/content/participacoes/1a-fase-2024/davis.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23b385fad9c63bf761303ecc9a5bb2a2798a36664ae0f755330cc7d84e714d0 +size 751565 diff --git a/content/participacoes/1a-fase-2024/dinossaurada.jpg b/content/participacoes/1a-fase-2024/dinossaurada.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba0c21e4d24811e55324e57993577cbb1c9cecb7 --- /dev/null +++ b/content/participacoes/1a-fase-2024/dinossaurada.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697a5ab0ab26e120076d88e59c7083168e00af784c075ce0c168a4fc93e4ade0 +size 441635 diff --git a/content/participacoes/1a-fase-2024/dipolo.jpg b/content/participacoes/1a-fase-2024/dipolo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad922b5f712d5d06b8dc5ba7cdda9757e560169d --- /dev/null +++ b/content/participacoes/1a-fase-2024/dipolo.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafa8efe086708e4dce4fda6a2bcf880ed97660f9c0b1dd212befba0791d8263 +size 714217 diff --git a/content/participacoes/1a-fase-2024/faultcriatividade.jpg b/content/participacoes/1a-fase-2024/faultcriatividade.jpg new file mode 100644 index 0000000000000000000000000000000000000000..306989c4797e69aabaae7bc7799181e0943ee3b4 --- /dev/null +++ b/content/participacoes/1a-fase-2024/faultcriatividade.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060ce55b9062fa1c807392566c54dc40d93b059f2867772521c3f1af84b8d2ac +size 417463 diff --git a/content/participacoes/1a-fase-2024/featured.jpg b/content/participacoes/1a-fase-2024/featured.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3f47c121dc324d10e14678bc80c6f696cfcf299 --- /dev/null +++ b/content/participacoes/1a-fase-2024/featured.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f221d14a5fee54fc39971a80cfd9eeacfce8e5936c71443e4fb7e9b9e961d41 +size 657894 diff --git a/content/participacoes/1a-fase-2024/index.md b/content/participacoes/1a-fase-2024/index.md new file mode 100644 index 0000000000000000000000000000000000000000..7b0277fc28a52bb6602eb58bfa64b35fbade9a55 --- /dev/null +++ b/content/participacoes/1a-fase-2024/index.md @@ -0,0 +1,139 @@ +--- +title: "Primeira Fase da Maratona SBC 2024" +date: 2024-08-31 +draft: false +tags: ["primeira-fase", "maratona-sbc"] +authors: + - "fmkiotheka" +--- + + + +* [Página da primeira fase da Maratona SBC 2024](https://web.archive.org/web/20240901202259/https://maratona.sbc.org.br/primeira-fase.html) +* [Página da sede](https://web.archive.org/web/20240901202511/https://brute.joinville.udesc.br/primeira-fase/) +* [Fotos em alta qualidade](fotos) +* [Placar final (selecione SC, Joinville para filtrar pela sede)](https://scorelatam.naquadah.com.br/subbr-2024/) + +A primeira fase da Maratona SBC 2024 aconteceu em Joinville na UDESC! +O time "/* very well-informed guess */" classificou para a final brasileira alcançando +a 27ª posição nacional e a terceira da sede, utilizando uma das duas vagas de Regra 2 +da sede. O times da UDESC em primeiro e segundo lugar da sede, "Não Treinamos o Emo" +e "max(Enzo, Eric)" respectivamente se classificaram pela Regra 1. Na segunda +vaga de Regra 2 se classificou o time "dijkstragédia" da UTFPR/Curitiba. + + + +No total, o coach Fernando Monteiro Kiotheka e co-coach André Luiz Pires Guedes +trouxeram 14 times da UFPR para Joinville: + + + +/* very well-informed guess */ +: *8 balões, 601 minutos de penalidade, 27ª posição nacional, 3ª na sede* +: Pedro Vinicius de Sousa da Silva (PPGINF, 2024, BCC, 2019) +: Raul Gomes Pimentel de Almeida (PPGINF, 2022, BCC, 2018) +: Thiago José Theobaldo Trannin (PPGEE, 2024, Eng. Elétrica, 2019) + + + +Programação Casual +: *6 balões, 487 minutos de penalidade, 57ª posição nacional, 5ª na sede* +: David Lucas Pereira Gomes (BCC, 2021) +: Gabriel Lisboa Conegero (C3SL, BCC, 2022) +: Roberto Sprengel Minozzo Tomchak (BCC, 2023) + + + +TremBoys +: *4 balões, 107 minutos de penalidade, 137ª posição nacional, 10ª na sede* +: Eduardo Alencar Furtado Machoski (BCC, 2023) +: Enzo Langer (BCC, 2023) +: Igor Neves da Silva (BCC, 2023) + + + +Circuito_Honors +: *4 balões, 137 minutos de penalidade, 146ª posição nacional, 12ª na sede* +: Antonio de Ressureição Filho (BCC, 2024) +: Arthur Ribas de Oliveira (BCC, 2024) +: Nathan Endo (BCC, 2024) + + + +Fault || criatividade +: *4 balões, 138 minutos de penalidade, 149ª posição nacional, 13ª na sede* +: Alexandre de Oliveira Plugge Freitas (BCC, 2020) +: Guilherme Costa Pateiro (BCC, 2019) +: Rafael Munhoz de Cunha Marques (BCC, 2022) + + + +Davi's Fan Club +: *4 balões, 191 minutos de penalidade, 164ª posição nacional, 16ª na sede* +: Fernando de Barros Castro (BCC, 2023) +: Vinicius Jeremias dos Santos (BCC, 2023) +: Ruibin Mei (C3SL, BCC, 2023) + + + +DiPolo Induzido +: *4 balões, 215 minutos de penalidade, 174ª posição nacional, 19ª na sede* +: Gabriel Henrique Polo (BCC, 2024) +: Pedro Pierobon Marynowski (BCC, 2024) +: Vinícius Gregorio Fucci (BCC, 2024) + + + +Dinossaurada +: *4 balões, 238 minutos de penalidade, 190ª posição nacional, 22ª na sede* +: João Meyer Muhlmann (BCC, 2023) +: Tiago Augusto Fiatte Prestes (BCC, 2023) +: Vitor Faria Medeiros da Silveira (BCC, 2023) + + + +Trepa Colinas +: *4 balões, 245 minutos de penalidade, 196ª posição nacional, 24ª na sede* +: Anderson Aparecido do Carmo Frasão (C3SL, PPGINF, 2024, BCC, 2020) +: Marcus Vinícius Residoefer Pereira (C3SL, BCC, 2021) +: Muriki Gusmão Yamanaka (C3SL, BCC, 2020) + + + +Os 3 Reprovados +: *4 balões, 363 minutos de penalidade, 237ª posição nacional, 27ª na sede* +: Matheus Gimenes da Silva Viana (BCC, 2021) +: Matheus Telles Batista (BCC, 2021) +: Davi Garcia Lazzarin (BCC, 2020) + + + +Blumenau Paulista +: *4 balões, 469 minutos de penalidade, 266ª posição nacional, 29ª na sede* +: Kauê de Amorim Silva (BCC, 2024) +: Vinícius Hasse Nascimento (BCC, 2024) +: Víctor Hugo Weigmann Chequer Maia (BCC, 2024) + + + +Kão +: *3 balões, 110 minutos de penalidade, 326ª posição nacional, 37ª na sede* +: Camila Yuki Shibata (BCC, 2024) +: Leonardo Prazeres Tosin (BCC, 2024) +: Raphael Gaias Wrublewski (BCC, 2024) + + + +Senior HTML Engineers +: *3 balões, 160 minutos de penalidade, 377ª posição nacional, 39ª na sede* +: Bruno Corrado Crestani (BCC, 2022) +: Leonardo Pfeng (BCC, 2024) +: Gustavo Friedrich Jakobi (BCC, 2022) + + + +The Tortured Programmers Department +: *3 balões, 204 minutos de penalidade, 422ª posição nacional, 41ª na sede* +: Juliana Zambon (BCC, 2022) +: Luize Cunha Duarte (BCC, 2022) +: Millena Suaini Costa (BCC, 2022) diff --git a/content/participacoes/1a-fase-2024/informedguess.jpg b/content/participacoes/1a-fase-2024/informedguess.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c483693cf0312a16c1f7cf5a74632431a41a5851 --- /dev/null +++ b/content/participacoes/1a-fase-2024/informedguess.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b925ee1225b8f8f89c8ed388e1247f1424f65253e5a0dcb49fb9ec0bd2de0ab1 +size 711293 diff --git a/content/participacoes/1a-fase-2024/kao.jpg b/content/participacoes/1a-fase-2024/kao.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f575453dfd2a9ea4809e9cc98b085445959c9fff --- /dev/null +++ b/content/participacoes/1a-fase-2024/kao.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da224d300e55473c9ee5f4bf8d797ec50bff5e91005a38d95765ed69206e4a82 +size 531774 diff --git a/content/participacoes/1a-fase-2024/onibus.jpg b/content/participacoes/1a-fase-2024/onibus.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d070c54aa5e5da39bad8d8ed10bb0b59116944e4 --- /dev/null +++ b/content/participacoes/1a-fase-2024/onibus.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af62da8025bb4cfea5b85442182daa8b4299174921d1d846e39be3e0b344f230 +size 826352 diff --git a/content/participacoes/1a-fase-2024/programacaocasual.jpg b/content/participacoes/1a-fase-2024/programacaocasual.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f9571d44971ba995ac10b2efa095a644a5d00fc --- /dev/null +++ b/content/participacoes/1a-fase-2024/programacaocasual.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34674e57c6596bd89c66a02788bf7f701973359cad3bd7a6803170ccf5ac939b +size 654172 diff --git a/content/participacoes/1a-fase-2024/seniorhtml.jpg b/content/participacoes/1a-fase-2024/seniorhtml.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67ebbfb5147bb6c18daa14f70366297cc2538d00 --- /dev/null +++ b/content/participacoes/1a-fase-2024/seniorhtml.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31aa30892d247b63dba7bd00795f9da416dabc63895fda0475c6d5031203b422 +size 606779 diff --git a/content/participacoes/1a-fase-2024/torturedprogrammers.jpg b/content/participacoes/1a-fase-2024/torturedprogrammers.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb414103a40da1cc423bb795e121bfeab43eb5f1 --- /dev/null +++ b/content/participacoes/1a-fase-2024/torturedprogrammers.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34c004688071b241ea8b0ee773bc9ee95b656642948488a7f59359321d96fa2 +size 673384 diff --git a/content/participacoes/1a-fase-2024/tremboys.jpg b/content/participacoes/1a-fase-2024/tremboys.jpg new file mode 100644 index 0000000000000000000000000000000000000000..194de8da477d9d1cf46ef510278b268215f6afc6 --- /dev/null +++ b/content/participacoes/1a-fase-2024/tremboys.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3055c1625317d9d2653bd0fa1300a01661d17104e491fe52129f70e3aab9ab7f +size 560884 diff --git a/content/participacoes/1a-fase-2024/trepacolinas.jpg b/content/participacoes/1a-fase-2024/trepacolinas.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bfd674716c8c184b3d1bff1248a4e229eb80071 --- /dev/null +++ b/content/participacoes/1a-fase-2024/trepacolinas.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b306640f0a28bd76e911b1ab8d4ed9d3d99edc5ceb6e10f07daaf5943bd396 +size 598715 diff --git a/content/participacoes/_index.md b/content/participacoes/_index.md new file mode 100644 index 0000000000000000000000000000000000000000..d4eb7f130a5a28e06098ac57981e82fcc6794f12 --- /dev/null +++ b/content/participacoes/_index.md @@ -0,0 +1,8 @@ +--- +title: Participações em Competições +--- + +A Universidade Federal do Paraná vem sendo representada na Maratona SBC de Programação desde 2006! Nos 17 anos de participações, a universidade conseguiu acumular 16 classificações para a final nacional, conquistando nelas 4 medalhas: duas de bronze, uma de prata e uma de ouro! Além disso, a UFPR se classificou e participou da final mundial (o ICPC) 3 vezes! + +* [Página oficial da Maratona SBC de Programação](https://maratona.sbc.org.br/) +* [Mapa de cidades onde a UFPR participou](http://u.osmfr.org/m/622011/) diff --git a/data/authors/fmkiotheka.json b/data/authors/fmkiotheka.json new file mode 100644 index 0000000000000000000000000000000000000000..1f335c66e3795d9e59b6d6e151c6ebc6cbe39a97 --- /dev/null +++ b/data/authors/fmkiotheka.json @@ -0,0 +1,8 @@ +{ + "name": "Fernando Monteiro Kiotheka", + "image" : "fernando.jpg", + "bio": "Coordenador do Capimara UFPR", + "social": [ + { "codeforces": "https://codeforces.com/profile/fer22f" } + ] +} diff --git a/i18n/pt-BR.yaml b/i18n/pt-BR.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c8d77eb704eb4c5ce140c7df1d44c106b45ab557 --- /dev/null +++ b/i18n/pt-BR.yaml @@ -0,0 +1,68 @@ +global: + language: "PT-BR" + +article: + anchor_label: "Âncora" + date: "{{ .Date }}" + date_updated: "Atualizado em: {{ .Date }}" + draft: "Rascunho" + edit_title: "Editar Conteúdo" + reading_time: + one: "{{ .Count }} minuto" + other: "{{ .Count }} minutos" + reading_time_title: "Tempo de leitura" + table_of_contents: "Tabela de conteúdos" + word_count: + one: "{{ .Count }} palavra" + other: "{{ .Count }} palavras" + views: + one: "{{ .Count }} visualização" + other: "{{ .Count }} visualizaçōes" + part_of_series: "Este artigo faz parte de uma série de artigos." + part: "Parte" + this_article: "Esse Artigo" + related_articles: "Relacionados" + +author: + byline_title: "Autor" + +code: + copy: "Copiar" + copied: "Copiado" + +error: + 404_title: "Página não encontrada :confused:" + 404_error: "Erro 404" + 404_description: "Aparentemente a página requisitada não existe." + +footer: + dark_appearance: "Mudar para modo escuro" + light_appearance: "Mudar para modo claro" + powered_by: "Movido por {{ .Hugo }} & {{ .Theme }}" + +list: + externalurl_title: "Link para site externo" + no_articles: "Não tem artigos para listar aqui ainda." + +nav: + scroll_to_top_title: "Ir para o topo" + skip_to_main: "Ir para o conteúdo principal" + +search: + open_button_title: "Pesquisar (/)" + close_button_title: "Fechar (Esc)" + input_placeholder: "Pesquisar" + +sharing: + email: "Enviar por email" + facebook: "Compartilhar pelo Facebook" + linkedin: "Compartilhar pelo LinkedIn" + pinterest: "Pin no Pinterest" + reddit: "Postar no Reddit" + twitter: "Tweet no Twitter" + +shortcode: + recent_articles: "Recente" + +recent: + show_more: "Mostrar Mais" diff --git a/layouts/fotos/single.html b/layouts/fotos/single.html new file mode 100644 index 0000000000000000000000000000000000000000..5d38299df7fbd5cb485fe32811d6199c167393e2 --- /dev/null +++ b/layouts/fotos/single.html @@ -0,0 +1,198 @@ +{{ define "main" }} +{{ .Scratch.Set "scope" "single" }} + +<article> + {{ if .Params.showHero | default (.Site.Params.article.showHero | default false) }} + {{ $heroStyle := .Params.heroStyle }} + {{ if not $heroStyle }}{{ $heroStyle = .Site.Params.article.heroStyle }}{{ end }} + {{ $heroStyle := print "partials/hero/" $heroStyle ".html" }} + {{ if templates.Exists $heroStyle }} + {{ partial $heroStyle . }} + {{ else }} + {{ partial "partials/hero/basic.html" . }} + {{ end }} + {{ end }} + + <header id="single_header" class="mt-5 max-w-prose"> + {{ partial "partials/breadcrumbsfotos.html" . }} + <h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral"> + {{ .Title | emojify }} + </h1> + <div class="mt-1 mb-6 text-base text-neutral-500 dark:text-neutral-400 print:hidden"> + {{ partial "article-meta/basic.html" (dict "context" . "scope" "single") }} + </div> + + {{ $authorsData := .Site.Data.authors }} + {{ $taxonomies := .Site.Taxonomies.authors }} + {{ $baseURL := .Site.BaseURL }} + {{ $taxonomyLink := 0 }} + {{ $showAuthor := 0 }} + + {{ if not (strings.HasSuffix $baseURL "/") }} + {{ $baseURL = delimit (slice $baseURL "/") "" }} + {{ end }} + + {{ if not (.Params.showAuthorBottom | default ( .Site.Params.article.showAuthorBottom | default false)) }} + + {{ if .Params.showAuthor | default (.Site.Params.article.showAuthor | default true) }} + {{ $showAuthor = 1 }} + {{ partial "author.html" . }} + {{ end }} + + {{ range $author := .Page.Params.authors }} + {{ $authorData := index $authorsData $author }} + {{- if $authorData -}} + {{ range $taxonomyname, $taxonomy := $taxonomies }} + {{ if (eq $taxonomyname $author) }} + {{ $taxonomyLink = delimit (slice $baseURL "authors/" $author "/") "" }} + {{ end }} + {{ end }} + {{ partial "author-extra.html" (dict "context" . "data" $authorData "link" $taxonomyLink) }} + {{- end -}} + {{ end }} + + {{ if or $taxonomyLink $showAuthor }} + <div class="mb-5"></div> + {{ end }} + + {{ end }} + + </header> + + <section class="flex flex-col max-w-full mt-0 prose dark:prose-invert lg:flex-row"> + + {{ if or (and (.Params.showTableOfContents | default (.Site.Params.article.showTableOfContents | default false)) (in + .TableOfContents "<ul")) (.Site.Params.article.showRelatedPosts | default false) }} <div + class="order-first lg:ml-auto px-0 lg:order-last ltr:lg:pl-8 rtl:lg:pr-8"> + <div class="toc ltr:pl-5 rtl:pr-5 print:hidden lg:sticky {{ if hasPrefix .Site.Params.header.layout "fixed" -}} + lg:top-[140px]{{ else }}lg:top-10{{ end }}"> + + {{ if and (.Params.showTableOfContents | default (.Site.Params.article.showTableOfContents | default false)) (in + .TableOfContents "<ul") }} {{ partial "toc.html" . }} {{ end }} {{ if .Site.Params.article.showRelatedPosts | + default false }} sd {{ end }} </div> + </div> + {{ end }} + + <div class="min-w-0 min-h-0 max-w-fit"> + {{ partial "series/series.html" . }} + + <div class="article-content max-w-prose mb-20"> + {{ .Content }} + {{ $images := slice }} + {{ range $image := .Resources.ByType "image" }} + {{ $title := "" }} + {{ $date := "" }} + {{ with $image.Exif }} + {{ $date = .Date }} + {{ with .Tags.ImageDescription }} + {{/* Title from EXIF ImageDescription */}} + {{ $title = . }} + {{ end }} + {{ end }} + {{ if ne $image.Title $image.Name }} + {{/* Title from front matter */}} + {{ $title = $image.Title }} + {{ end }} + {{ $images = $images | append (dict + "Name" $image.Name + "Title" $title + "Date" $date + "image" $image + ) + }} + {{ end }} + <div style="display: flex; flex-wrap: wrap; justify-content: center"> + {{ range sort $images (.Params.sort_by | default "Name") (.Params.sort_order | default "asc") }} + {{ $image := .image }} + {{ $thumbnail := $image.Filter (slice images.AutoOrient (images.Process "fit 600x600")) }} + {{ $full := $image.Filter (slice images.AutoOrient (images.Process "fit 1600x1600")) }} + {{ $color := index $thumbnail.Colors 0 | default "transparent" }} + <a class="gallery-item" href="{{ $image.RelPermalink }}" title="{{ .Title }}" itemscope itemtype="https://schema.org/ImageObject" style="aspect-ratio: {{ $thumbnail.Width }} / {{ $thumbnail.Height }}"> + <img loading="lazy" style="width: 198px; height: 198px; object-fit: cover; margin: 0" class="nozoom" width="{{ $thumbnail.Width }}" height="{{ $thumbnail.Height }}" src="{{ $thumbnail.RelPermalink }}" alt="{{ .Title }}" /> + <meta itemprop="contentUrl" content="{{ $image.RelPermalink }}" /> + {{ with site.Params.Author }} + <span itemprop="creator" itemtype="https://schema.org/Person" itemscope> + <meta itemprop="name" content="{{ site.Params.Author.name }}" /> + </span> + {{ end }} + </a> + {{ end }} + </div> + {{ $defaultReplyByEmail := .Site.Params.replyByEmail }} + {{ $replyByEmail := default $defaultReplyByEmail .Params.replyByEmail }} + {{ if $replyByEmail }} + <strong class="block mt-8"> + <a target="_blank" + class="m-1 rounded bg-neutral-300 p-1.5 text-neutral-700 hover:bg-primary-500 hover:text-neutral dark:bg-neutral-700 dark:text-neutral-300 dark:hover:bg-primary-400 dark:hover:text-neutral-800" + href="mailto:{{ .Site.Params.Author.email }}?subject={{ replace (printf "Reply to %s" .Title) "\"" "'" }}"> + Reply by Email + </a> + </strong> + {{ end }} + </div> + + {{ if (.Params.showAuthorBottom | default ( .Site.Params.article.showAuthorBottom | default false)) }} + + {{ if .Params.showAuthor | default (.Site.Params.article.showAuthor | default true) }} + {{ $showAuthor = 1 }} + {{ partial "author.html" . }} + {{ end }} + + {{ range $author := .Page.Params.authors }} + {{ $authorData := index $authorsData $author }} + {{- if $authorData -}} + {{ range $taxonomyname, $taxonomy := $taxonomies }} + {{ if (eq $taxonomyname $author) }} + {{ $taxonomyLink = delimit (slice $baseURL "authors/" $author "/") "" }} + {{ end }} + {{ end }} + {{ partial "author-extra.html" (dict "context" . "data" $authorData "link" $taxonomyLink) }} + {{- end -}} + {{ end }} + + {{ if or $taxonomyLink $showAuthor }} + <div class="mb-10"></div> + {{ end }} + + {{ end }} + + {{ partial "series/series-closed.html" . }} + {{ partial "sharing-links.html" . }} + {{ partial "related.html" . }} + </div> + + {{ $translations := .AllTranslations }} + {{ with .File }} + {{ $path := .Path }} + {{range $translations}} + {{ $lang := print "." .Lang ".md" }} + {{ $path = replace $path $lang ".md" }} + {{end}} + <script> + var oid = "views_{{ $path }}" + var oid_likes = "likes_{{ $path }}" + </script> + {{ $jsPage := resources.Get "js/page.js" }} + {{ $jsPage = $jsPage | resources.Minify | resources.Fingerprint "sha512" }} + <script type="text/javascript" src="{{ $jsPage.RelPermalink }}" integrity="{{ $jsPage.Data.Integrity }}"></script> + {{ end }} + + </section> + <footer class="pt-8 max-w-prose print:hidden"> + + {{ partial "article-pagination.html" . }} + {{ if .Params.showComments | default (.Site.Params.article.showComments | default false) }} + {{ if templates.Exists "partials/comments.html" }} + <div class="pt-3"> + <hr class="border-dotted border-neutral-300 dark:border-neutral-600" /> + <div class="pt-3"> + {{ partial "comments.html" . }} + </div> + </div> + {{ else }} + {{ warnf "[BLOWFISH] Comments are enabled for %s but no comments partial exists." .File.Path }} + {{ end }} + {{ end }} + </footer> +</article> +{{ end }} diff --git a/layouts/partials/breadcrumbsfotos.html b/layouts/partials/breadcrumbsfotos.html new file mode 100644 index 0000000000000000000000000000000000000000..c231af7ef6d750ddab4c3e00292f2c2d6f4f649f --- /dev/null +++ b/layouts/partials/breadcrumbsfotos.html @@ -0,0 +1,17 @@ +<ol class="text-sm text-neutral-500 dark:text-neutral-400 print:hidden"> +{{ template "crumb" (dict "p1" (.GetPage (replace .RelPermalink "/fotos/" "/")) "p2" .) }} +</ol> +{{ define "crumb" }} + {{ template "crumb" (dict "p1" .p1.Parent .p2 ) }} + <li class="inline {{ if or (eq .p1 .p2) (.p1.IsHome) }}hidden{{ end }}"> + <a + class="hover:underline decoration-neutral-300 dark:underline-neutral-600" + href="{{ .p1.RelPermalink }}" + >{{ if .p1.Title }} + {{- .p1.Title -}} + {{ else }} + {{- .p1.Section -}} + {{ end }}</a + ><span class="px-1 text-primary-500">/</span> + </li> +{{ end }}