diff --git a/src/Greeting.jsx b/src/Greeting.jsx index 79f3f6e..8c18801 100644 --- a/src/Greeting.jsx +++ b/src/Greeting.jsx @@ -18,11 +18,11 @@ class Greeting extends Component {
+
+

+ + + + + + Ramble was a web project I created during my master's degree to + create a startup. In this project, I was the CTO and built a + website that allowed users to stream their podcasts live and + accept call-ins in a similar vein to talk shows! I learnt the + entire javascript web development stack from React to audio + streaming to DevOps in order to make it a reality. + . +

+ + It also had chatroom functionality with the ability to + re-stream to audiences much like other apps that came out in + the time since, such as Clubhouse. + +

+ + During the project's lifespan of just under two years, I mostly + worked on creating the streaming functionality of the project + and managing how the project was designed to function behind + the hood when it was deployed. I learned a ton about how web + deployment works during this time allowing me to work on web + development modules in the Games Academy at Falmouth University + today. + +

+ + Here's a demo of the project I took before we moved on. + +

+

+ +
+ + + + + ); + } +} + +export default Ramble; diff --git a/src/index.jsx b/src/index.jsx index a0c5393..c979616 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -13,12 +13,8 @@ class App extends Component { return ( - - - import("./Home").then((module) => module.default) - } - /> + import("./Contact").then((module) => module.default) } @@ -27,6 +23,10 @@ class App extends Component { import("./Ramble").then((module) => module.default) } /> + + import("./UniGraphics").then((module) => module.default) + } + /> import("./GraphicsBlog").then((module) => module.default) } @@ -36,6 +36,7 @@ class App extends Component { } /> + ); } diff --git a/static/javascript/background.js b/static/javascript/background.js index 4a0c200..030c973 100755 --- a/static/javascript/background.js +++ b/static/javascript/background.js @@ -8,8 +8,6 @@ canvas.style.cssText = ` top:0; z-index:-99999; ` -console.log("HEY"); - // set it's size canvas.width = window.innerWidth; canvas.height = window.innerHeight;