-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5cd3cad
commit 57c5117
Showing
9 changed files
with
74 additions
and
23 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
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,38 @@ | ||
[ | ||
{ | ||
"org": { | ||
"name": "Black Python Devs", | ||
"url": "https://github.com/blackpythondevs" | ||
}, | ||
"repos": [ | ||
{ | ||
"name": "Black Python Devs", | ||
"url": "https://github.com/blackpythondevs/blackpythondevs", | ||
"description": "This is the base operating Documentation for Black Python Devs" | ||
}, | ||
{ | ||
"name": "Black Python Devs Website", | ||
"url": "https://github.com/blackpythondevs/blackpythondevs.github.io", | ||
"description": "The jekyll website that routes to BlackPythonDevs.com" | ||
} | ||
] | ||
}, | ||
{ | ||
"org": { | ||
"name": "DAGWorks-Inc", | ||
"url": "https://github.com/DAGWorks-Inc" | ||
}, | ||
"repos": [ | ||
{ | ||
"name": "Hamilton", | ||
"url": "https://github.com/DAGWorks-Inc/hamilton", | ||
"description": "Hamilton helps data scientists and engineers define testable, modular, self-documenting dataflows, that encode lineage/tracing and metadata. Runs and scales everywhere python does." | ||
}, | ||
{ | ||
"name": "Burr", | ||
"url": "https://github.com/DAGWorks-Inc/burr", | ||
"description": "Build applications that make decisions (chatbots, agents, simulations, etc...). Monitor, trace, persist, and execute on your own infrastructure." | ||
} | ||
] | ||
} | ||
] |
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,3 @@ | ||
<h2>Applications for the next Cohort are currently closed</h2> | ||
|
||
We will announce when the program will reopen in our newsletter. Sign up today. {% include newsletter_form.html newsletter_title='Sign Up' %} |
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,13 @@ | ||
<h2>Applications for the next Cohort are now open</h2> | ||
|
||
<p>The next cohort is now seeking contributors and mentors to collaborate on the following projects:</p> | ||
|
||
{% for org in site.data.open_source_program %} | ||
<h3><a href="{{org.url}}">{{org.name}}</a></h3> | ||
|
||
<ul> | ||
{% for repo in org.repos %} | ||
<li><a href="{{repo.url}}">{{repo.name}}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endfor %} |
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,14 @@ | ||
--- | ||
layout: article | ||
open: false | ||
--- | ||
|
||
<main> | ||
{{content}} | ||
</main> | ||
|
||
{% if open %} | ||
{% include open_source_program/program_opened.html %} | ||
{% else %} | ||
{% include open_source_program/program_closed.html %} | ||
{% endif %} |
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