add projects

This commit is contained in:
tree🌴 2024-01-25 21:38:08 +01:00
parent 0e83c3897f
commit d436c7f2f6
7 changed files with 165 additions and 66 deletions

View File

@ -1,55 +0,0 @@
$defs:
event:
type: object
additionalProperties: false
required:
- id
- date
- city
- country
properties:
id:
type: string
type:
type: string
enum:
- summit
- meetup
- hackathon
confirmed:
type: boolean
date:
type: string
days:
type: number
city:
type: string
country:
type: string
pattern: "^\\w{2}$"
place:
type: string
coincidence:
type: string
lead:
type: string
helpers:
type: array
items:
type: string
slots:
type: number
visitors:
type: number
optional:
type: boolean
links:
type: object
additionalProperties: false
patternProperties:
"^[\\w]+":
type: string
format: uri
type: array
items:
$ref: "#/$defs/event"

View File

@ -1 +1,89 @@
type: object $defs:
project:
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
name:
type: string
type:
type: string
enum:
- research
links:
type: object
event:
type: object
additionalProperties: false
required:
- id
- date
- city
- country
properties:
id:
type: string
type:
type: string
enum:
- summit
- meetup
- hackathon
confirmed:
type: boolean
date:
type: string
days:
type: number
city:
type: string
country:
type: string
pattern: "^\\w{2}$"
place:
type: string
coincidence:
type: string
lead:
type: string
helpers:
type: array
items:
type: string
slots:
type: number
visitors:
type: number
optional:
type: boolean
links:
type: object
additionalProperties: false
patternProperties:
"^[\\w]+":
type: string
format: uri
type: object
additionalProperties: false
properties:
name:
type: string
links:
type: object
core-team:
type: array
projects:
type: array
items:
$ref: "#/$defs/project"
events:
type: array
items:
$ref: "#/$defs/event"

View File

@ -1,4 +1,16 @@
name: Web3Privacy Now name: Web3Privacy Now
links:
ocs: https://docs.web3privacy.info/
manifesto: https://docs.web3privacy.info/manifesto
github: https://github.com/web3privacy
twitter: https://twitter.com/web3privacy
matrix: https://matrix.web3privacy.info
bluesky: https://bsky.app/profile/web3privacy.info
mirror: https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/
youtube: https://youtube.com/@Web3PrivacyNow/
forum: https://forum.web3privacy.info
explorer: https://explorer.web3privacy.info
telegram: https://t.me/web3privacynow
core-team: core-team:
- name: Tree - name: Tree
- name: Mykola - name: Mykola

57
src/projects/index.yaml Normal file
View File

@ -0,0 +1,57 @@
- id: privacy-explorer
name: Privacy Explorer
links:
docs: https://docs.web3privacy.info/projects/privacy-explorer
- id: privacy-tech-awards
name: Privacy Tech Awards
links:
docs: https://docs.web3privacy.info/projects/privacy-tech-awards
- id: annual-report
name: Privacy Annual Report
type: research
links:
docs: https://docs.web3privacy.info/research/annual-report
- id: pagency
name: Pagency Framework for private use-case ideation
type: research
links:
docs: https://docs.web3privacy.info/research/pagency
- id: hiring
name: Privacy Projects Hiring
type: research
links:
docs: https://docs.web3privacy.info/research/hiring
- id: privacy-guides
name: Privacy Guides
type: research
links:
docs: https://docs.web3privacy.info/research/privacy-guides
- id: usecase-db
name: Privacy Use-Cases DB
type: research
links:
docs: https://docs.web3privacy.info/research/usecase-db
- id: zk-solutions
name: ZK Solutions DB
type: research
links:
docs: https://docs.web3privacy.info/research/zk-solutions
- id: hackathon-pack
name: Hackathon Curation Pack
type: research
links:
docs: https://docs.web3privacy.info/research/hackathon-pack
- id: privacy-ecosystem-report
name: "Ethereum Privacy Ecosystem: report"
type: research
links:
docs: https://docs.web3privacy.info/research/Ethereum%20Privacy%20Ecosystem

View File

@ -1 +0,0 @@
name: Pagency

View File

@ -36,18 +36,19 @@ export class Engine {
return out return out
} }
const arr = [];
for await (const dirEntry of Deno.readDir(dir)) { for await (const dirEntry of Deno.readDir(dir)) {
const [fn, ext] = dirEntry.name.split("."); const [fn, ext] = dirEntry.name.split(".");
if (!ext) { if (!ext) {
out[fn] = await this.loadDir(join(src, fn)) const obj = Object.assign({ id: fn }, await this.loadDir(join(src, fn)))
continue; arr.push(obj)
} }
if (ext === "yaml" && fn !== "index") { /*if (ext === "yaml" && fn !== "index") {
out[fn] = await readYamlFile(join(dir, dirEntry.name)); out[fn] = await readYamlFile(join(dir, dirEntry.name));
} }*/
} }
return out return arr
} }
async render(src) { async render(src) {

View File

@ -22,7 +22,4 @@ function checkCollection (name, schema, data) {
} }
// check index // check index
checkCollection("index", engine.schemas.index, engine.index) checkCollection("index", engine.schemas.index, engine.rendered)
for (const col of Object.keys(engine.db)) {
checkCollection(`collection: ${col}`, engine.schemas[col], engine.db[col])
}