Skip to content
software development

Inspire innovation

software development

Inspire innovation

  • Home
  • Online Classes
  • In-person Training
softare development

What is Design Thinking?

codeflare March 21, 2021 No Comments

Design thinking is a type of design methodology in which the creator takes an iterative,…

Read More
software development

7 Good Reasons Why You Should Learn Software Development

codeflare March 20, 2021 No Comments

Software development is a process of devising, designing, specifying, programming, testing, debugging and maintaining software…

Read More
ethical hacking

Understanding SQL Injection Attacks

codeflare March 17, 2021 No Comments

Understanding SQL Injection Attacks is very paramount to building a secure web application. SQL injection…

Read More
ethical hacking

What is SSL?

codeflare March 15, 2021 No Comments

SSL stands for Secure Sockets Layer. It provides a secured and encrypted layer of privacy…

Read More
Cascading style sheet

Create a Diamond-shaped Image in CSS

codeflare March 8, 2021 No Comments

It is very common to see cropped images in diamond shapes in visual design. But…

Read More
Cascading style sheet

Create Diagonal Stripes in CSS

codeflare February 28, 2021 No Comments

We generally encounter striped design in most websites, magazines and flyers. But a diagonal stripe…

Read More
react native

Guide to Using React Native WebView

codeflare February 25, 2021 No Comments

WebView is essentially a component that is used to load a web pages in your…

Read More
php

Function Parameters in PHP | Fast & Easy

codeflare February 21, 2021 No Comments

Function parameters in PHP are small units of a program which can take some input…

Read More
php

PHP Arrays

codeflare February 17, 2021 No Comments

An array is a data structure that stores one or more similar type of values…

Read More
php

PHP Sessions: Count Number of Site Visits

codeflare February 15, 2021 2 Comments

Sessions in PHP are a way to make data accessible across the various pages of…

Read More
node.js

Create a Login Form With Node.js & MySQL

codeflare February 9, 2021 1 Comment

In our previous example, we saw how we can create a registration form using Node.js…

Read More
node.js

Create a Registration Form With Node.js & MySQL

codeflare February 7, 2021 No Comments

A registration form is used to collect data from potential users of your website. This…

Read More
node.js

Node.js: Working With Modules

codeflare February 3, 2021 No Comments

Modules are generally set of functions that you can include in your application. These could…

Read More
node.js

Getting Started With Node.js

codeflare January 29, 2021 No Comments

Created by a Joyent software engineer Ryan Dahl in 2009, Node.js is an open-source and…

Read More
programming

What is REST?

codeflare January 27, 2021 No Comments

REST stands for REpresentational State Transfer. REST is a system that allows users to request…

Read More
javascript

Javascript: Class Inheritance

codeflare January 25, 2021 No Comments

Inheritance is an important concept in Object Oriented Programming. Inheritance is the process whereby one…

Read More
javascript

Javascript: Object Oriented Programming

codeflare January 22, 2021 No Comments

Object Oriented Programming (OOP) is a way of writing code such that you can create…

Read More
javascript

Javascript: Working With Classes

codeflare January 20, 2021 No Comments

Introduced in ES6 as a major update to the Object Oriented Programming concept in Javascript,…

Read More
javascript

Null, Undefined and “Not defined” in Javascript

codeflare January 18, 2021 No Comments

In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different…

Read More
javascript

Callbacks, Promises and Async Await

codeflare January 15, 2021 No Comments

Callback functions, Promises, and Async Await are concepts fundamentally used by JavaScript to handle deferred…

Read More
react native

React Native: ActivityIndicator

codeflare January 13, 2021 No Comments

In React Native, an ActivityIndicator displays a loading circular mark which signals to the user…

Read More
react native

React Native: Make a POST Request Using Fetch

codeflare January 11, 2021 No Comments

What is a POST Request? The POST request is part of the Http methods which…

Read More
react js

React Lifecycle Methods: ComponentDidMount

codeflare January 9, 2021 No Comments

The componentDidMount() lifecycle method is called immediately after a component is mounted or, in simple…

Read More
react native

React Native: How to add Background Image

codeflare January 7, 2021 No Comments

As a software developer, there are times when you may need to set background image…

Read More
react native

Getting Started With React Native: Create a Class Component

codeflare January 4, 2021 2 Comments

The React Library allows you to define components either as classes or functions. These components…

Read More
react native

React Native: Remove Item From AsyncStorage

codeflare December 30, 2020 No Comments

React Native’s AsyncStorage provides a light storage system where you can both store and retrieve…

