Add project
This commit is contained in:
commit
2e44fb9d11
|
@ -0,0 +1,162 @@
|
|||
/**
|
||||
* anthrstlsht.css (another style sheet) v0.8
|
||||
* DWTWL 2.5 license: https://soundragon.su/license/license.html
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.container {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.6rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 3.2rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 2.6rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 2.0rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 0.7rem;
|
||||
-moz-text-shadow:0 0 10px #fff;
|
||||
-webkit-text-shadow:0 0 10px #fff;
|
||||
text-shadow:0 0 10px #fff;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1.2rem;
|
||||
-moz-text-shadow: 0 0 10px #00afee;
|
||||
-webkit-text-shadow: 0 0 10px #00afee;
|
||||
text-shadow: 0 0 10px #00afee;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-width: 0;
|
||||
border-top: 1px solid #bbb;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.button,
|
||||
button,
|
||||
html input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
padding: 0 20px;
|
||||
color: #555;
|
||||
text-align: center;
|
||||
font-family: Ubuntu, sans-serif;
|
||||
font-weight: 800;
|
||||
line-height: 28px;
|
||||
background-color: transparent;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #bbb;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button:hover,
|
||||
button:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
input[type="submit"]:hover,
|
||||
.button:focus,
|
||||
button:focus,
|
||||
input[type="button"]:focus,
|
||||
input[type="reset"]:focus,
|
||||
input[type="submit"]:focus {
|
||||
color: #333;
|
||||
border-color: #999;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[type="email"],
|
||||
input[type="number"],
|
||||
input[type="search"],
|
||||
input[type="text"],
|
||||
input[type="tel"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
textarea,
|
||||
select {
|
||||
height: 28px;
|
||||
padding: 3px 5px;
|
||||
border: 1px solid #bbb;
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
input[type="email"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="text"]:focus,
|
||||
input[type="tel"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
border: 1px solid #888;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace, monospace;
|
||||
padding: .2rem .2rem;
|
||||
font-size: 80%;
|
||||
background: #eee;
|
||||
white-space: pre;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: circle;
|
||||
}
|
||||
|
||||
ol, ul, li {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
button,
|
||||
.button,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: .1rem;
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
echo "id:;:";
|
||||
|
||||
function getID($radioip,$radioport)
|
||||
{
|
||||
$open = fsockopen($radioip,$radioport,$errno,$errstr,'.5');
|
||||
if ($open) {
|
||||
fputs($open,"GET /7.html HTTP/1.1\nUser-Agent:Mozilla\n\n");
|
||||
stream_set_timeout($open,'1');
|
||||
$read = fread($open,255);
|
||||
$exploded = explode(",",$read);
|
||||
if(exploded[6] == '' || $exploded[6] == '</body></html>')
|
||||
{ $text = 'streaming'; } else { $text = $exploded[6]; }
|
||||
$id = str_replace("</body></html>","",$text);
|
||||
} else { return false; }
|
||||
fclose($open);
|
||||
return $id;
|
||||
}
|
||||
|
||||
$radioip = "93.100.61.75";
|
||||
$radioport = "8000";
|
||||
echo getID($radioip,$radioport).":;:";
|
||||
$radioip = "67.212.165.106";
|
||||
$radioport = "8144";
|
||||
echo getID($radioip,$radioport).":;:";
|
||||
$radioip = "173.236.30.162";
|
||||
$radioport = "8022";
|
||||
echo getID($radioip,$radioport).":;:";
|
||||
$radioip = "91.237.213.34";
|
||||
$radioport = "8008";
|
||||
echo getID($radioip,$radioport).":;:";
|
||||
$radioip = "79.120.39.202";
|
||||
$radioport = "9009";
|
||||
echo getID($radioip,$radioport);
|
||||
|
||||
?>
|
|
@ -0,0 +1,88 @@
|
|||
<!DOCTYPE html>
|
||||
<!-- https://github.com/zlaxy/dubtechradiopage -->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<!--
|
||||
88 88 88
|
||||
88 88 ,d 88
|
||||
88 88 88 88
|
||||
,adPPYb,88 88 88 88,dPPYba, MM88MMM ,adPPYba, ,adPPYba, 88,dPPYba,
|
||||
a8" `Y88 88 88 88P' "8a 88 a8P_____88 a8" "" 88P' "8a
|
||||
8b 88 88 88 88 d8 88 8PP""""""" 8b 88 88
|
||||
"8a, ,d88 "8a, ,a88 88b, ,a8" 88, "8b, ,aa "8a, ,aa 88 88
|
||||
`"8bbdP"Y8 `"YbbdP'Y8 8Y"Ybbd8"' "Y888 `"Ybbd8"' `"Ybbd8"' 88 88
|
||||
-->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu:regular&subset=Latin,Cyrillic">
|
||||
<link rel="stylesheet" type="text/css" href="anthrstlsht.css">
|
||||
<title>dub tech</title>
|
||||
<style type="text/css">
|
||||
.container { display: table; height: 100vh; }
|
||||
.tabb { display: table-cell; vertical-align: middle; }
|
||||
body { background-color: #888; background: url(bk.jpg) repeat-y; }
|
||||
</style>
|
||||
<!-- script by bodqhrohro -->
|
||||
<script type="text/javascript">
|
||||
function allID () {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open('GET', 'id.php');
|
||||
xhr.send(null);
|
||||
xhr.onreadystatechange = function() {
|
||||
if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) {
|
||||
xhr.responseText.split('\n').forEach(function(line) {
|
||||
var kvID = line.split(':;:');
|
||||
document.getElementById("first").innerHTML = kvID[1];
|
||||
document.getElementById("second").innerHTML = kvID[2];
|
||||
document.getElementById("third").innerHTML = kvID[3];
|
||||
document.getElementById("fourth").innerHTML = kvID[4];
|
||||
document.getElementById("fifth").innerHTML = kvID[5];
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
allID();
|
||||
setInterval(allID, 1e4);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<table class="tabb">
|
||||
<tr><td>
|
||||
<h5 align="right"><b><a href="http://anima.sknt.ru">Anima Amoris [Dub Techno]</a><br>
|
||||
<a href="http://amoris.sknt.ru:8000">http://93.100.61.75:8000</a></b></h5>
|
||||
</td><td><audio controls preload="none"><source src="http://amoris.sknt.ru:8000/;" type="audio/mpeg"></audio></td><td>
|
||||
<h6 id="first"></h6>
|
||||
</td></tr><tr><td>
|
||||
<h5 align="right"><b><a href="http://sursumcorda.ning.com">arctic dub (sursumcorda)</a><br>
|
||||
<a href="http://67.212.165.106:8144">http://67.212.165.106:8144</a></b></h5>
|
||||
</td><td><audio controls preload="none"><source src="http://67.212.165.106:8144/;" type="audio/mpeg"></audio></td><td>
|
||||
<h6 id="second"></h6>
|
||||
</td></tr><tr><td>
|
||||
<h5 align="right"><b><a href="http://dubtechno.com.br">Dub Techno Station</a><br>
|
||||
<a href="http://173.236.30.162:8022">http://173.236.30.162:8022</a></b></h5>
|
||||
</td><td><audio controls preload="none"><source src="http://173.236.30.162:8022/stream" type="audio/mpeg"></audio></td><td>
|
||||
<h6 id="third"></h6>
|
||||
</td></tr><tr><td>
|
||||
<h5 align="right"><b><a href="http://electronicmusic.fm">electronicmusic.fm - Dub</a><br>
|
||||
<a href="http://91.237.213.34:8008">http://91.237.213.34:8008</a></b></h5>
|
||||
</td><td><audio controls preload="none"><source src="http://91.237.213.34:8008/;" type="audio/mpeg"></audio></td><td>
|
||||
<h6 id="fourth"></h6>
|
||||
</td></tr><tr><td>
|
||||
<h5 align="right"><b><a href="http://radcap.ru">Radio Caprice - Dub Techno</a><br>
|
||||
<a href="http://79.120.39.202:9009">http://79.120.39.202:9009</a></b></h5>
|
||||
</td><td><audio controls preload="none"><source src="http://79.120.39.202:9009/;" type="audio/mpeg"></audio></td><td>
|
||||
<h6 id="fifth"></h6>
|
||||
</td></tr>
|
||||
</table></div>
|
||||
<!--
|
||||
88 88 88
|
||||
,d 88 88 88
|
||||
88 88 88 88
|
||||
MM88MMM ,adPPYba, ,adPPYba, 88,dPPYba, ,adPPYb,88 88 88 88,dPPYba,
|
||||
88 a8P_____88 a8" "" 88P' "8a a8" `Y88 88 88 88P' "8a
|
||||
88 8PP""""""" 8b 88 88 8b 88 88 88 88 d8
|
||||
88, "8b, ,aa "8a, ,aa 88 88 "8a, ,d88 "8a, ,a88 88b, ,a8"
|
||||
"Y888 `"Ybbd8"' `"Ybbd8"' 88 88 `"8bbdP"Y8 `"YbbdP'Y8 8Y"Ybbd8"'
|
||||
-->
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue