website major update

This commit is contained in:
Nate Hammer 2023-05-03 17:16:32 -04:00
parent a19e773c99
commit 4021f27ae1
369 changed files with 380955 additions and 44498 deletions

View file

@ -0,0 +1,157 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found :(</title>
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
html {
padding: 30px 10px;
font-size: 20px;
line-height: 1.4;
color: #737373;
background: #f0f0f0;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
max-width: 500px;
_width: 500px;
padding: 30px 20px 50px;
border: 1px solid #b3b3b3;
border-radius: 4px;
margin: 0 auto;
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
background: #fcfcfc;
}
h1 {
margin: 0 10px;
font-size: 50px;
text-align: center;
}
h1 span {
color: #bbb;
}
h3 {
margin: 1.5em 0 0.5em;
}
p {
margin: 1em 0;
}
ul {
padding: 0 0 0 40px;
margin: 1em 0;
}
.container {
max-width: 380px;
_width: 380px;
margin: 0 auto;
}
/* google search */
#goog-fixurl ul {
list-style: none;
padding: 0;
margin: 0;
}
#goog-fixurl form {
margin: 0;
}
#goog-wm-qt,
#goog-wm-sb {
border: 1px solid #bbb;
font-size: 16px;
line-height: normal;
vertical-align: top;
color: #444;
border-radius: 2px;
}
#goog-wm-qt {
width: 220px;
height: 20px;
padding: 5px;
margin: 5px 10px 0 0;
box-shadow: inset 0 1px 1px #ccc;
}
#goog-wm-sb {
display: inline-block;
height: 32px;
padding: 0 10px;
margin: 5px 0 0;
white-space: nowrap;
cursor: pointer;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
*overflow: visible;
*display: inline;
*zoom: 1;
}
#goog-wm-sb:hover,
#goog-wm-sb:focus {
border-color: #aaa;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
background-color: #f8f8f8;
}
#goog-wm-qt:hover,
#goog-wm-qt:focus {
border-color: #105cb6;
outline: 0;
color: #222;
}
input::-moz-focus-inner {
padding: 0;
border: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Not found <span>:(</span></h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
<p>It looks like this was the result of either:</p>
<ul>
<li>a mistyped address</li>
<li>an out-of-date link</li>
</ul>
<script>
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
</script>
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,32 @@
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Exports from Cytoscape</title>
<meta name="description" content="Single network exported from Cytoscape 3.3">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!--[if lt IE 10]>
<p class="browsehappy">
You are using an <strong>ancient</strong> browser.
Please <a href="http://browsehappy.com/">upgrade your browser
</a> to improve your experience.
</p>
<![endif]-->
<!-- Actual Cytoscape.js Instance -->
<div id="cy"></div>
<script src="networks.js"></script>
<script src="styles.js"></script>
<script src="scripts/vendor.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/custom.js"></script>
</body>
</html>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,3 @@
# robotstxt.org/
User-agent: *

View file

@ -0,0 +1,15 @@
$( document ).ready(function(){
// Custom Cytoscape.JS code goes here.
// Example: add linkouts to nodes that opens the "href" node attribute on click
// cy.on('tap', 'node', function(){
// try { // your browser may block popups
// window.open( this.data('href') );
// } catch(e){ // fall back on url change
// window.location.href = this.data('href');
// }
// });
// For more options, check out http://js.cytoscape.org/
});

View file

@ -0,0 +1,29 @@
$(function() {
"use strict";
function e(e, n) {
for (var t = n.length, o = 0; t >= o; o++) {
var s = n[o].title;
if (s === e) return n[o]
}
return null
}
var n = "#cy",
network = networks[Object.keys(networks)[0]],
style = styles[0];
$(n).cytoscape({
layout: {
name: "preset",
padding: 10
},
boxSelectionEnabled: !0,
ready: function() {
window.cy = this,
cy.load(network.elements), console.log(network);
console.log(style);
var o = e("default", style);
null === o && (o = style), cy.style().fromJson(o.style).update()
}
})
});

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,180 @@
var styles = [ {
"format_version" : "1.0",
"generated_by" : "cytoscape-3.9.1",
"target_cytoscapejs_version" : "~2.1",
"title" : "default",
"style" : [ {
"selector" : "node",
"css" : {
"shape" : "ellipse",
"border-opacity" : 1.0,
"background-opacity" : 1.0,
"text-opacity" : 1.0,
"height" : 35.0,
"text-valign" : "center",
"text-halign" : "center",
"font-family" : "SansSerif.plain",
"font-weight" : "normal",
"color" : "rgb(247,252,245)",
"border-color" : "rgb(204,204,204)",
"background-color" : "rgb(137,208,245)",
"width" : 35.0,
"border-width" : 0.0,
"font-size" : 12,
"content" : "data(name)"
}
}, {
"selector" : "node[Column_2 = '']",
"css" : {
"shape" : "rectangle"
}
}, {
"selector" : "node[Column_2 = 'LOC']",
"css" : {
"shape" : "diamond"
}
}, {
"selector" : "node[Column_2 = 'PERSON']",
"css" : {
"shape" : "triangle"
}
}, {
"selector" : "node[Column_2 = 'ORG']",
"css" : {
"shape" : "diamond"
}
}, {
"selector" : "node[Column_2 = 'NORP']",
"css" : {
"shape" : "diamond"
}
}, {
"selector" : "node[Column_2 = 'GPE']",
"css" : {
"shape" : "diamond"
}
}, {
"selector" : "node[Column_2 = 'EVENT']",
"css" : {
"shape" : "diamond"
}
}, {
"selector" : "node[Column_2 = '']",
"css" : {
"background-color" : "rgb(12,44,132)"
}
}, {
"selector" : "node[Column_2 = 'LOC']",
"css" : {
"background-color" : "rgb(217,240,163)"
}
}, {
"selector" : "node[Column_2 = 'PERSON']",
"css" : {
"background-color" : "rgb(241,105,19)"
}
}, {
"selector" : "node[Column_2 = 'ORG']",
"css" : {
"background-color" : "rgb(212,185,218)"
}
}, {
"selector" : "node[Column_2 = 'NORP']",
"css" : {
"background-color" : "rgb(247,104,161)"
}
}, {
"selector" : "node[Column_2 = 'GPE']",
"css" : {
"background-color" : "rgb(116,196,118)"
}
}, {
"selector" : "node[Column_2 = 'EVENT']",
"css" : {
"background-color" : "rgb(227,26,28)"
}
}, {
"selector" : "node[Column_2 = 'ORG']",
"css" : {
"color" : "rgb(37,37,37)"
}
}, {
"selector" : "node:selected",
"css" : {
"background-color" : "rgb(255,255,0)"
}
}, {
"selector" : "edge",
"css" : {
"color" : "rgb(0,0,0)",
"line-style" : "solid",
"font-family" : "Dialog.plain",
"font-weight" : "normal",
"target-arrow-color" : "rgb(0,0,0)",
"font-size" : 10,
"opacity" : 1.0,
"width" : 2.0,
"target-arrow-shape" : "none",
"source-arrow-shape" : "none",
"source-arrow-color" : "rgb(0,0,0)",
"content" : "",
"line-color" : "rgb(132,132,132)",
"text-opacity" : 1.0
}
}, {
"selector" : "edge[Column_4 > 381]",
"css" : {
"width" : 1.0
}
}, {
"selector" : "edge[Column_4 = 381]",
"css" : {
"width" : 13.559900485403169
}
}, {
"selector" : "edge[Column_4 > 1][Column_4 < 381]",
"css" : {
"width" : "mapData(Column_4,1,381,1.2611540817632907,13.559900485403169)"
}
}, {
"selector" : "edge[Column_4 = 1]",
"css" : {
"width" : 1.2611540817632907
}
}, {
"selector" : "edge[Column_4 < 1]",
"css" : {
"width" : 1.0
}
}, {
"selector" : "edge[EdgeBetweenness > 2,422.45055709]",
"css" : {
"line-color" : "rgb(68,1,84)"
}
}, {
"selector" : "edge[EdgeBetweenness = 2,422.45055709]",
"css" : {
"line-color" : "rgb(29,145,192)"
}
}, {
"selector" : "edge[EdgeBetweenness > 2][EdgeBetweenness < 2,422.45055709]",
"css" : {
"line-color" : "mapData(EdgeBetweenness,2,2,422.45055709,rgb(253,187,132),rgb(29,145,192))"
}
}, {
"selector" : "edge[EdgeBetweenness = 2]",
"css" : {
"line-color" : "rgb(253,187,132)"
}
}, {
"selector" : "edge[EdgeBetweenness < 2]",
"css" : {
"line-color" : "rgb(253,231,37)"
}
}, {
"selector" : "edge:selected",
"css" : {
"line-color" : "rgb(255,0,0)"
}
} ]
} ]

View file

@ -0,0 +1 @@
body{background:#fff;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#555;font-weight:100}.browsehappy{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}#cy{width:800px;height:600px;background-color:#eee}