Read More
java

Number Class in Java

codeflare December 28, 2020 No Comments

Usually in Java when we work with numbers, we will represent these numbers with any…

Read More
react native

React Native: Working With State

codeflare December 24, 2020 No Comments

When working with React, in this case React Native, there are times when you might…

Read More
javascript

Javascript: Rest Parameters

codeflare December 22, 2020 No Comments

The rest parameter is an ES6 syntax that is used to represent an indefinite number…

Read More
react native

Retrieve Data From AsyncStorage

codeflare December 21, 2020 No Comments

The AsyncStorage presents a simple and elegant way for React Native developers to store and…

Read More
react native

React Native: Store Items in AsyncStorage

codeflare December 17, 2020 No Comments

The AsyncStorage lets you store some reasonable amount of data on users’ device. Let’s see…

Read More
react native

React Native: Working With AsyncStorage

codeflare December 16, 2020 No Comments

According to the React Native docs, AsyncStorage is an unencrypted, asynchronous, persistent key-value storage system…

Read More
java

To Reverse A String: StringBuffer in Java

codeflare December 15, 2020 No Comments

Java provides the StringBuffer and String classes. The String class is used to manipulate character…

Read More
javascript

Working With XMLHttpRequest

codeflare December 12, 2020 No Comments

The XMLHttpRequest is a Javascript object that is used to interact with web servers. The…

Read More
javascript

Working With Fetch API

codeflare December 11, 2020 1 Comment

If you are writing a web application, there is every possibility that at some point…

Read More
javascript

Switch Case

codeflare December 10, 2020 No Comments

A switch statement gives an expression a value to evaluate and several different statements to…

Read More
javascript

Debugging Your Javascript Code

codeflare December 9, 2020 No Comments

Web browsers generally have consoles, which are interactive command lines where you can print text…

Read More
javascript

Pure And Impure Functions in Javascript

codeflare December 8, 2020 No Comments

Pure Functions A pure function in Javascript is one that given the same input will…

Read More
java

Return Statements in Java

codeflare December 7, 2020 No Comments

In a return statement in Java, we evaluate expressions, and as part of this evaluation,…

Read More
java

Access Modifiers in Java

codeflare December 3, 2020 No Comments

Modifiers are keywords that are added to variables, methods and classes to change their meaning.…

Read More
java

Looping in Java

codeflare December 2, 2020 No Comments

A loop statement allows the programmer to execute a statement or group of statements multiple…

Read More
ethical hacking

5 Habits of a Security-Conscious Developer

codeflare December 1, 2020 No Comments

Given the amount of security breaches that go on everyday, there is hardly any security-conscious…

Read More
java

Working With Arrays in Java

codeflare November 30, 2020 No Comments

Arrays refer to a sequential collection of elements of the same type. It is used…

Read More
java

Throw And Throws Exception in Java

codeflare November 28, 2020 No Comments

Throw Throw is a keyword that is used in Java to declare an exception which…

Read More
javascript programming

What are Relational Operators?

codeflare November 27, 2020 No Comments

Unlike logical operators which connect two or more expressions, relational operators test and establish some…

Read More
javascript

Template Literals

codeflare November 26, 2020 No Comments

Template literals allow for embedded expressions and help to solve the complex concatenation problem. They…

Read More
programming

Logical Operators

codeflare November 25, 2020 No Comments

“Programs must be written for people to read, and only incidentally for machines to execute.”…

Read More
ethical hacking

5 Network Scanning Tools

codeflare November 24, 2020 No Comments

Network scanning is the process of identifying, analysing and fixing loopholes and vulnerabilities in a…

Read More
Cascading style sheet

Box shadows in CSS

codeflare November 23, 2020 No Comments

The box shadow property in CSS is used to cast shadow on the frame of…

Read More
javascript

Working With Functions

codeflare November 20, 2020 No Comments

A function is a group of reusable code that can be called anywhere in your…

Read More

Posts pagination

1 … 8 9 10

« Previous Page — Next Page »

You Missed

softare development

React Native vs. Flutter: Which is Best to Build Mobile Apps in Abuja?

Android programming softare development

How to Hire the Best Software Developers for Your Mobile App Development Project in Abuja

javascript softare development

How to Dynamically Create, Update, and Delete HTML Elements

javascript softare development

Why parseInt(’09’) Returns 0

software development

Inspire innovation

Copyright © All rights reserved | Blogus by Themeansar.

  • Facebook
  • Instagram
  • Email