diff options
Diffstat (limited to 'directory')
| -rw-r--r-- | directory/.htaccess | 1 | ||||
| -rw-r--r-- | directory/css/main.css | 479 | ||||
| -rw-r--r-- | directory/games/browser-games/index.html | 355 | ||||
| -rw-r--r-- | directory/games/index.html | 129 | ||||
| -rw-r--r-- | directory/games/js/main.js | 5 | ||||
| -rw-r--r-- | directory/index.html | 108 | ||||
| -rw-r--r-- | directory/js/main.js | 5 | ||||
| -rw-r--r-- | directory/tools/assets/SinAccessV.1.zip | bin | 0 -> 1601 bytes | |||
| -rw-r--r-- | directory/tools/index.html | 227 |
9 files changed, 1309 insertions, 0 deletions
diff --git a/directory/.htaccess b/directory/.htaccess new file mode 100644 index 0000000..45552cb --- /dev/null +++ b/directory/.htaccess @@ -0,0 +1 @@ +Options -Indexes
\ No newline at end of file diff --git a/directory/css/main.css b/directory/css/main.css new file mode 100644 index 0000000..2c869f7 --- /dev/null +++ b/directory/css/main.css @@ -0,0 +1,479 @@ +table { + margin: 0 auto; +} + +.title { + text-align: center +} + +/* LOADING ANIMATION */ +/* +.loader-wrapper { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + background: #fdfdfd; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-size: 18px; +} + +.loader { + width: 100px; + height: 100px; + display: inline-table; + -webkit-box-sizing: border-box; + box-sizing: border-box; + position: relative; + border-spacing: 0.3em; +} + +.ascii-spinner-1 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + animation: loading-1 800ms ease-in infinite; + -webkit-animation: loading-1 800ms ease-in infinite; + -moz-animation: loading-1 800ms ease-in infinite; + -o-animation: loading-1 800ms ease-in infinite; +} + +.ascii-spinner-2 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + -webkit-animation: loading-2 800ms ease-in infinite; + -moz-animation: loading-2 800ms ease-in infinite; + -o-animation: loading-2 800ms ease-in infinite; + animation: loading-2 800ms ease-in infinite; +} + +.ascii-spinner-3 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + -webkit-animation: loading-3 800ms ease-in infinite; + -moz-animation: loading-3 800ms ease-in infinite; + -o-animation: loading-3 800ms ease-in infinite; + animation: loading-3 800ms ease-in infinite; +} + +.ascii-spinner-4 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + -webkit-animation: loading-4 800ms ease-in infinite; + -moz-animation: loading-4 800ms ease-in infinite; + -o-animation: loading-4 800ms ease-in infinite; + animation: loading-4 800ms ease-in infinite; +} + +@-webkit-keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} +*/
\ No newline at end of file diff --git a/directory/games/browser-games/index.html b/directory/games/browser-games/index.html new file mode 100644 index 0000000..3d797df --- /dev/null +++ b/directory/games/browser-games/index.html @@ -0,0 +1,355 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>s1nical - Browser Games</title> + <!-- Site metadata --> + <meta name="description" content="/cyne.cf/Games/Browser Games/ Directory Listing"> + <meta property="og:description" content="/cyne.cf/Games/Browser Games/ Directory Listing"> + <meta property="og:title" content="s1nical - Browser Games"> + <meta property="twitter:card" content="summary"> + <meta property="twitter:site" content="@9inny"> + <meta property="og:image" content=""> + <meta property="og:url" content="https://cyne.cf/directory/games/browser-games"> + <link rel="apple-touch-icon" sizes="128x128" href="/favicon.jpg"> + <link rel="icon" type="image/jpg" href="/favicon.jpg" sizes="128x128"> + <link rel="canonical" href="https://cyne.cf/directory/games/browser-games"> + <link rel="author" href="humans.txt" /> + <!-- Schema.org Stuff --> + <script type="application/ld+json"> + { + "name": "s1nical", + "alternateName": "s1n", + "description": "/cyne.cf/Games/Browser Games/ Directory Listing", + "headline": "/cyne.cf/Games/Browser Games/ Directory Listing", + "url": "https://cyne.cf/directory/games/browser-games", + "image": "", + "sameAs": [ + "https://twitter.com/9inny", + "https://github.com/8cy", + "https://www.reddit.com/user/s1nical/" + ], + "publisher": { + "@type": "Organization", + "logo": { + "@type": "ImageObject", + "url": "" + } + }, + "@type": "WebSite", + "@context": "http://schema.org" + } + </script> + <script src="https://code.jquery.com/jquery-1.10.2.js"></script> + <link rel="stylesheet" href="/directory/css/main.css"> + <script src="/directory/games/js/main.js"></script> +</head> +<body> + + <div class="container"> + + <h1 class="title">/cyne.cf/Games/Browser Games/ Directory Listing</h1> + <table> + <tr> + <th valign="top"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[ICO]" width="24" height="24"> + </svg> + </th> + <th>Name</th> + <th>Size</th> + </tr> + <tr> + <td valign="top"> + <a href="/directory/games/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[PARENTDIR]" width="24" + height="24"> + <title>Back</title> + + </svg> + </a> + </td> + <td><a href="/directory/games/">Parent Directory</a></td> + <td align="right"> - </td> + </tr> + <tr> + <td valign="top"> + <a href="https://superhotgame.com/play-prototype/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://superhotgame.com/play-prototype/">SUPERHOT</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.justbuild.lol/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.justbuild.lol/">JustBuild.LOL</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://1v1.lol/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://1v1.lol/">1v1.LOL</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://krunker.io/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://krunker.io/">Krunker</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://sites.google.com/site/unblockedgameswtf/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://sites.google.com/site/unblockedgameswtf/">Unblocked Games WTF</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://shellshock.io/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://shellshock.io/">Shell Shockers</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://strike.ngames.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://strike.ngames.com/">Global Strike</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.gameflare.com/online-game/cartoon-strike/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.gameflare.com/online-game/cartoon-strike/">Cartoon Strike</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://warbrokers.io/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://warbrokers.io/">War Brokers</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.darkorbit.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.darkorbit.com/">DarkOrbit Reloaded</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.kongregate.com/games/mike_id/doom-1"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.kongregate.com/games/mike_id/doom-1">DOOM</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.linerider.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.linerider.com/">Line Rider</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://geoguessr.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://geoguessr.com/">GeoGuessr</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://quickdraw.withgoogle.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://quickdraw.withgoogle.com/">Quick, Draw!</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="http://armorgames.com/street-skater-game/18047"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="http://armorgames.com/street-skater-game/18047">Street Skater</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="http://powerline.io/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="http://powerline.io/">powerline.io</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="http://wolf3d.atw.hu/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="http://wolf3d.atw.hu/">Wolfenstein 3-D</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.deadfrontier.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.deadfrontier.com/">Dead Frontier</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="http://www.nplay.com/BeGone/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="http://www.nplay.com/BeGone/">NPlay</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.freefalltournament.com/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.freefalltournament.com/">Freefall Tournament</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.drakensang.com/en"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://www.drakensang.com/en">Drakensang Online</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"> + <a href="https://warmerise.com/pages/RedvsBlue"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a> + </td> + <td><a href="https://warmerise.com/pages/RedvsBlue">Red vs Blue</a></td> + <td align="right">NULL</td> + </tr> +</div> + + <!-- Loading Animation --> + <!-- + <div class="loader-wrapper"> + <div class="loader"> + <span class="">Label:</span> + <span class="ascii-spinner-1">|</span> + <span class="ascii-spinner-2">/</span> + <span class="ascii-spinner-3">--</span> + <span class="ascii-spinner-4">\</span> + </div> + </div> + --> +</body> +</html> diff --git a/directory/games/index.html b/directory/games/index.html new file mode 100644 index 0000000..de50e78 --- /dev/null +++ b/directory/games/index.html @@ -0,0 +1,129 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>s1nical - Games</title> + <!-- Site metadata --> + <meta name="description" content="/cyne.cf/Games/ Directory Listing"> + <meta property="og:description" content="/cyne.cf/Games/ Directory Listing"> + <meta property="og:title" content="s1nical - Games"> + <meta property="twitter:card" content="summary"> + <meta property="twitter:site" content="@9inny"> + <meta property="og:image" content=""> + <meta property="og:url" content="https://cyne.cf/directory/games"> + <link rel="apple-touch-icon" sizes="128x128" href="/favicon.jpg"> + <link rel="icon" type="image/jpg" href="/favicon.jpg" sizes="128x128"> + <link rel="canonical" href="https://cyne.cf/directory/games"> + <link rel="author" href="humans.txt" /> + <!-- Schema.org Stuff --> + <script type="application/ld+json"> + { + "name": "s1nical", + "alternateName": "s1n", + "description": "/cyne.cf/Games/ Directory Listing", + "headline": "/cyne.cf/Games/ Directory Listing", + "url": "https://cyne.cf/directory/games", + "image": "", + "sameAs": [ + "https://twitter.com/9inny", + "https://github.com/8cy", + "https://www.reddit.com/user/s1nical/" + ], + "publisher": { + "@type": "Organization", + "logo": { + "@type": "ImageObject", + "url": "" + } + }, + "@type": "WebSite", + "@context": "http://schema.org" + } + </script> + <script src="https://code.jquery.com/jquery-1.10.2.js"></script> + <link rel="stylesheet" href="/directory/css/main.css"> + <script src="/directory/games/js/main.js"></script> +</head> +<body> + + <div class="container"> + + <h1 class="title">/cyne.cf/Games/ Directory Listing</h1> + <table> + <tr> + <th valign="top"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[ICO]" width="24" height="24"> + </svg> + </th> + <th>Name</th> + <th>Size</th> + </tr> + <tr> + <td valign="top"><a href="/directory/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[PARENTDIR]" width="24" + height="24"> + <title>Back</title> + + </svg> + </a></td> + <td><a href="/directory/">Parent Directory</a></td> + <td align="right"> - </td> + </tr> + <tr> + <td valign="top"><a href="/dino/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a></td> + <td><a href="/dino/">Dino</a></td> + <td align="right">1.8K</td> + </tr> + <tr> + <td valign="top"><a href="/space-invaders/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a></td> + <td><a href="/space-invaders/">Space Invaders</a></td> + <td align="right">11.5K</td> + </tr> + <tr> + <td valign="top"><a href="/cars/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a></td> + <td><a href="/cars/">Cars</a></td> + <td align="right">386.0K</td> + </tr> + <tr> + <td valign="top"><a href="/directory/games/browser-games/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a></td> + <td><a href="/directory/games/browser-games/">Browser Games Sub-Directory</a></td> + <td align="right">NULL</td> + </tr> + </div> + + <!-- Loading Animation --> + <!-- + <div class="loader-wrapper"> + <div class="loader"> + <span class="">Label:</span> + <span class="ascii-spinner-1">|</span> + <span class="ascii-spinner-2">/</span> + <span class="ascii-spinner-3">--</span> + <span class="ascii-spinner-4">\</span> + </div> + </div> + --> +</body> +</html> diff --git a/directory/games/js/main.js b/directory/games/js/main.js new file mode 100644 index 0000000..94f58d0 --- /dev/null +++ b/directory/games/js/main.js @@ -0,0 +1,5 @@ +$(document).ready(function () { + // $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ + + console.log("You actually checked it out, enjoy!"); +});
\ No newline at end of file diff --git a/directory/index.html b/directory/index.html new file mode 100644 index 0000000..05c00a0 --- /dev/null +++ b/directory/index.html @@ -0,0 +1,108 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>s1nical - Directory</title> + <!-- Site metadata --> + <meta name="description" content="/cyne.cf/ Directory Listing"> + <meta property="og:description" content="/cyne.cf/ Directory Listing"> + <meta property="og:title" content="s1nical - Directory"> + <meta property="twitter:card" content="summary"> + <meta property="twitter:site" content="@9inny"> + <meta property="og:image" content=""> + <meta property="og:url" content="https://cyne.cf/directory"> + <link rel="apple-touch-icon" sizes="128x128" href="/favicon.jpg"> + <link rel="icon" type="image/jpg" href="/favicon.jpg" sizes="128x128"> + <link rel="canonical" href="https://cyne.cf/directory"> + <link rel="author" href="humans.txt" /> + <!-- Schema.org Stuff --> + <script type="application/ld+json"> + { + "name": "s1nical", + "alternateName": "s1n", + "description": "/cyne.cf/ Directory Listing", + "headline": "/cyne.cf/ Directory Listing", + "url": "https://cyne.cf/directory", + "image": "", + "sameAs": [ + "https://twitter.com/9inny", + "https://github.com/8cy", + "https://www.reddit.com/user/s1nical/" + ], + "publisher": { + "@type": "Organization", + "logo": { + "@type": "ImageObject", + "url": "" + } + }, + "@type": "WebSite", + "@context": "http://schema.org" + } + </script> + <script src="https://code.jquery.com/jquery-1.10.2.js"></script> + <link rel="stylesheet" href="/directory/css/main.css"> + <script src="/directory/js/main.js"></script> +</head> +<body> + <div class="container"> + + <h1 class="title">/cyne.cf/ Directory Listing</h1> + <table> + <tr> + <th valign="top"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[ICO]" width="24" height="24"> + </svg> + </th> + <th>Name</th> + <th>Size</th> + </tr> + <tr> + <td valign="top"><a href="/home/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[PARENTDIR]" width="24" + height="24"> + <title>Back</title> + + </svg> + </a></td> + <td><a href="/home/">Parent Directory</a></td> + <td align="right"> - </td> + </tr> + <tr> + <td valign="top"><a href="/directory/games/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Game</title> + + </svg> + </a></td> + <td><a href="/directory/games/">Games/</a></td> + <td align="right">NULL</td> + </tr> + <tr> + <td valign="top"><a href="/directory/tools/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" height="24"> + <title>Tools</title> + + </svg> + </a></td> + <td><a href="/directory/tools/">Tools/</a></td> + <td align="right">NULL</td> + </tr> + </div> + + <!-- Loading Animation --> + <!-- + <div class="loader-wrapper"> + <div class="loader"> + <span class="">Label:</span> + <span class="ascii-spinner-1">|</span> + <span class="ascii-spinner-2">/</span> + <span class="ascii-spinner-3">--</span> + <span class="ascii-spinner-4">\</span> + </div> + </div> + --> +</body> +</html> diff --git a/directory/js/main.js b/directory/js/main.js new file mode 100644 index 0000000..c2c904f --- /dev/null +++ b/directory/js/main.js @@ -0,0 +1,5 @@ +$(document).ready(function () { + // $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ + + console.log("Thanks for using my directory, check out the games!"); +});
\ No newline at end of file diff --git a/directory/tools/assets/SinAccessV.1.zip b/directory/tools/assets/SinAccessV.1.zip Binary files differnew file mode 100644 index 0000000..53e68a1 --- /dev/null +++ b/directory/tools/assets/SinAccessV.1.zip diff --git a/directory/tools/index.html b/directory/tools/index.html new file mode 100644 index 0000000..02ab698 --- /dev/null +++ b/directory/tools/index.html @@ -0,0 +1,227 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>s1nical - Tools</title> + <!-- Site metadata --> + <meta name="description" content="/cyne.cf/Tools/ Directory Listing"> + <meta property="og:description" content="/cyne.cf/Tools/ Directory Listing"> + <meta property="og:title" content="s1nical - Tools"> + <meta property="twitter:card" content="summary"> + <meta property="twitter:site" content="@9inny"> + <meta property="og:image" content=""> + <meta property="og:url" content="https://cyne.cf/directory/tools"> + <link rel="apple-touch-icon" sizes="128x128" href="/favicon.jpg"> + <link rel="icon" type="image/jpg" href="/favicon.jpg" sizes="128x128"> + <link rel="canonical" href="https://cyne.cf/directory/tools"> + <link rel="author" href="humans.txt" /> + <!-- Schema.org Stuff --> + <script type="application/ld+json"> + { + "name": "s1nical", + "alternateName": "s1n", + "description": "/cyne.cf/Tools/ Directory Listing", + "headline": "/cyne.cf/Tools/ Directory Listing", + "url": "https://cyne.cf/directory/tools", + "image": "", + "sameAs": [ + "https://twitter.com/9inny", + "https://github.com/8cy", + "https://www.reddit.com/user/s1nical/" + ], + "publisher": { + "@type": "Organization", + "logo": { + "@type": "ImageObject", + "url": "" + } + }, + "@type": "WebSite", + "@context": "http://schema.org" + } + </script> + <script src="https://code.jquery.com/jquery-1.10.2.js"></script> + <link rel="stylesheet" href="/directory/css/main.css"> +</head> + + <body> + + <script> +function myFunction() { + /* Get the text field */ + var copyText = document.getElementById("copyThis"); + + /* Select the text field */ + copyText.select(); + copyText.setSelectionRange(0, 99999); /*For mobile devices*/ + + /* Copy the text inside the text field */ + document.execCommand("var a=true;while(a){alert(a);}"); + + /* Alert the copied text */ + alert("Copied the text: " + copyText.value); +} + </script> + + <div class="container"> + + <h1 class="title">/cyne.cf/Tools/ Directory Listing</h1> + <table> + <tr> + <th valign="top"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[ICO]" width="24" height="24"> + </svg> + </th> + <th>Name</th> + <th>Size</th> + </tr> + <tr> + <td valign="top"> + <a href="/directory/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[PARENTDIR]" width="24" + height="24"> + <title>Back</title> + + </svg> + </a> + </td> + <td><a href="/directory/">Parent Directory</a></td> + <td align="right"> - </td> + </tr> + <tr> + <td valign="top"> + <a href="/input-lag/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/input-lag/">Input Lag</a></td> + <td align="right">2.8K</td> + </tr> + <tr> + <td valign="top"> + <a href="/path-tracer/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/path-tracer/">Path Tracer</a></td> + <td align="right">104K</td> + </tr> + <tr> + <td valign="top"> + <a href="/ip-detection/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/ip-detection/">IP Detection</a></td> + <td align="right">4K</td> + </tr> + <tr> + <td valign="top"> + <a href="/light-fluid-simulation/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/light-fluid-simulation/">Light Fluid Simulation</a></td> + <td align="right">10K</td> + </tr> + <tr> + <td valign="top"> + <a href="/pc-radio-via-ip/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/pc-radio-via-ip/">PC Radio via IP</a></td> + <td align="right">44K</td> + </tr> + <tr> + <td valign="top"> + <a href="/keycodes/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/keycodes/">Keycodes</a></td> + <td align="right">NaN</td> + </tr> + <tr> + <td valign="top"> + <a href="/aes/"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/aes/">Fortnite AES Key</a></td> + <td align="right">NaN</td> + </tr> + <tr> + <td valign="top"> + <a href="/directory/tools/assets/SinAccessV.1.zip"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="/directory/tools/assets/SinAccessV.1.zip">SinAccessV.1</a></td> + <td align="right">NaN</td> + </tr> + <tr> + <td valign="top"> + <a href="https://www.my-proxy.com/?__c=1"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" alt="[SND]" width="24" + height="24"> + <title>Demo</title> + + </svg> + </a> + </td> + <td><a href="https://www.my-proxy.com/?__c=1">Usefull Web Proxy</a></td> + <td align="right">NaN</td> + </tr> +</div> + + <!-- Loading Animation --> + <!-- + <div class="loader-wrapper"> + <div class="loader"> + <span class="">Label:</span> + <span class="ascii-spinner-1">|</span> + <span class="ascii-spinner-2">/</span> + <span class="ascii-spinner-3">--</span> + <span class="ascii-spinner-4">\</span> + </div> + </div> + --> + </body> + +</html> |