From 1118cf7feb1f78c9041b21c50a7146b61c1b3e38 Mon Sep 17 00:00:00 2001 From: derDere <36049068+derDere@users.noreply.github.com> Date: Mon, 17 Apr 2023 10:03:31 +0200 Subject: [PATCH] Updated Links GitHub change the way they host websites. they now always have https and also use io at the end. Also the befunge folder name was incorrect. this change should fix the links. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc0986a..55f5115 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,14 @@ homepage: https://github.com/qiao/javascript-playground ### Project List ### -1. [Visual Befunge93 Interpreter](http://qiao.github.com/javascript-playground/befunge93/) +1. [Visual Befunge93 Interpreter](https://qiao.github.io/javascript-playground/visual-befunge93-interpreter/) Visual Befunge93 interpreter using HTML5 canvas. This is my first attempt on Javascript, so the code is a bit messy. -2. [WebGL Tree](http://qiao.github.com/javascript-playground/webgl-tree/) +2. [WebGL Tree](https://qiao.github.io/javascript-playground/webgl-tree/) A simple demo using the awesome [Three.js](https://github.com/mrdoob/three.js) to generate a tree by recursion. -3. [Vigenere Cipher](http://qiao.github.com/javascript-playground/vigenere-cipher/) +3. [Vigenere Cipher](https://qiao.github.io/javascript-playground/vigenere-cipher/) A demo of cracking Vigenere cipher. This is my homework for Cryptography and Network Security.