sources
Data license: CC-BY
1 row where datasetId = 1855 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 |
---|---|---|---|---|---|---|---|---|
13166 | Watts per MIPS - Ray Kurzweil | { "link": "http://www.singularity.com/charts/page129.html", "retrievedDate": "2017-12-01", "additionalInfo": "Computing efficiency is measured as the number of watts used per computation/operation per second. Here it is measured in Watts per MIPS (Millions of instructions per second). ", "dataPublishedBy": "Ray Kurzweil (2005, updated to 2015). The Singularity Is Near: When Humans Transcend Biology.", "dataPublisherSource": null } |
2017-12-01 16:11:14 | 2017-12-01 16:12:44 | Watts per MIPS- Kurzweil 1855 | Computing efficiency is measured as the number of watts used per computation/operation per second. Here it is measured in Watts per MIPS (Millions of instructions per second). | http://www.singularity.com/charts/page129.html | Ray Kurzweil (2005, updated to 2015). The Singularity Is Near: When Humans Transcend Biology. |
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");