mirror of
https://gitlab.silvrtree.co.uk/martind2000/old-silvrgit.git
synced 2025-02-10 20:09:17 +00:00
new slack
This commit is contained in:
parent
f807fab266
commit
8091e72308
@ -1,12 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Slack</title>
|
||||
<meta name="Author" content="" />
|
||||
<link rel="stylesheet" type="text/css" href="css/mui.css">
|
||||
<style>
|
||||
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> -->
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.4/zepto.min.js"></script>
|
||||
<style type="text/css" media="all">
|
||||
body {
|
||||
text-align: center;
|
||||
background: #C9C5C2;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.container {
|
||||
text-align: left;
|
||||
position: relative;
|
||||
width: 960px;
|
||||
background: #FFF;
|
||||
border: 2px solid #FFF;
|
||||
-moz-box-shadow: 3px 3px 3px #aaa;
|
||||
-webkit-box-shadow: 3px 3px 3px #aaa;
|
||||
box-shadow: 3px 3px 3px #aaa;
|
||||
margin: 18px auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body, ul, ol, dl, h1, h2, h3, h4, h5, h6, td, th, caption, pre, p, blockquote, input, textarea {
|
||||
font: .9em 'Helvetica Neue', Helvetica, 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: 'Helvetica Neue', Helvetica, 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
|
||||
color: #FFF;
|
||||
margin: 0;
|
||||
padding: 9px 0;
|
||||
}
|
||||
|
||||
h1 a, h1 a:visited {
|
||||
color: #EEE;
|
||||
}
|
||||
|
||||
h1 a:hover {
|
||||
color: #CCC;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 18px;
|
||||
background: teal;
|
||||
border-bottom: 3px solid #80007e;
|
||||
padding: 9px 0 9px 9px;
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 12px;
|
||||
background: #DDD;
|
||||
border-bottom: 1px solid #80007e;
|
||||
color: #333;
|
||||
margin-top: 0;
|
||||
padding: 9px 0 9px 9px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@ -18,6 +89,49 @@
|
||||
padding: 0 4px 0 0;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-spacing: 10px;
|
||||
}
|
||||
|
||||
th {
|
||||
width: 33%;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
line-height: 24px;
|
||||
border-bottom: 1px solid #80007e;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
td {
|
||||
vertical-align: top;
|
||||
background: #FFF;
|
||||
padding: 0 0 6px;
|
||||
}
|
||||
|
||||
td.footer {
|
||||
background: #8abbd7;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.red:hover {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.floatright {
|
||||
float: right;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.floatleft {
|
||||
float: left;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
a:hover, .red {
|
||||
color: #C00;
|
||||
}
|
||||
|
||||
.dates {
|
||||
padding: 2px;
|
||||
border: solid 1px #80007e;
|
||||
@ -28,40 +142,77 @@
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
.up, .ontime {
|
||||
.up {
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
.down, .delayed {
|
||||
.down {
|
||||
color: darkred;
|
||||
}
|
||||
|
||||
.nochange {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
s0 {border: solid 1px rgb(0,128,0);}
|
||||
s1 {border: solid 1px rgb(4,124,0);}
|
||||
s2 {border: solid 1px rgb(8,120,0);}
|
||||
s3 {border: solid 1px rgb(16,116,0);}
|
||||
s4 {border: solid 1px rgb(20,112,0);}
|
||||
s5 {border: solid 1px rgb(24,108,0);}
|
||||
s6 {border: solid 1px rgb(28,104,0);}
|
||||
s7 {border: solid 1px rgb(32,100,0);}
|
||||
s8 {border: solid 1px rgb(36,96,0);}
|
||||
s9 {border: solid 1px rgb(40,92,0);}
|
||||
s10 {border: solid 1px rgb(44,88,0);}
|
||||
s11 {border: solid 1px rgb(48,84,0);}
|
||||
s12 {border: solid 1px rgb(52,80,0);}
|
||||
s13 {border: solid 1px rgb(56,76,0);}
|
||||
s14 {border: solid 1px rgb(60,72,0);}
|
||||
s15 {border: solid 1px rgb(64,68,0);}
|
||||
s16 {border: solid 1px rgb(68,64,0);}
|
||||
s17 {border: solid 1px rgb(72,60,0);}
|
||||
s18 {border: solid 1px rgb(76,56,0);}
|
||||
s19 {border: solid 1px rgb(80,52,0);}
|
||||
s20 {border: solid 1px rgb(84,48,0);}
|
||||
s21 {border: solid 1px rgb(88,44,0);}
|
||||
s22 {border: solid 1px rgb(92,40,0);}
|
||||
s23 {border: solid 1px rgb(96,36,0);}
|
||||
s24 {border: solid 1px rgb(100,32,0);}
|
||||
s25 {border: solid 1px rgb(104,28,0);}
|
||||
s26 {border: solid 1px rgb(108,26,0);}
|
||||
s27 {border: solid 1px rgb(112,22,0);}
|
||||
s28 {border: solid 1px rgb(116,18,0);}
|
||||
s29 {border: solid 1px rgb(120,12,0);}
|
||||
s30 {border: solid 1px rgb(124,8,0);}
|
||||
s31 {border: solid 1px rgb(128,4,0);}
|
||||
s32 {border: solid 1px rgb(128,0,0);}
|
||||
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.4/zepto.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="mui-container">
|
||||
<div class="mui-panel">
|
||||
<div class="mui-text-headline mui-text-accent">Slack - I have plenty of talent and vision I just don't give a damn</div>
|
||||
</div>
|
||||
<div id="container" class="mui-panel">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-3" id="one"></div>
|
||||
<div class="mui-col-md-3 " id="two"></div>
|
||||
<div class="mui-col-md-3 " id="three"></div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<h1 class="title">Slack - I have plenty of talent and vision I just don't give a damn</h1>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mui-panel">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Starting Points/Metasites</div>
|
||||
<ul>
|
||||
<div>
|
||||
<h2><span id='one' class='dates'>----</span><span> </span><span
|
||||
id='two' class='dates'>----</span><span> </span> <span
|
||||
id='three' class='dates'>----</span>
|
||||
</h2>
|
||||
</div>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Starting Points/Metasites</th>
|
||||
<th>Tools</th>
|
||||
<th>Bitcoin <span id="btc"></span></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Starting Points/Metasites -->
|
||||
<ul>
|
||||
<li><a href="https://feedly.com/#my">Feedly</a></li>
|
||||
<li><a href="https://www.reddit.com">Reddit</a></li>
|
||||
<li><a href="http://www.facebook.com/">Facebook</a></li>
|
||||
@ -71,10 +222,10 @@
|
||||
<li><a href="http://www.rssmix.com/u/7711845">Paleo Mix</a></li>
|
||||
<li><a href="http://status.hivehome.com/">Hive Status</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Tools</div>
|
||||
<ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- tools -->
|
||||
<ul>
|
||||
<li><a href='https://kanbanflow.com'>Kanban Flow</a></li>
|
||||
<li><a href="https://www.linode.com/">Linode</a></li>
|
||||
<li><a href="http://www.colorzilla.com/gradient-editor/">CSS Gradient Generator</a></li>
|
||||
@ -106,10 +257,10 @@
|
||||
<li><a href="https://httpbin.org/">AJAX Endpoints</a></li>
|
||||
<li><a href="https://tools.bartlweb.net/webssh/">WebSSH</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Bitcoin <span id="btc"></span></div>
|
||||
<ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Bitcoin -->
|
||||
<ul>
|
||||
<li><a href="https://www.bitstamp.net">Bitstamp</a></li>
|
||||
<li><a href="https://www.kraken.net">Kraken</a></li>
|
||||
<li><a href="https://cryptowat.ch/">Cryptowat.ch</a></li>
|
||||
@ -128,18 +279,21 @@
|
||||
src="gfx/popout.png"></span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Package Tracking</div>
|
||||
<!-- Computer News -->
|
||||
<ul><li><a href="http://m.ups.com/">UPS</a></li></ul>
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Weather</div>
|
||||
<ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Package Tracking</th>
|
||||
<th>Weather Reports</th>
|
||||
<th>Free Email WEBpages</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Package Tracking -->
|
||||
<ul><li><a href="http://m.ups.com/">UPS</a></li></ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Weather Reports -->
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.accuweather.com/ukie/index-forecast.asp?postalcode=G82%201RG">Dumbarton
|
||||
Weather</a>
|
||||
@ -183,12 +337,10 @@
|
||||
<li><a href="http://www.madpaddler.net/wxais.php">Ships</a></li>
|
||||
<li><a href='http://www.raintoday.co.uk/'>Rain Today</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Free Email WEBpages</div>
|
||||
<!-- Free Email WEBpages -->
|
||||
<ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Free Email WEBpages -->
|
||||
<ul>
|
||||
<li><a href="http://gmail.google.com/">Gmail</a></li>
|
||||
<li>
|
||||
<a href="http://www.unmajestic.com/webmail/">Unmajestic Webmail</a>
|
||||
@ -201,14 +353,17 @@
|
||||
<a href="https://www.guerrillamail.com/">Guerrilla Mail Anti Spam</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Job Searching</div>
|
||||
<ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Job Searching</th>
|
||||
<th>Entertainment</th>
|
||||
<th>Travel <span id="fx"></span></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Real News Related -->
|
||||
<ul>
|
||||
<li><a href='https://worksheets.computerfutures.com/'>CF Timesheets</a></li>
|
||||
<li><a href="http://www.monster.co.uk/">monster</a></li>
|
||||
<li><a href="http://www.cwjobs.co.uk/">cwjobs</a></li>
|
||||
@ -220,12 +375,10 @@
|
||||
<a href="http://www.itjobswatch.co.uk/contracts/scotland/asp.do">IT Jobs Watch Scotland</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Entertainment</div>
|
||||
<!-- Entertainment -->
|
||||
<ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Entertainment -->
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://genre.amazingradio.co.uk:8000/stream.mp3?arplayer=1">Amazing Radio Chill</a>
|
||||
</li>
|
||||
@ -252,13 +405,10 @@
|
||||
<li><a href="/playlists/musik.drumstep.pls">musik.drumstep</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Travel <span id="fx"></div>
|
||||
<!-- Travel -->
|
||||
<span>DBEGLQ: <span id="dbeglq">---</span></span> <span>GLQDBE: <span id="glqdbe">---</span></span>
|
||||
<ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Travel -->
|
||||
<ul>
|
||||
<li>
|
||||
<a href='http://www.journeycheck.com/firstscotrail'>Journey Check</a>
|
||||
<a href="http://www.bbc.co.uk/travel/2650802/incidents/road">BBC Road
|
||||
@ -315,16 +465,17 @@
|
||||
</li>
|
||||
<li><a href="http://maps.google.com/">GMaps</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Computer Software, etc.</div>
|
||||
<ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Computer Software, etc.</th>
|
||||
<th>Reference & Special sites</th>
|
||||
<th>Earth and Beyond</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Computer Software, etc. -->
|
||||
<ul>
|
||||
<li><a href="">Portable Apps</a></li>
|
||||
<li><a href="http://www.newfreeware.com/">NewFreeware</a></li>
|
||||
<li>
|
||||
@ -334,11 +485,9 @@
|
||||
<a href="http://www.portablefreeware.com/">Portable Freeware Collection</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Reference & Special sites</div>
|
||||
<!-- Reference and Special sites -->
|
||||
</td>
|
||||
<td>
|
||||
<!-- Reference and Special sites -->
|
||||
<ul>
|
||||
<li><a href="http://www.glossarist.com/default.asp">Glossaries</a>
|
||||
</li>
|
||||
@ -368,11 +517,9 @@
|
||||
<li><a href="http://en.wikipedia.org/wiki/Main_Page">Wikipedia</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Earth and Beyond</div>
|
||||
<!-- Good Reading Misc. -->
|
||||
</td>
|
||||
<td>
|
||||
<!-- Good Reading Misc. -->
|
||||
<ul>
|
||||
<li><a href="http://enbarsenal.com">ENB Arsenal</a></li>
|
||||
<li><a href="http://enb.wikia.com/">ENB Wikia</a></li>
|
||||
@ -382,16 +529,16 @@
|
||||
<li><a href="http://spaceengineers.wikia.com/wiki/Space_Engineers_Wiki">Space Engineers Wiki</a></li>
|
||||
<li><a href="http://forums.keenswh.com/">Space Engineers Forum</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id='weather' class="mui-panel"></div>
|
||||
</div>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" class="footer">
|
||||
<div id='weather'></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="container"></div>
|
||||
</body>
|
||||
<script src="app.js"></script>
|
||||
</html>
|
359
app/slack.htm
359
app/slack.htm
@ -1,83 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="viewport" content="width=360; initial-scale=1;">
|
||||
<meta charset="UTF-8">
|
||||
<title>Slack</title>
|
||||
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> -->
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.4/zepto.min.js"></script>
|
||||
<style type="text/css" media="all">
|
||||
body {
|
||||
text-align: center;
|
||||
background: #C9C5C2;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.container {
|
||||
text-align: left;
|
||||
position: relative;
|
||||
width: 960px;
|
||||
background: #FFF;
|
||||
border: 2px solid #FFF;
|
||||
-moz-box-shadow: 3px 3px 3px #aaa;
|
||||
-webkit-box-shadow: 3px 3px 3px #aaa;
|
||||
box-shadow: 3px 3px 3px #aaa;
|
||||
margin: 18px auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body, ul, ol, dl, h1, h2, h3, h4, h5, h6, td, th, caption, pre, p, blockquote, input, textarea {
|
||||
font: .9em 'Helvetica Neue', Helvetica, 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: 'Helvetica Neue', Helvetica, 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
|
||||
color: #FFF;
|
||||
margin: 0;
|
||||
padding: 9px 0;
|
||||
}
|
||||
|
||||
h1 a, h1 a:visited {
|
||||
color: #EEE;
|
||||
}
|
||||
|
||||
h1 a:hover {
|
||||
color: #CCC;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 18px;
|
||||
background: teal;
|
||||
border-bottom: 3px solid #80007e;
|
||||
padding: 9px 0 9px 9px;
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 12px;
|
||||
background: #DDD;
|
||||
border-bottom: 1px solid #80007e;
|
||||
color: #333;
|
||||
margin-top: 0;
|
||||
padding: 9px 0 9px 9px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
<meta name="Author" content="" />
|
||||
<link rel="stylesheet" type="text/css" href="css/mui.css">
|
||||
<style>
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@ -89,49 +21,6 @@
|
||||
padding: 0 4px 0 0;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-spacing: 10px;
|
||||
}
|
||||
|
||||
th {
|
||||
width: 33%;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
line-height: 24px;
|
||||
border-bottom: 1px solid #80007e;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
td {
|
||||
vertical-align: top;
|
||||
background: #FFF;
|
||||
padding: 0 0 6px;
|
||||
}
|
||||
|
||||
td.footer {
|
||||
background: #8abbd7;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.red:hover {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.floatright {
|
||||
float: right;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.floatleft {
|
||||
float: left;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
a:hover, .red {
|
||||
color: #C00;
|
||||
}
|
||||
|
||||
.dates {
|
||||
padding: 2px;
|
||||
border: solid 1px #80007e;
|
||||
@ -142,77 +31,40 @@
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
.up {
|
||||
.up, .ontime {
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
.down {
|
||||
.down, .delayed {
|
||||
color: darkred;
|
||||
}
|
||||
|
||||
.nochange {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
s0 {border: solid 1px rgb(0,128,0);}
|
||||
s1 {border: solid 1px rgb(4,124,0);}
|
||||
s2 {border: solid 1px rgb(8,120,0);}
|
||||
s3 {border: solid 1px rgb(16,116,0);}
|
||||
s4 {border: solid 1px rgb(20,112,0);}
|
||||
s5 {border: solid 1px rgb(24,108,0);}
|
||||
s6 {border: solid 1px rgb(28,104,0);}
|
||||
s7 {border: solid 1px rgb(32,100,0);}
|
||||
s8 {border: solid 1px rgb(36,96,0);}
|
||||
s9 {border: solid 1px rgb(40,92,0);}
|
||||
s10 {border: solid 1px rgb(44,88,0);}
|
||||
s11 {border: solid 1px rgb(48,84,0);}
|
||||
s12 {border: solid 1px rgb(52,80,0);}
|
||||
s13 {border: solid 1px rgb(56,76,0);}
|
||||
s14 {border: solid 1px rgb(60,72,0);}
|
||||
s15 {border: solid 1px rgb(64,68,0);}
|
||||
s16 {border: solid 1px rgb(68,64,0);}
|
||||
s17 {border: solid 1px rgb(72,60,0);}
|
||||
s18 {border: solid 1px rgb(76,56,0);}
|
||||
s19 {border: solid 1px rgb(80,52,0);}
|
||||
s20 {border: solid 1px rgb(84,48,0);}
|
||||
s21 {border: solid 1px rgb(88,44,0);}
|
||||
s22 {border: solid 1px rgb(92,40,0);}
|
||||
s23 {border: solid 1px rgb(96,36,0);}
|
||||
s24 {border: solid 1px rgb(100,32,0);}
|
||||
s25 {border: solid 1px rgb(104,28,0);}
|
||||
s26 {border: solid 1px rgb(108,26,0);}
|
||||
s27 {border: solid 1px rgb(112,22,0);}
|
||||
s28 {border: solid 1px rgb(116,18,0);}
|
||||
s29 {border: solid 1px rgb(120,12,0);}
|
||||
s30 {border: solid 1px rgb(124,8,0);}
|
||||
s31 {border: solid 1px rgb(128,4,0);}
|
||||
s32 {border: solid 1px rgb(128,0,0);}
|
||||
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.4/zepto.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1 class="title">Slack - I have plenty of talent and vision I just don't give a damn</h1>
|
||||
|
||||
<div>
|
||||
<h2><span id='one' class='dates'>----</span><span> </span><span
|
||||
id='two' class='dates'>----</span><span> </span> <span
|
||||
id='three' class='dates'>----</span>
|
||||
</h2>
|
||||
</div>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Starting Points/Metasites</th>
|
||||
<th>Tools</th>
|
||||
<th>Bitcoin <span id="btc"></span></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Starting Points/Metasites -->
|
||||
<ul>
|
||||
<body>
|
||||
<div class="mui-container">
|
||||
<div class="mui-panel">
|
||||
<div class="mui-text-headline mui-text-accent">Slack - I have plenty of talent and vision I just don't give a damn</div>
|
||||
</div>
|
||||
<div id="container" class="mui-panel">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-3" id="one"></div>
|
||||
<div class="mui-col-md-3 " id="two"></div>
|
||||
<div class="mui-col-md-3 " id="three"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mui-panel">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Starting Points/Metasites</div>
|
||||
<ul>
|
||||
<li><a href="https://feedly.com/#my">Feedly</a></li>
|
||||
<li><a href="https://www.reddit.com">Reddit</a></li>
|
||||
<li><a href="http://www.facebook.com/">Facebook</a></li>
|
||||
@ -222,10 +74,10 @@
|
||||
<li><a href="http://www.rssmix.com/u/7711845">Paleo Mix</a></li>
|
||||
<li><a href="http://status.hivehome.com/">Hive Status</a></li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- tools -->
|
||||
<ul>
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Tools</div>
|
||||
<ul>
|
||||
<li><a href='https://kanbanflow.com'>Kanban Flow</a></li>
|
||||
<li><a href="https://www.linode.com/">Linode</a></li>
|
||||
<li><a href="http://www.colorzilla.com/gradient-editor/">CSS Gradient Generator</a></li>
|
||||
@ -257,10 +109,10 @@
|
||||
<li><a href="https://httpbin.org/">AJAX Endpoints</a></li>
|
||||
<li><a href="https://tools.bartlweb.net/webssh/">WebSSH</a></li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Bitcoin -->
|
||||
<ul>
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Bitcoin <span id="btc"></span></div>
|
||||
<ul>
|
||||
<li><a href="https://www.bitstamp.net">Bitstamp</a></li>
|
||||
<li><a href="https://www.kraken.net">Kraken</a></li>
|
||||
<li><a href="https://cryptowat.ch/">Cryptowat.ch</a></li>
|
||||
@ -279,21 +131,18 @@
|
||||
src="gfx/popout.png"></span>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Package Tracking</th>
|
||||
<th>Weather Reports</th>
|
||||
<th>Free Email WEBpages</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Package Tracking -->
|
||||
<ul><li><a href="http://m.ups.com/">UPS</a></li></ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Weather Reports -->
|
||||
<ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Package Tracking</div>
|
||||
<!-- Computer News -->
|
||||
<ul><li><a href="http://m.ups.com/">UPS</a></li></ul>
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Weather</div>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.accuweather.com/ukie/index-forecast.asp?postalcode=G82%201RG">Dumbarton
|
||||
Weather</a>
|
||||
@ -337,10 +186,12 @@
|
||||
<li><a href="http://www.madpaddler.net/wxais.php">Ships</a></li>
|
||||
<li><a href='http://www.raintoday.co.uk/'>Rain Today</a></li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Free Email WEBpages -->
|
||||
<ul>
|
||||
|
||||
</div>
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Free Email WEBpages</div>
|
||||
<!-- Free Email WEBpages -->
|
||||
<ul>
|
||||
<li><a href="http://gmail.google.com/">Gmail</a></li>
|
||||
<li>
|
||||
<a href="http://www.unmajestic.com/webmail/">Unmajestic Webmail</a>
|
||||
@ -353,17 +204,14 @@
|
||||
<a href="https://www.guerrillamail.com/">Guerrilla Mail Anti Spam</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Job Searching</th>
|
||||
<th>Entertainment</th>
|
||||
<th>Travel <span id="fx"></span></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Real News Related -->
|
||||
<ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Job Searching</div>
|
||||
<ul>
|
||||
<li><a href='https://worksheets.computerfutures.com/'>CF Timesheets</a></li>
|
||||
<li><a href="http://www.monster.co.uk/">monster</a></li>
|
||||
<li><a href="http://www.cwjobs.co.uk/">cwjobs</a></li>
|
||||
@ -375,10 +223,12 @@
|
||||
<a href="http://www.itjobswatch.co.uk/contracts/scotland/asp.do">IT Jobs Watch Scotland</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Entertainment -->
|
||||
<ul>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Entertainment</div>
|
||||
<!-- Entertainment -->
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://genre.amazingradio.co.uk:8000/stream.mp3?arplayer=1">Amazing Radio Chill</a>
|
||||
</li>
|
||||
@ -405,10 +255,13 @@
|
||||
<li><a href="/playlists/musik.drumstep.pls">musik.drumstep</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Travel -->
|
||||
<ul>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Travel <span id="fx"></div>
|
||||
<!-- Travel -->
|
||||
<span>DBEGLQ: <span id="dbeglq">---</span></span> <span>GLQDBE: <span id="glqdbe">---</span></span>
|
||||
<ul>
|
||||
<li>
|
||||
<a href='http://www.journeycheck.com/firstscotrail'>Journey Check</a>
|
||||
<a href="http://www.bbc.co.uk/travel/2650802/incidents/road">BBC Road
|
||||
@ -464,18 +317,18 @@
|
||||
<a href="http://www.cia.gov/cia/publications/factbook/index.html">CIA</a>
|
||||
</li>
|
||||
<li><a href="http://maps.google.com/">GMaps</a></li>
|
||||
<li><a href='https://unop.uk/tube/'>Tube Status</a></li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Computer Software, etc.</th>
|
||||
<th>Reference & Special sites</th>
|
||||
<th>Earth and Beyond</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!-- Computer Software, etc. -->
|
||||
<ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Computer Software, etc.</div>
|
||||
<ul>
|
||||
<li><a href="">Portable Apps</a></li>
|
||||
<li><a href="http://www.newfreeware.com/">NewFreeware</a></li>
|
||||
<li>
|
||||
@ -485,9 +338,11 @@
|
||||
<a href="http://www.portablefreeware.com/">Portable Freeware Collection</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Reference and Special sites -->
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Reference & Special sites</div>
|
||||
<!-- Reference and Special sites -->
|
||||
<ul>
|
||||
<li><a href="http://www.glossarist.com/default.asp">Glossaries</a>
|
||||
</li>
|
||||
@ -517,9 +372,11 @@
|
||||
<li><a href="http://en.wikipedia.org/wiki/Main_Page">Wikipedia</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<!-- Good Reading Misc. -->
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-4">
|
||||
<div class="mui-text-title mui-text-black">Earth and Beyond</div>
|
||||
<!-- Good Reading Misc. -->
|
||||
<ul>
|
||||
<li><a href="http://enbarsenal.com">ENB Arsenal</a></li>
|
||||
<li><a href="http://enb.wikia.com/">ENB Wikia</a></li>
|
||||
@ -529,16 +386,16 @@
|
||||
<li><a href="http://spaceengineers.wikia.com/wiki/Space_Engineers_Wiki">Space Engineers Wiki</a></li>
|
||||
<li><a href="http://forums.keenswh.com/">Space Engineers Forum</a></li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" class="footer">
|
||||
<div id='weather'></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="container"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id='weather' class="mui-panel"></div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
<script src="app.js"></script>
|
||||
</html>
|
||||
|
@ -7,7 +7,7 @@ GLOBAL.lastcheck = 0;
|
||||
var btcCache = {}, fxCache = {} , trainCache = {};
|
||||
|
||||
app.configure(function () {
|
||||
app.set('port', process.env.PORT || 9000);
|
||||
app.set('port', process.env.PORT || 4545);
|
||||
app.use(express.logger('dev'));
|
||||
app.use(express.cookieParser());
|
||||
app.use(express.session({secret: '1234567890QWERTY'}));
|
||||
|
Loading…
Reference in New Issue
Block a user