Skip to content

Commit 1172909

Browse files
authored
Merge pull request #152 from InnerSourceCommons/feat/add-sao-paolo
feat: add sao paulo gathering
2 parents 3183958 + 874f968 commit 1172909

40 files changed

+3032
-0
lines changed

sao-paolo-2025/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
node_modules/

sao-paolo-2025/archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---

sao-paolo-2025/config.toml

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
######################## default configuration ####################
2+
baseURL = "https://gatherings.innersourcecommons.org/sao-paulo-2025"
3+
title = "InnerSource Gathering Sao Paulo 2025"
4+
themesDir = "../themes"
5+
theme = "gathering-theme"
6+
# post pagination
7+
pagination.pagerSize = "4"
8+
# post excerpt
9+
summaryLength = "10"
10+
# disqus short name
11+
disqusShortname = "" # get your shortname form here : https://disqus.com
12+
# disable language
13+
disableLanguages = [] # desable language from here
14+
15+
# output
16+
[outputs]
17+
home = ["HTML", "RSS", "JSON"]
18+
19+
[markup]
20+
defaultMarkdownHandler = "goldmark"
21+
22+
[markup.goldmark]
23+
[markup.goldmark.renderer]
24+
unsafe = true
25+
26+
############################# Plugins ##############################
27+
# CSS Plugins
28+
[[params.plugins.css]]
29+
link = "plugins/bootstrap/css/bootstrap.min.css"
30+
[[params.plugins.css]]
31+
link = "plugins/themefisher-font/themefisher-font.min.css"
32+
33+
# JS Plugins
34+
[[params.plugins.js]]
35+
link = "plugins/jquery/jquery.js"
36+
[[params.plugins.js]]
37+
link = "plugins/bootstrap/js/bootstrap.min.js"
38+
[[params.plugins.js]]
39+
link = "plugins/syotimer/syotimer.min.js"
40+
[[params.plugins.js]]
41+
link = "plugins/search/fuse.min.js"
42+
[[params.plugins.js]]
43+
link = "plugins/search/mark.js"
44+
[[params.plugins.js]]
45+
link = "plugins/search/search.js"
46+
[[params.plugins.js]]
47+
link = "plugins/google-map/map.js"
48+
49+
############################## navigation ###############################
50+
[menu]
51+
52+
[[menu.main]]
53+
name = "About"
54+
URL = "about"
55+
weight = 2
56+
57+
[[menu.main]]
58+
name = "FAQ"
59+
URL = "faq"
60+
weight = 5
61+
62+
[[menu.main]]
63+
name = "Contact"
64+
URL = "contact"
65+
weight = 6
66+
67+
#################### default parameters ################################
68+
[params]
69+
logo = "images/gathering-sao-paolo-2025.png"
70+
home = "Home"
71+
# Meta data
72+
description = "InnerSource Gathering Sao Paulo 2025!"
73+
author = "InnerSource Gathering Organizors"
74+
# email address
75+
email = "gathering@innersource.org"
76+
# Google Analitycs
77+
google_analitycs_id = "" # your id
78+
# search for blog page
79+
search = true
80+
images = ["images/ogp/ogp.jpeg"]
81+
82+
# Preloader
83+
[params.preloader]
84+
enable = true
85+
preloader = "" # use jpg, png, svg or gif format.
86+
87+
# Navigation button
88+
[params.navigation_button]
89+
enable = false
90+
label = "Registration"
91+
link = "https://lu.ma/4uoqrods"
92+
93+
# google map
94+
[params.map]
95+
enable = true
96+
gmap_api = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBu5nZKbeK-WHQ70oqOWo-_4VmwOwKP9YQ"
97+
map_latitude = "35.6678347"
98+
map_longitude = "139.7500377,15"
99+
map_marker = "images/marker.png"
100+
101+
102+
############################# social icon ############################
103+
[[params.social]]
104+
icon = "tf-ion-social-twitter"
105+
link = "https://twitter.com/InnerSourceOrg"
106+
107+
[[params.social]]
108+
icon = "tf-ion-social-linkedin"
109+
link = "https://www.linkedin.com/company/innersourcecommons/"
110+
111+
[[params.social]]
112+
icon = "tf-ion-social-youtube"
113+
link = "https://www.youtube.com/@InnerSourceCommons"
114+
115+
################################### English language #####################################
116+
[Languages.en]
117+
languageName = "En"
118+
languageCode = "en-us"
119+
contentDir = "content"
120+
weight = 1
121+
# copyright
122+
copyright = """
123+
[CoC](https://innersourcecommons.org/ja/about/codeofconduct/) | © InnerSource Gathering Tokyo executive committee
124+
"""
125+
[Languages.en.params]
126+
home = "Home"
127+
# footer content
128+
footer_content = """
129+
InnerSource Commons is a global community for InnerSource. Established in 2015, it now supports and connects over 3,000 individuals from more than 750 companies, academic institutions, and government agencies. The community shares how to get started with InnerSource and its best practices while fostering discussions about InnerSource values and principles.
130+
"""
131+
############################# Organizers ############################
132+
# Executive Members
133+
[params.organizers]
134+
enable = false
135+
head = "Organizers"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "About"
3+
date: 2024-01-10T13:51:25+06:00
4+
draft: false
5+
description: "インナーソースとは"
6+
bg_image: "images/gathering-images/gathering-2-dark.jpg"
7+
---
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Contact"
3+
date: 2023-09-10T13:51:25+06:00
4+
draft: false
5+
description: "Contact"
6+
bg_image: "images/gathering-images/gathering-4-dark.jpg"
7+
---
8+
9+
gatherings@innersourcecommons.org

