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
Showing posts with the label brick
Brick Breaker Game in JAVA
- Get link
- X
- Other Apps
Brick Breaker Game in JAVA How to make a BrickBreaker game? 1. Create a new project and name it BrickBreaker and paste the source code which is given below. import javax.swing.JFrame; public class BrickBreaker { public static void main(String[] args) { JFrame obj = new JFrame(); Gameplay gameplay = new Gameplay(); obj.setBounds(10,10,700,600); obj.setTitle("BrickBreaker"); obj.setResizable(false); obj.setVisible(true); obj.setDefaultCloseOperation(JFrame. EXIT_ON_CLOSE ); obj.add(gameplay); } } 2. Creat new class two new class and name it "Gameplay" & "MapGentrator" as shown below After creating these class paste source code which is given below respectively. For Gameplay class. import javax.swing.JPanel; import javax.swing.Timer; import java.awt.Graphics2D; import java.awt.Rectangle; import java.awt.Graphics; import java.awt.Color...