mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
update computing-network
This commit is contained in:
parent
5172c55527
commit
bc8e192ef7
8 changed files with 25 additions and 18 deletions
|
@ -5,6 +5,7 @@ description: Privacy-enhancing public blockchain with instant finality.
|
||||||
ecosystem: Aleph
|
ecosystem: Aleph
|
||||||
links:
|
links:
|
||||||
github: https://github.com/aleph-zero-foundation
|
github: https://github.com/aleph-zero-foundation
|
||||||
linkedin: https://alephzero.org/the-team
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: https://alephzero.org/the-team
|
||||||
|
|
|
@ -5,6 +5,7 @@ description: a decentralized, privacy-preserving smart contract platform.
|
||||||
ecosystem: multichain
|
ecosystem: multichain
|
||||||
links:
|
links:
|
||||||
github: https://github.com/findoranetwork
|
github: https://github.com/findoranetwork
|
||||||
linkedin: https://findora.org/team/
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: https://findora.org/team/
|
||||||
|
|
|
@ -3,8 +3,9 @@ categories:
|
||||||
- computing-network
|
- computing-network
|
||||||
description: The Secure Processing Layer of Web3.
|
description: The Secure Processing Layer of Web3.
|
||||||
ecosystem: multichain
|
ecosystem: multichain
|
||||||
links:
|
links: {}
|
||||||
linkedin: >-
|
|
||||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: >-
|
||||||
|
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU
|
||||||
|
|
|
@ -5,6 +5,7 @@ description: Privacy-Enhanced Permissionless Computing Protocol.
|
||||||
ecosystem: Khala on Kusama
|
ecosystem: Khala on Kusama
|
||||||
links:
|
links:
|
||||||
github: https://github.com/Phala-Network
|
github: https://github.com/Phala-Network
|
||||||
linkedin: https://www.phala.network/en/aboutUs/
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: https://www.phala.network/en/aboutUs/
|
||||||
|
|
|
@ -8,7 +8,8 @@ description: >-
|
||||||
ecosystem: Alaya
|
ecosystem: Alaya
|
||||||
links:
|
links:
|
||||||
github: https://github.com/PlatONnetwork
|
github: https://github.com/PlatONnetwork
|
||||||
linkedin: >-
|
|
||||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: >-
|
||||||
|
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz
|
||||||
|
|
|
@ -6,8 +6,8 @@ description: >-
|
||||||
facilitate secure sharing between different parties so data still can be
|
facilitate secure sharing between different parties so data still can be
|
||||||
processed.
|
processed.
|
||||||
ecosystem: multipurpose
|
ecosystem: multipurpose
|
||||||
links:
|
links: {}
|
||||||
github: '-'
|
|
||||||
linkedin: https://www.privasea.tech/about
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: https://www.privasea.tech/about
|
||||||
|
|
|
@ -3,9 +3,9 @@ categories:
|
||||||
- computing-network
|
- computing-network
|
||||||
description: Decentralized, Private Computing.
|
description: Decentralized, Private Computing.
|
||||||
ecosystem: Aleo
|
ecosystem: Aleo
|
||||||
links:
|
links: {}
|
||||||
github: '-'
|
|
||||||
linkedin: >-
|
|
||||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2242785598%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=6tr
|
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
link: >-
|
||||||
|
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2242785598%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=6tr
|
||||||
|
|
|
@ -42,13 +42,15 @@ async function genCat(cat) {
|
||||||
description: p.Description,
|
description: p.Description,
|
||||||
ecosystem: p.Ecosystem,
|
ecosystem: p.Ecosystem,
|
||||||
links: {
|
links: {
|
||||||
github: p.GitHub,
|
github: p.GitHub && p.GitHub !== '-' ? p.GitHub : undefined,
|
||||||
linkedin: p.TeamLink,
|
|
||||||
},
|
},
|
||||||
team: {
|
team: {
|
||||||
anonymous: p.Team !== "Public",
|
anonymous: p.Team !== "Public"
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
if (p.TeamLink && p.TeamLink !== '') {
|
||||||
|
out.team.company = { link: p.TeamLink }
|
||||||
|
}
|
||||||
const yml = yaml.dump(out);
|
const yml = yaml.dump(out);
|
||||||
await Deno.writeTextFile(`${pDir}/index.yaml`, yml);
|
await Deno.writeTextFile(`${pDir}/index.yaml`, yml);
|
||||||
//console.log(id, yml)
|
//console.log(id, yml)
|
||||||
|
|
Loading…
Reference in a new issue