In this project, we are going to build a Uniform Resource Locator (URL) shortener service. I am pretty sure that most of you have heard of bit.ly, goo.gl, and...
Topic: Languages
Adding Custom Methods to LINQ Queries in C#
By introducing extension methods to the IEnumerable interface, you may expand the set of methods available for LINQ queries. For example, you can convert any...
Integrating Firebase with Django
Firebase is a backend data storage platform provided by Google which provides a wide range of data storage services to help build applications seamlessly. It...
How to Store your Python Functions into Modules
In Python, you can save the definitions of functions in a file called a module. It is possible to import module definitions into your program file. We can...
How to Store Unicode Characters using Literals in Java
Meaningless data elements are called literals because they have fixed values. In Java, literals are also known as constants. It is possible to represent a...
Getting Started with Bootstrap
Bootstrap is a front-end framework for developing responsive web projects. It has a powerful grid system, flexible media objects, and a powerful color system....
How to Build a Simple Router in JavaScript using Window Event Listeners
A router is a JavaScript object that maps URLs to functions. The router calls a function based on the URL. In the past, a web application was a series of...
Building your first mobile application using Python
There is a recent transformation into the development of multi-platform languages and frameworks. This is where are one library is used to develop...
Creating a web Component With Vanilla JavaScript
Web application development is a pretty crowded field of technology. There are different types of frameworks, libraries, and tools. While developing web apps,...