You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+27
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,30 @@
1
+
# Adding new experiments
2
+
3
+
1. Create a new folder in the root of the repository.
4
+
2. Add your and your team GitHub handles into the [`CODEOWNERS`](./CODEOWNERS) file. See [documentation](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location). Please keep the list of folder sorted alphabetically.
5
+
3. Create a `README.md` file in the root of your folder and add frontmatter metadata on top of it. Please keep `Your awesome project title` under 55-60 characters. There'll be linting ruled added automatically.
6
+
7
+
```
8
+
---
9
+
title: "Your awesome project title"
10
+
language: python
11
+
author: "Your Name"
12
+
date: 2022-10-15
13
+
14
+
tags:
15
+
- list
16
+
- of
17
+
- awesome
18
+
- tags
19
+
---
20
+
21
+
# Your awesome project title
22
+
23
+
... markdown documentation about your project. People will be reading it.
24
+
```
25
+
26
+
4. Create a branch and push it to this repository either with a fork (if you're not added directly) and create a pull request. Reviewers will be automatically assigned.
Copy file name to clipboardExpand all lines: database-diagram-builder/README.md
+15
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,18 @@
1
+
---
2
+
title: "UML diagram builder for specified Spark Databases"
3
+
language: python
4
+
author: "Alex Ott"
5
+
date: 2022-10-15
6
+
7
+
tags:
8
+
- spark
9
+
- diagrams
10
+
- uml
11
+
- notebook
12
+
- plantuml
13
+
- script
14
+
---
15
+
1
16
## Generates UML diagram for specified Spark databases
2
17
3
18
Generates [PlantUML](https://plantuml.com/) diagram for all, or selected databases registered in Databricks/Spark. Generated UML diagram then could be converted into PDF/SVG/PNG or other formats using `plantuml` command-line tool.
Copy file name to clipboardExpand all lines: ip_access_list_analyzer/README.md
+14
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,17 @@
1
+
---
2
+
title: "Analyzer/fix tool for Databricks IP Access Lists"
3
+
language: python
4
+
author: "Alex Ott"
5
+
date: 2022-10-15
6
+
7
+
tags:
8
+
- workspaces
9
+
- security
10
+
- ip-access-lists
11
+
- script
12
+
- installable
13
+
---
14
+
1
15
# Analyzer/fix tool for Databricks IP Access Lists
2
16
3
17
This tool is used to perform analysis of the [Databricks IP Access Lists for Workspaces](https://docs.databricks.com/security/network/ip-access-list-workspace.html) to identify problems, like:
0 commit comments