Bus Ticketing System

Submitted by razormist on
Bus Ticketing System with Source Code is a C++ program that can make you purchase ticket easily in a computer generated way. The system was created using C++ language. This system is made easily so that you won't need to enter any login information in order to access the system. The user must enter a certain key to access the different feature of the system, adding the bus information, viewing the

Android Chatbots

Submitted by donbermoy on

This is a sample of Android Chatbot that you can use chats for embedding your app.

What are chatbots? Bots are software programs designed to simulate conversations. You send them a query and they send back a specific response based on that query. They have been integrated into messaging programs such as Facebook Messenger and Telegram via the bots store to provide users with information and content.

 

VIEW DEMO

Car Rental System

Submitted by razormist on
Car Rental System with Source Code is a C++ program that can make you rent a car through computer generated transaction. The system was developed using C++ language. The system is basically easier to manage, you just need to enter a key to proceed the transaction. The user has to access through a security login before renting a car. The program has a special feature that can generate rental

Pisay Online E-Learning System using PHP/MySQL

Submitted by donbermoy on
This is an Online E-Learning System for Philippine Science High School - Caraga Region Campus. This system uses PHP, JavaScript, Bootstrap templates, JQuery and MYSQL database. In the admin side, they can create their list of lessons, upload, edit, and delete the lessons or the contents. It has a module also for creating exercises with lists of questions with adding, editing, and deleting the

The Snake Game Using JavaScript

Submitted by razormist on
The Snake Game with Source Code is a JavaScript project that is a single-player game which is very popular and enjoyable game. The program was created using jQuery, CSS and HTML. The program is very easy to play, the player has to control the three green square shaped box (the snake) to play. You just have to press the arrow keys to move the snake, your goal is to eat those green boxes to grow

Covid-19 Mobile Tracker App (Coronavirus Tracker 2020)

Submitted by donbermoy on

Since Google Playstore and IOS Appstore prohibited from putting an app with regards to coronavirus updates because of misinformation. Today, I was able to finish my creation with this Corona Tracker Mobile app that will keep us updated with the current cases of Covid-19 around the world and also to our beloved country. The app uses an API of the World Health Organization, so all of the Covid-19 instances around the globe are in real-time, and this will avoid misinformation.

NumPy Accessing Arrays

Submitted by moazkhan on

In this tutorial you will learn:

  • Access NumPy Array
  • Accessing Arrays with Negative Index

Access NumPy Array

The elements of NumPy Array can be accessed by indexing, it’s very similar to accessing an element in an array. We already know that the index of an array start with zero.

Example

Access a 1-D array is very simple and straight forward we just need to pass the index in square brackets and print the value.