diff --git a/Icons/icons8-discord-logo-60.png b/Icons/icons8-discord-logo-60.png deleted file mode 100644 index 8e0e35b..0000000 Binary files a/Icons/icons8-discord-logo-60.png and /dev/null differ diff --git a/Icons/icons8-github-60.png b/Icons/icons8-github-60.png deleted file mode 100644 index 5d36d60..0000000 Binary files a/Icons/icons8-github-60.png and /dev/null differ diff --git a/Images/code.png b/Images/code.png deleted file mode 100644 index 0ee529e..0000000 Binary files a/Images/code.png and /dev/null differ diff --git a/README.md b/README.md index 08d9308..1b6c9e6 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # Stone-Red-Code.github.io > My old personal website -

-https://stone-red-code.github.io/ ## Visit the new one -http://stone-red.net + +[me.stone-red.net](https://me.stone-red.net) diff --git a/Scripts/fun.js b/Scripts/fun.js deleted file mode 100644 index 796d8db..0000000 --- a/Scripts/fun.js +++ /dev/null @@ -1,45 +0,0 @@ -let speed = 20; -let scale = 0.15; -let canvas; -let ctx; - -let image = { - x: -4, - y: -4, - xspeed: 5, - yspeed: 5, - img: new Image() -}; - -(function main() { - canvas = document.getElementById("mainpanel"); - ctx = canvas.getContext("2d"); - image.img.src = 'https://github.com/Stone-Red-Code.png'; - canvas.style.width = '100%'; - canvas.style.height = '100%'; - canvas.width = 1000; - canvas.height = 500; - update(); -})(); - -function update() { - setTimeout(() => { - ctx.drawImage(image.img, image.x, image.y, image.img.width * scale, image.img.height * scale); - - image.x += image.xspeed; - image.y += image.yspeed; - - checkCollision(); - update(); - }, speed) -} - -function checkCollision() { - if (image.x + image.img.width * scale >= canvas.width || image.x <= 0) { - image.xspeed *= -1; - } - - if (image.y + image.img.height * scale >= canvas.height || image.y <= 0) { - image.yspeed *= -1; - } -} \ No newline at end of file diff --git a/Scripts/loadNavBarAndFooter.js b/Scripts/loadNavBarAndFooter.js deleted file mode 100644 index 656be72..0000000 --- a/Scripts/loadNavBarAndFooter.js +++ /dev/null @@ -1,12 +0,0 @@ -$.get("header.html", function (data) { - $("#header-placeholder").replaceWith(data); - document.getElementById('header-title').innerHTML = document.querySelector('title').textContent; -}); - -$.get("nav.html", function (data) { - $("#nav-placeholder").replaceWith(data); -}); - -$.get("footer.html", function (data) { - $("#footer-placeholder").replaceWith(data); -}); \ No newline at end of file diff --git a/Scripts/loadProjects.js b/Scripts/loadProjects.js deleted file mode 100644 index 6adf4b0..0000000 --- a/Scripts/loadProjects.js +++ /dev/null @@ -1,45 +0,0 @@ -const request = new XMLHttpRequest(); -const main = document.getElementById("projectslist"); -request.open('GET', 'https://api.github.com/search/repositories?q=user:stone-red-code'); -request.responseType = 'text'; -request.onload = function() { - let jsonData = JSON.parse(request.response); - for (let i = 0; i < jsonData.items.length; i++) { - let item = jsonData.items[i]; - addItem(item); - } -}; - -function addItem (item) -{ - let row = document.createElement("div"); - let col = document.createElement("div"); - let jumbotron = document.createElement("div"); - let heading = document.createElement("h2"); - let description = document.createElement("p"); - let repo = document.createElement("a"); - - row.classList.add("row"); - col.classList.add("col"); - jumbotron.classList.add("jumbotron"); - jumbotron.classList.add("p-5"); - jumbotron.classList.add("fade-in"); - - jumbotron.appendChild(heading); - jumbotron.appendChild(description); - jumbotron.appendChild(repo); - col.appendChild(jumbotron); - row.appendChild(col); - - - let head = document.createTextNode(item.name); - let desc = document.createTextNode(item.description); - repo.innerHTML = "Repository"; - repo.href = item.html_url; - - heading.appendChild(head); - description.appendChild(desc); - - main.appendChild(row); -} -request.send(); \ No newline at end of file diff --git a/Scripts/quotes.js b/Scripts/quotes.js deleted file mode 100644 index a610aa4..0000000 --- a/Scripts/quotes.js +++ /dev/null @@ -1,35 +0,0 @@ - let answerArray = new Array( - "“A million sorry’s is not equal to 1 thank you.” – Emilia (Re:Zero)", - "“When you said that you hate yourself, it made me want to tell you all the wonderful things I know about you.” – Rem (Re:Zero)", - "“No matter what happens, even when it looks like you’re gonna lose, when no one else believes in you, when you don’t believe in your self, I will believe!” – Rem (Re:Zero)", - "“Please let me believe in everything you believed in. Let me believe that life is great.” - Kanade Tachibana (Angel Beats!)", - "“God is so cruel. He stole all my happiness away.” - Yuri Nakamura (Angel Beats!)", - "“I only wanted to love you, to make you proud.” - Yuri Nakamura (Angel Beats!)", - "“Even death can’t cure idiocy.” – Yui (Angel Beats!)", - "“Why am I myself, and not somebody else.” – Yuu Otosaka (Charlotte)", - "“Trying to forget someone you love is like trying remember someone you never met.” – Yuu Otosaka (Charlotte)", - "“It's hard to admit that, you're not as strong as everyone believes you are.” – Yuu Otosaka (Charlotte)", - "“Life is something you live only once, right?” – Sala Shane (Charlotte)", - "“You seem happy from the bottom of your heart. That also makes me just as happy.” – Sala Shane (Charlotte)", - "“The scars that you can’t see are the hardest to heal.” – Nao Tomori (Charlotte)", - "“Happiness is not the absence of problems, it's the ability to deal with them.” – Nao Tomori (Charlotte)", - "“The scariest about distance is you don't know wether they'll miss you or forget about you.” – Nao Tomori (Charlotte)", - "“Do you think I am ok? No... I just learned to be strong and try to hide my real feelings all the time.” – Nao Tomori (Charlotte)", - "“Life is not a game of luck. If you wanna win, work hard.” – Sora (No Game No Life)", - "“There is more than one way to win a game. You can win without fighting!” – Sora (No Game No Life)", - "“There’s no more trusted observer than someone who suspects you.” – Sora (No Game No Life)", - "“In a real war, what fool waits for their enemy’s turn?” – Sora (No Game No Life)", - "“We do not stop playing games because we grow old, we grow old because we stop playing.” – Sora (No Game No Life)", - "“In reality, the least interesting answer is usually the correct one.” – Tet (No Game No Life)", - "“Chess is no different than tic-tac-toe.” – Shiro (No Game No Life)", - "“A temporary defeat is nothing if it leads to ultimate victory!” – Stephanie Dola (No Game No Life)", - "“Make the best of a bad situation.” – Aqua (KonoSuba)", - "“This sunlight is my worst enemy after three straight all-nighters.” – Kazuma Satou (KonoSuba)", - "“Maybe we can't win alone, but the two of us together can!” – Ichigo (Darling in the Franxx)", - "“If you have anything you wanna say, you better spit it out while you can. Because you’re all going to die sooner or later.” – Zero Two (Darling in the Franxx)", - "“When I saw magic being used for evil and good, I realized I wanted to lead the human race down the right path.” – Rumia Tingel (Akashic Records Of Bastard Magic Instructor)", - "“The trick is to find something you can care about and just live for that.” – Glenn Radars (Akashic Records Of Bastard Magic Instructor)" - ); - - document.getElementById('quotes').innerHTML = answerArray[Math.floor(Math.random() * answerArray.length)]; - document.getElementById('quotes').classList.add("fade-in"); \ No newline at end of file diff --git a/_config.yml b/_config.yml index a3c92f8..baa5a04 100644 --- a/_config.yml +++ b/_config.yml @@ -10,6 +10,5 @@ include: - LICENSE.md - COPYING.md - CODE_OF_CONDUCT.md - - CONTRIBUTING.md - ISSUE_TEMPLATE.md - PULL_REQUEST_TEMPLATE.md diff --git a/footer.html b/footer.html deleted file mode 100644 index 1519a6c..0000000 --- a/footer.html +++ /dev/null @@ -1,44 +0,0 @@ -
- -

\ No newline at end of file diff --git a/fun.html b/fun.html deleted file mode 100644 index f517449..0000000 --- a/fun.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - Fun - - - - - - - -
- -
- - - - - - - -
-
-
-
- -
-
-
-
- - - - - -
- - - - - - - - \ No newline at end of file diff --git a/header.html b/header.html deleted file mode 100644 index 8ebe76a..0000000 --- a/header.html +++ /dev/null @@ -1,9 +0,0 @@ -
-
-
-
-

-
-
-
- -
\ No newline at end of file diff --git a/index.html b/index.html index c865bb5..5ed73d6 100644 --- a/index.html +++ b/index.html @@ -1,90 +1,9 @@ - + +Redirecting to https://me.stone-red.net/ + + - - - - Stone-Red-Code - - - - - - - - - -