diff options
| author | s1nical <[email protected]> | 2019-08-16 05:58:53 -0700 |
|---|---|---|
| committer | s1nical <[email protected]> | 2019-08-16 05:58:53 -0700 |
| commit | bec4e31ea85e53445d29490824fb61035cccfe75 (patch) | |
| tree | 5d35f61da07ec0b2ac9d17fd50b301f8fdc5699e | |
| parent | add wolfenstein 3d to games directory (diff) | |
| download | s1n.pw-admin-bec4e31ea85e53445d29490824fb61035cccfe75.tar.xz s1n.pw-admin-bec4e31ea85e53445d29490824fb61035cccfe75.zip | |
various removals, fixes, changes
- remove license, readme
- update humans
- resources > doc
- todo.todo > spike/todo.todo
- mobile excludes for space invaders and wolf3d
| -rw-r--r-- | 404.html | 4 | ||||
| -rw-r--r-- | LICENSE | 21 | ||||
| -rw-r--r-- | README.md | 12 | ||||
| -rw-r--r-- | doc/easter-eggs.txt (renamed from resources/easter-eggs.txt) | 0 | ||||
| -rw-r--r-- | doc/paths.txt (renamed from resources/paths.txt) | 0 | ||||
| -rw-r--r-- | humans.txt | 2 | ||||
| -rw-r--r-- | space-invaders/index.html | 1 | ||||
| -rw-r--r-- | space-invaders/js/mobile.js | 4 | ||||
| -rw-r--r-- | spike/todo.todo (renamed from todo.todo) | 2 | ||||
| -rw-r--r-- | wolf3d/index.html | 7 | ||||
| -rw-r--r-- | wolf3d/js/main.js | 4 |
11 files changed, 18 insertions, 39 deletions
@@ -6,8 +6,8 @@ <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>s1nical - 404</title> <link rel="stylesheet" href="/404/css/main.css"> - <!-- Why am I so dumb, I just found why the css wasn't working on the 404 with a trailing slash on Stack Overflow, lol, then I - went through, through ALL of the files checking if I had any more "./" instead of absolute path and turns out this is the only file I didn't go through...--> + <!-- Why am I so dumb, I just found out why the css wasn't working on the 404 with a trailing slash on Stack Overflow, lol, then I + went through ALL of the files checking if I had any more "./" instead of absolute path and turns out this is the only file I didn't go through...--> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> </head> <body> diff --git a/LICENSE b/LICENSE deleted file mode 100644 index bfd6c8b..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2019 s1n - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. @@ -1,11 +1 @@ -🔧 [Status](https://s1nical.statuspal.io/?lang=en) 🔧 - -🔨 [Deploys](https://app.netlify.com/sites/s1nempty/deploys) 🔨 - -📡 [DNS](https://app.netlify.com/teams/s1nical/dns/s1n.pw) 📡 - -📄 [Project Page](https://github.com/users/s1nical/projects/1) 📄 - -📺 [Google Search Console](https://search.google.com/search-console/performance/search-analytics?resource_id=sc-domain%3As1n.pw) 📺 - -📈 [Google Analytics](https://analytics.google.com/analytics/web/?authuser=2#/report-home/a145087191w206671783p199514356) 📈 +hi ;)
\ No newline at end of file diff --git a/resources/easter-eggs.txt b/doc/easter-eggs.txt index f4ae6ac..f4ae6ac 100644 --- a/resources/easter-eggs.txt +++ b/doc/easter-eggs.txt diff --git a/resources/paths.txt b/doc/paths.txt index 1c667d9..1c667d9 100644 --- a/resources/paths.txt +++ b/doc/paths.txt @@ -18,7 +18,7 @@ Location: Oregon /* SITE */ -Last update: 2019/08/14 +Last update: 2019/08/16 Standards: HTML5, CSS3, JS and PHP7. diff --git a/space-invaders/index.html b/space-invaders/index.html index 71e2f11..03e49e3 100644 --- a/space-invaders/index.html +++ b/space-invaders/index.html @@ -7,6 +7,7 @@ <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>s1nical - Space Invaders</title> <link rel="shortcut icon" href="/space-invaders/favicon.png" type="image/x-icon"> + <script src="/space-invaders/js/mobile.js"></script> </head> <body> diff --git a/space-invaders/js/mobile.js b/space-invaders/js/mobile.js new file mode 100644 index 0000000..5807029 --- /dev/null +++ b/space-invaders/js/mobile.js @@ -0,0 +1,4 @@ +// CHECKS IF USER IS ON MOBILE +if (screen.width <= 480) { + location.href = '/mobile'; +}
\ No newline at end of file diff --git a/todo.todo b/spike/todo.todo index 874163e..47d241f 100644 --- a/todo.todo +++ b/spike/todo.todo @@ -1 +1 @@ -- [] Finish :)
+- [] Finish :) diff --git a/wolf3d/index.html b/wolf3d/index.html index d269b37..cc0bec0 100644 --- a/wolf3d/index.html +++ b/wolf3d/index.html @@ -4,12 +4,13 @@ <meta content="Wolfenstein 3D HTML5" name="description"></meta> <meta content="wolfenstein,3d,game,html5,javascript,engine" name="keywords"></meta> <title>s1nical - Wolfenstein 3D</title> - <link type="text/css" href="css/build.css" rel="stylesheet"></link> + <link type="text/css" href="/wolf3d/css/build.css" rel="stylesheet"></link> <script src="js/webkitAudioContextMonkeyPatch.js" type="text/javascript" language="javascript"></script> - <script async="" src="js/a.js"></script> - <script language="javascript" type="text/javascript" src="js/build.js"></script> + <script async="" src="/wolf3d/js/a.js"></script> + <script language="javascript" type="text/javascript" src="/wolf3d/js/build.js"></script> <link href="images/favicon.png" type="image/png" rel="shortcut icon"></link> <link href="images/favicon.png" type="image/png" rel="icon"></link> + <script src="/wolf3d/js/main.js"></script> </head> <body oncontextmenu="return false;"> <div id="resources"> diff --git a/wolf3d/js/main.js b/wolf3d/js/main.js new file mode 100644 index 0000000..5807029 --- /dev/null +++ b/wolf3d/js/main.js @@ -0,0 +1,4 @@ +// CHECKS IF USER IS ON MOBILE +if (screen.width <= 480) { + location.href = '/mobile'; +}
\ No newline at end of file |