Software Development

How to create media query for a Material UI Modal

To create a media query for a Material UI modal in React, you can use CSS media queries. First, you’ll need to determine the breakpoint at which you want the modal to be displayed differently. For example, let’s say you want the modal to be displayed as a full-screen dialog on small screens and as a centered dialog on larger …

Read More »

Free Web Development Training – From the basics – HTML & CSS

So, you wish to become a software developer, and you don’t know where to start? We at Devs and Techies are taking 15 young individuals on a journey to mastering the fundamentals of web development in 2 weeks – FOR FREE!!! Starting July 15, 2022 – July 29 – 2022. 3 classes weekly 100% online classes Slots available for 15 …

Read More »

Run a tech business? You may need a technology partner

Technology partner in a tech business

A Technology Partner exists to help organizations implement and optimize their technical systems. These partnerships usually exist between the technology providers that provide products and the institutions and companies that use these systems in their daily operations. The association can also provide platform integration support for companies that use IT systems from different companies that need to work in sync …

Read More »

Phases of the Software Development Life Cycle

Software Development Life Cycle

The Software Development Life Cycle (SDLC) is a defined process, used for planning, creating, testing, and developing high-quality softwares and information systems, to meet customer expectations. SDLC consists of a detailed plan with its own process and deliverables that feed into the next phase. It is also referred to as an Application Development life-cycle. SDLC Phases; Phase 1: Requirement collection …

Read More »

How to use IndexDB, LocalStorage and Session Storage – Browser Storage

IndexDB vs LocalStorage vs Session Storage? Which of these browser storage options should you go for in your project? Modern web browsers support multiple ways for users to store data on their computer – and of course with the user’s permission, then retrieve the data when needed. Such information could be login data, user session details, user information, etc. These …

Read More »

Memento Design Pattern by Oladipo Timothy

memento design pattern

The Memento pattern is best used whenever we want to keep track of changes to the state of an object. Most time in a chess game or perhaps in an application that undo-s. We want to be able to go the previous state of an object easily. The easiest solution that comes to mind is keeping such changes in a …

Read More »

How to fix: Prop types validation error – is missing in props validation (2022)

props validation

‘React eslint error missing in props validation’ error appears when trying to compile your React App? There are a number of ways to fix this quickly, but here’s the fastest; To fix the ‘React eslint error missing in props validation’ when developing a React app, we can set the prop types of the props in the component causing the error. …

Read More »

How to create a Github repository and use Git – all Github commands list 2022

GitHub Repository Guide – a step-by-step guide on how to create GitHub repositories on VS Code and how to use GitHub. Visual Studio Code is one of the foremost source code editing softwares for building, editing, and debugging codes. It was made by Microsoft in 2015 and has since gained popularity across several operating systems, due to its simplicity, and …

Read More »

Software development for beginners – Getting Started

software development

Thrilled to learn software development? Interestingly, there are tons and heaps of materials out there, and you don’t just know where to start! You’re getting overwhelmed! Take a deep breath, we’ll simplify this for you from experience… Software development has become the next big thing in this present day! Business environments are evolving, every country in the world wishes to …

Read More »

Fix Page not Found Error for React Router on Netlify App

Were you trying to deploy a live React App on Netlify and you ran into a “Page not found” error while navigating to inner pages in your routes. The error often looks like this; Why do we see this error? React Router handles routing on the client-side (browser) so when you visit a non-root page (e.g. https://yoursite.netlify.com/else), Netlify (server-side) does …

Read More »