OIOliver Ingleinoliveringle.hashnode.dev·Jan 17, 2022 · 16 min read2022 Web Development GuideWeb development is the domain of programming that deals with making websites. It is a complicating but interesting process, and can be quite a valuable skill! So how would I go about learning to be a full stack web developer if I was to start from sc...00
OIOliver Ingleinoliveringle.hashnode.dev·Nov 13, 2021 · 4 min readAll about DockerHello Developers! By Now you must have heard of Docker and Docker containers, but you might not know what they are yet. In this blog I will explain exactly what Docker is and teach you the basics in order for you to build you first container What is...00
OIOliver Ingleinoliveringle.hashnode.dev·Sep 19, 2021 · 5 min readFinishing my project ( n°5 )Hello again Today I went mega coding session and finished my first react project! I decided that I would make the app display data from a bunch of API's. To do this i created this component called Widget that takes in a params object in the props. Th...00
OIOliver Ingleinoliveringle.hashnode.dev·Sep 4, 2021 · 1 min readRouters and API's ( n°4 )A few more days have gone by and i have made so more progress in my course, here is what i have learnt : the React Router: The React Router is what lets you add routes to your app, and its quite straight forward! First of all you import Reacts brows...00
OIOliver Ingleinoliveringle.hashnode.dev·Sep 1, 2021 · 1 min readCreated an animated menu ( n°3 )Created a menu that slides in from the side and has an opaque mask To do this I used: The React Springs libraryconst maskTransitions = useTransition(showMenu, { from: { opacity: 0 }, enter: { opacity: 1 }, leave: { opacity: 0 }, ...00