sao-paolo-2025/content/faq/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "FAQ"
3+
date: 2019-09-10T13:51:25+06:00
4+
draft: false
5+
description: "InnerSource Gathering FAQ"
6+
bg_image: "images/gathering-images/gathering-1-dark.jpg"
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "Schedule"
3+
date: 2019-09-10T13:51:25+06:00
4+
draft: false
5+
description: "this is meta description"
6+
bg_image: "images/gathering-images/gathering-4-dark.jpg"
7+
---
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Arthur Fücher"
3+
date: 2019-12-31T13:51:25+06:00
4+
draft: false
5+
description:
6+
image: "images/speakers/Arthur_Fucher.jpeg"
7+
designation: "Arthur Fücher is a Senior Developer Advocate at Nubank and a member of the InnerSource Commons Foundation. As an Agile Developer, Arthur is passionate about developing software with agile methodologies. He is also an active member of the Agile community in Brazil, organizing both Lean Coffee SP and Agile Brazil. His technical expertise includes Clojure, Flutter, and InnerSource."
8+
type: "speaker"
9+
social:
10+
---
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Eneri Junior"
3+
date: 2019-12-31T13:51:25+06:00
4+
draft: false
5+
description:
6+
image: "images/speakers/Eneri_Junior.jpeg"
7+
designation: "Eneri Junior is a Java Backend Developer at Softplan, bringing experience in backend development, software quality, and technical support to his work. He currently focuses on building solutions for public sector organizations, developing and maintaining robust and scalable systems. Eneri is actively involved in the InnerSource Latam community, notably contributing to the collaborative translation of InnerSource Patterns into Brazilian Portuguese."
8+
type: "speaker"
9+
social:
10+
---
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Fernando Eugenio Correa"
3+
date: 2019-12-31T13:51:25+06:00
4+
draft: false
5+
description:
6+
image: "images/speakers/Fernando_Correa.jpeg"
7+
designation: "Fernando Correa is a Senior Software Engineer at Mercado Livre, TODO OSPO Ambassador, and Member of the InnerSource Commons Foundation. With over 25 years of experience in software development, he has worked on a diverse range of projects, from ERP systems to financial transactions and embedded software. Since 2022, he has been involved in open source compliance, training, business strategy, community engagement and committed to promoting InnerSource. Fernando contributes to fostering the open source and InnerSource culture and communities in Latin America."
8+
type: "speaker"
9+
social:
10+
---
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Pamela Rosales"
3+
date: 2019-12-31T13:51:25+06:00
4+
draft: false
5+
description:
6+
image: "images/speakers/Pamela_Rosales.jpeg"
7+
designation: "Pamela Rosales is a seasoned IT professional with 12 years of experience leading and contributing to diverse projects. Currently a Project Leader at MercadoLibre, she's also passionate about community building as the Community Leader for Github Together Brazil. Pamela holds a Master's degree in Technology (Information and Communication Systems) from UNICAMP in Brazil and a Computer Engineering degree from PUCP in Peru."
8+
type: "speaker"
9+
social:
10+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "Speakers"
3+
date: 2019-09-10T13:51:25+06:00
4+
draft: false
5+
description: "Speakers"
6+
bg_image: "images/gathering-images/gathering-3-dark.jpg"
7+
---

