Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Sep 29, 2024
1 parent a6e2aca commit 8b00c97
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Computer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1044,6 +1044,17 @@ ${maintainersLinks}
facts.push(`Early development of ${title} happened in ${labStr}`)
}

const influencedBy = this.get("influencedBy")
if (influencedBy)
facts.push(
influencedBy
.split(" ")
.map(link => this.makeATag(link))
.join(" and ") +
" influenced the design of " +
title
)

const { numberOfJobsEstimate } = this
const jobs = numberOfJobsEstimate > 10 ? numeral(numberOfJobsEstimate).format("0a") : ""
if (jobs) facts.push(`PLDB estimates there are currently ${jobs} job openings for ${title} programmers.`)
Expand Down
2 changes: 1 addition & 1 deletion concepts/ethernet.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
id ethernet
name Ethernet
appeared 1973
creators
creators Robert Metcalfe
tags protocol
oldName Alto Aloha Network
lab Xerox PARC
Expand Down

0 comments on commit 8b00c97

Please sign in to comment.