-
Notifications
You must be signed in to change notification settings - Fork 947
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'current' into sortable-table
- Loading branch information
Showing
138 changed files
with
1,060 additions
and
942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
# styles/custom/BoldUIElements.yml | ||
extends: existence | ||
message: "UI elements like '%s' should be bold." | ||
level: warning | ||
tokens: | ||
# Match UI elements that are not bolded (i.e., not within **), but exclude those starting a sentence or following a list number | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bSave\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bSave as\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bCancel\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bSubmit\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bEdit\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bAccount settings\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bProject details\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bProfile settings\b' | ||
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bPersonal profile\b' | ||
# Match UI elements that are not bolded (i.e., not within **) | ||
- '(?<!\*\*)\bSave\b(?!\*\*)' | ||
- '(?<!\*\*)\bSave as\b(?!\*\*)' | ||
- '(?<!\*\*)\bCancel\b(?!\*\*)' | ||
- '(?<!\*\*)\bSubmit\b(?!\*\*)' | ||
- '(?<!\*\*)\bEdit\b(?!\*\*)' | ||
- '(?<!\*\*)\bAccount settings\b(?!\*\*)' | ||
- '(?<!\*\*)\bProject details\b(?!\*\*)' | ||
- '(?<!\*\*)\bProfile settings\b(?!\*\*)' | ||
- '(?<!\*\*)\bPersonal profile\b(?!\*\*)' | ||
- '(?<!\*\*)\bIntegrations\b(?!\*\*)' | ||
- '(?<!\*\*)\bNotification settings\b(?!\*\*)' | ||
|
||
scope: raw # Ensure the rule is applied before formatting | ||
scope: | ||
- raw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
id: christophe-oudar | ||
title: Christophe Oudar | ||
description: | | ||
I joined the dbt Community in November 2021 after exchanging some issues in Github. I currently work as a staff engineer at a scaleup in the ad tech industry called Teads, which I joined 11 years ago as a new grad. I've been using dbt Core on BigQuery since then. I write about data engineering both on <a target="_blank" rel="noopener noreferrer" href="https://medium.com/@kayrnt">Medium</a> and <a target="_blank" rel="noopener noreferrer" href="https://smallbigdata.substack.com/">Substack</a>. I contribute on <a target="_blank" rel="noopener noreferrer" href="https://github.com/dbt-labs/dbt-bigquery/">dbt-bigquery</a>. I wrote an article that was then featured on the Developer Blog called <a target="_blank" rel="noopener noreferrer" href="https://docs.getdbt.com/blog/bigquery-ingestion-time-partitioning-and-partition-copy-with-dbt.">BigQuery ingestion-time partitioning and partition copy with dbt</a>. | ||
image: /img/community/spotlight/christophe-oudar.jpg | ||
pronouns: he/him | ||
location: Montpellier, France | ||
jobTitle: Staff Engineer | ||
companyName: Teads | ||
socialLinks: | ||
- name: X | ||
link: https://x.com/Kayrnt | ||
- name: LinkedIn | ||
link: https://www.linkedin.com/in/christopheoudar/ | ||
- name: Substack | ||
link: https://smallbigdata.substack.com/ | ||
dateCreated: 2024-11-08 | ||
hide_table_of_contents: true | ||
communityAward: true | ||
communityAwardYear: 2024 | ||
--- | ||
|
||
## When did you join the dbt community and in what way has it impacted your career? | ||
|
||
I joined the community in November 2021 as a way to explore how to move our in-house data modeling layer to dbt. The transition took over a year while we ensured we could cover all our bases and add missing features to dbt-bigquery. That project was one of stepping stones that helped me to move from senior to staff level at my current job. | ||
|
||
## What dbt community leader do you identify with? How are you looking to grow your leadership in the dbt community? | ||
|
||
I identify with leaders that have strong convictions about how data engineering should move forward but remain open to innovation and ideas from everyone to bring the best to the field and make it as inclusive as possible to all cultures and profiles. I think that could mean people like Jordan Tigani or Mark Raasveldt. In the dbt community, my leadership has looked like helping people struggling and offering better ways to simplify one's day to day work when possible. | ||
|
||
## What have you learned from community members? What do you hope others can learn from you? | ||
|
||
I read a lot of articles about dbt, especially when I got started with it. It helped me a lot to build a proper Slim CI that could fit my company's ways of working. I also got to see how data pipelines were done in other companies and the pros and cons of my approaches. I hope I can share more of that knowledge for people to pick what's best for their needs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.