sao-paolo-2025/data/en/about.yml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
Here's a translation of the provided text into English:
2+
3+
################## about #################################
4+
about:
5+
enable : true
6+
title : "What is InnerSource"
7+
content : |
8+
InnerSource means **cultivating an open source-like culture within a company and creating a culture of transparent collaboration**.<br>
9+
This concept was proposed by Tim O'Reilly in 2000 as an innovative idea.
10+
While open source involves sharing source code globally, InnerSource aims to share source code on a large scale within a company.
11+
As companies grow larger, walls between departments and products can emerge, making collaboration difficult.
12+
**InnerSource is a groundbreaking effort to solve these challenges by creating a culture of sharing across the entire organization.**
13+
14+
################## sponsor ###############################
15+
sponsor:
16+
enable : false
17+
# sponsor data comes from "homepage.yml" file
18+
19+
################## Feature ##############################
20+
feature:
21+
enable: true
22+
title: "InnerSource Principles"
23+
# subtitle: "Principles of<br>InnerSource"
24+
button:
25+
enable: true
26+
label: "Learn More"
27+
link: "https://innersourcecommons.org/learn/learning-path/introduction/05/"
28+
29+
feature_item:
30+
# feature item loop
31+
- title: "Openness"
32+
icon: "tf-ion-code" # for a collaborative, community-focused icon
33+
bg_color: "#17a2b8"
34+
content: |
35+
**Source code is made open within the organization, and anyone can freely access it.**
36+
<br/>
37+
This allows developers to reference and learn from other teams' code.
38+
Knowledge sharing becomes active, leading to overall skill improvement.
39+
40+
# feature item loop
41+
- title: "Transparency"
42+
icon: "tf-ion-qr-scanner" # for an icon symbolizing knowledge or learning
43+
bg_color: "" # defaults to dark color for a sleek look
44+
content: |
45+
**Not only the code but also the discussion process is made public.**
46+
In other words, how decisions were made is transparent.
47+
<br/>
48+
This allows developers from other teams to easily participate, and the project is recognized as a shared asset across the organization.
49+
50+
# feature item loop
51+
- title: "Prioritized<br>Mentorship"
52+
icon: "tf-ion-person-stalker" # for an icon representing innovation or ideas
53+
bg_color: "#ff4747"
54+
content: |
55+
**Prioritized support is provided to make it easier for new developers to participate.**
56+
By following the contributions of guest teams and lowering the barriers to entry, new contributions to the project continue to emerge.
57+
58+
# feature item loop
59+
- title: "Voluntary<br>Code Contribution"
60+
icon: "tf-ion-ios-heart" # for an icon depicting synchronization or processes
61+
bg_color: "#4125dd"
62+
content: |
63+
**Contribution to the project is not forced.**<br/>
64+
<br>
65+
Support from the project is also voluntary.
66+
Each team respects and collaborates with each other to drive development forward.
67+
68+
################## Resource ##############################
69+
resource:
70+
enable: true
71+
title: "Learn about InnerSource"
72+
body: "The InnerSource community provides resources to help learn about InnerSource in Japan.<br />Here are some representative resources where you can learn about InnerSource in Japanese."
73+
items:
74+
- title: Getting Started<br/>with InnerSource
75+
text: "A book to learn the basics of InnerSource."
76+
url: "https://innersourcecommons.org/learn/books/getting-started-with-innersource/"
77+
image: "https://innersourcecommons.org/images/learn/books/getting-started-with-innersource-cover-thumb.jpg"
78+
79+
- title: InnerSource<br/>Learning Path
80+
text: "A learning path to systematically acquire knowledge about InnerSource."
81+
url: "https://innersourcecommons.org/learn/"
82+
image: "images/learning-path.jpg"
83+
84+
- title: InnerSource<br/> Patterns
85+
text: "A book to learn proven InnerSource practices."
86+
url: "https://patterns.innersourcecommons.org"
87+
image: "https://github.com/InnerSourceCommons/InnerSourcePatterns/raw/main/book/en/innersource-patterns-book-cover.jpg"
88+
89+
- title: Understanding<br/>the InnerSource<br/>Checklist
90+
text: "A checklist to take your InnerSource practice one step further."
91+
url: "https://innersourcecommons.org/learn/books/understanding-the-innersource-checklist/"
92+
image: "https://innersourcecommons.org/images/learn/books/innersource-checklist-cover-thumb.jpg"
93+
94+
slack:
95+
enable: true
96+
title: Join the Slack Community
97+
body: "Join the Slack community to exchange information and ask questions about InnerSource."
98+
button:
99+
enable: true
100+
label: "Join Slack!!"
101+
link: "https://innersourcecommons.org/slack/"

