Dummy E-com API for Staging and Development https://dummy-ecom-api.herokuapp.com Why Dummy E-com API? A Dummy API is useful during development and testing when live data is either unavailable or unreliable. As someone who wants to practice developing e-commerce websites, it might be hard to find any dummy data to use as a placeholder throughout the development phase. Some e-commerce platform provide APIs but, these APIs are complex in implementation and includes Authorization. Features Supports Pagination. Supports Dummy users. Supports filter like, product name, price range, ratings range, total sales, category. Supports Token authentication. Each products has 3 different size of images. GET YOUR API KEY
Posts
CREATE LOGIN WINDOW IN C# STEP BY STEP
- Get link
- X
- Other Apps
CREATE LOGIN WINDOW IN C# STEP BY STEP A windows form application is an application, which is designed to run on a computer. It will not run on a web browser because then it becomes a web application. This Tutorial will focus on how we can create Windows-based applications. We will also learn some basics on how to work with the various elements of Windows applications. Step 1 Open any version of Visual Studio you have installed in your machine; I have Visual Studio 10. When open it will look like this: Step 2 Click on the middle tab of the new project. When you click it will look like this: Step 3 In Installed Templates the first option is Visual C# language and then select Windows Forms application. In the following see the Name label and already show the default name WindowFormsApplication7. You can change the name as you wish or as per program creation you can mention and click and OK. Step 4 After clicking OK a simple Windows Forms form will look like:...
- Get link
- X
- Other Apps
How to make a simple calculator in JAVA using swing Java Swing is a GUI (graphical user Interface) widget toolkit for Java. Java Swing is a part of Oracle’s Java foundation classes. Java Swing is an API for providing graphical user interface elements to Java Programs. A swing was created to provide more powerful and flexible components than Java AWT (Abstract Window Toolkit). In this article, we will use Java Swing components to create a simple calculator with only +, -, /, * operations. For detailed explanation click on the link which is given below: https://youtu.be/wxPWr2yUq5I For Source Code click here To download compiler click here Thanks
How to make a program to convert Binary into Decimal in C/C++
- Get link
- X
- Other Apps
How to make a program to convert Binary into Decimal in C/C++ First of all, we are going to discuss the logic behind the conversion of Binary number into the Decimal number. Conversion of binary to decimal (base-2 to base-10) numbers and back is an important concept to understand as the binary numbering system forms the basis for all computer and digital systems. The decimal or “denary” counting system uses the Base-of-10 numbering system where each digit in a number takes on one of ten possible values, called “digits”, from 0 to 9 , eg. 213 10 (Two Hundred and Thirteen). But as well as having 10 digits ( 0 through 9 ), the decimal numbering system also has the operations of addition ( + ), subtraction ( – ), multiplication ( × ) and division ( ÷ ). In a decimal system, each digit has a value ten times greater than its previous number and this decimal numbering system uses a set of symbols,...
How to make C program to convert Fahrenheit into Celsius
- Get link
- X
- Other Apps
How to make C program to convert Fahrenheit into Celsius Temperature conversion formula Temperature conversion formula from degree Celsius to Fahrenheit is given by - Celsius = 5/9(Farenhite - 32) The logic to convert temperature from Celsius to Fahrenheit The logic of temperature conversion exists in converting the mathematical formula to C expression. You just need to convert mathematical formula of temperature in C language. Rest is simple input/output. Below is the step by step descriptive logic to convert temperature from degree Celsius to Fahrenheit. Input temperature in Celsius from the user. Store it in some variable say celsius . Apply formula to convert the temperature to Fahrenheit i.e. fahrenheit = (celsius * 9 / 5) + 32 Print the value of Fahrenheit . Program to convert temperature from Celsius to Fahrenheit /** * C program to convert temperature from degree celsius to ...
- Get link
- X
- Other Apps
Tetris Game In JAVA Welcome back guys sorry for the delay but I am back with the new project "Tetris Game" an old school, so here are the steps to create this game P.S.: Use Netbeans compiler To download Netbeans click here If you guys want to download this file click here Steps 1.) Create a new project and name it "Tetris". 2.) Create eight classes and name it "TetrisFrame","TetrisPanel","TetrisShape1","TetrisShape2","TetrisShape3","TetrisShape4","TetrisShape5" as shown in figure. 3.) Source Code for these classes is given below respectively. For class TetrisFrame import java.awt.Color; import java.awt.Dimension; import java.awt.Toolkit; import javax.swing.JFrame; public class TretisFrame extends JFrame{ private static final long serialVersionUID = 1L; public TretisPanel pan; public Dimension dim; int l...