sources
Data license: CC-BY
2 rows where datasetId = 5916 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
29554 | Karl Rupp, Microprocessor Trend Data (2022) | { "link": "https://github.com/karlrupp/microprocessor-trend-data", "retrievedDate": "2023-03-08", "additionalInfo": "\nThis data comes from a repository of microprocessor trend data maintained by Karl Rupp on GitHub.\n\nWhere data for several microprocessors is given for a single year, we have shown the highest transistor count per chip of that year.\n", "dataPublishedBy": "Karl Rupp, Microprocessor Trend Data (2022)" } |
2023-12-14 12:02:57 | 2024-07-08 17:24:45 | Karl Rupp, Microprocessor Trend Data (2022) 5916 | This data comes from a repository of microprocessor trend data maintained by Karl Rupp on GitHub. Where data for several microprocessors is given for a single year, we have shown the highest transistor count per chip of that year. | https://github.com/karlrupp/microprocessor-trend-data | Karl Rupp, Microprocessor Trend Data (2022) |
27421 | Karl Rupp, Microprocessor Trend Data (2022) | { "link": "https://github.com/karlrupp/microprocessor-trend-data", "retrievedDate": "2023-03-08", "additionalInfo": "This data comes from a repository of microprocessor trend data maintained by Karl Rupp on GitHub.\n\nWhere data for several microprocessors is given for a single year, we have shown the highest transistor count per chip of that year.\n", "dataPublishedBy": "Karl Rupp, Microprocessor Trend Data (2022)" } |
2023-03-09 17:11:09 | 2024-07-08 17:24:45 | Karl Rupp, Microprocessor Trend Data (2022) 5916 | This data comes from a repository of microprocessor trend data maintained by Karl Rupp on GitHub. Where data for several microprocessors is given for a single year, we have shown the highest transistor count per chip of that year. | https://github.com/karlrupp/microprocessor-trend-data | Karl Rupp, Microprocessor Trend Data (2022) |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");