Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"development"
]
}
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# ComputeHistory
A general history of computing
# Compute History

A general history of computing from rocks to Skynet

## Usage

- Data will be stored in the data directory as single JSON documents and then an action will combine them into a single file.
- UI - Web UI - preferrably self contained with D3 and static JSON loading
Empty file added UI/.gitkeep
Empty file.
13 changes: 13 additions & 0 deletions UI/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>History</title>
</head>

<body>

</body>

</html>
Empty file added UI/static/css/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions UI/static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* Site CSS */
Empty file added UI/static/images/.gitkeep
Empty file.
Empty file added UI/static/js/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions UI/static/js/site.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Site JS
Empty file added data/.gitkeep
Empty file.
11 changes: 11 additions & 0 deletions data/event_sample.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
id:1,
title:"demo",
year: 0,
date: "",
description: "",
urls: [],
related_events: [],
people_involved: [],
tags: []
}
Empty file added errata/.gitkeep
Empty file.