sao-paolo-2025/data/en/faq.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
################################# travel ####################################
2+
faq:
3+
title_outline: "FAQ"
4+
title: "Frequently Asked Questions about InnerSource Gathering"
5+
content: "If you have any questions, please feel free to ask the organizers at the bottom right of this page."
6+
faq_item:
7+
- title: "I would like to cover the event"
8+
content: "If you wish to cover the event, you need to register in advance. Please understand that we cannot accept same-day coverage without prior registration."
9+
10+
- title: "What is the event hashtag?"
11+
content: "The official event hashtag is `#ISGT24-Returns`. Please share your impressions and insights on Twitter."
12+
13+
- title: "Is there wireless LAN Internet access at the venue?"
14+
content: "We provide wireless LAN access points for participants to use."
15+
16+
- title: "Are there power outlets at the venue?"
17+
content: "We provide power outlets for participants to use."
18+
19+
- title: "Is there a fee to participate?"
20+
content: "Participation is free of charge."
21+
22+
- title: "Will the lecture videos be archived and made public?"
23+
content: "After the conference, videos approved by the speakers will be made public."
24+
25+
- title: "Will the lecture slides be made public?"
26+
content: "The release of slides varies by session. If they are made public, the slide links will be shared on Twitter."
27+
28+
- title: "Is this an online event? Please tell me about infection control measures."
29+
content: "InnerSource Gathering is only for in-person participation. To ensure the safety of participants, we will thoroughly implement infection prevention measures at the venue based on national and local guidelines. We ask for your cooperation. The latest information about the event will be updated on Twitter from time to time."
30+
31+
- title: "Regarding confidentiality"
32+
content: |
33+
The basic rule for handling information at this conference is the Chatham House Rule.
34+
However, the handling of information varies depending on the content of the session or conversation, so please follow the instructions of the session speaker and the speaker in the end.
35+
Please check with the information provider if the information can be made public as necessary.
36+
37+
##### What is the Chatham House Rule?
38+
39+
The Chatham House Rule is a principle to promote open discussion at meetings and seminars.
40+
Participants are free to share information obtained at the meeting externally, but may not reveal the identity of the information provider or the specific meeting at which the information was shared.
41+
The main purpose of this rule is to provide a safe environment where participants can freely exchange opinions.
42+
By applying the rule, sensitive information and opinions that are not normally discussed publicly can be more easily shared as anonymity is guaranteed.
43+
44+
- title: "Regarding infection control measures"
45+
content: "InnerSource Gathering will be held in person, taking into account COVID-19 countermeasures. Following government and local guidelines, we will prioritize the safety of participants while promoting interaction among InnerSource practitioners. Depending on the situation, there is a possibility of switching to a fully online event."

0 commit comments

Comments
 (0)