Tag

Console Application

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Mar 18, 2024 · Backend Development

A Quick Introduction to Python Web Scraping for Recipe Websites

This article walks through a five‑minute Python web‑scraping tutorial that fetches recipe pages, parses HTML with urllib and BeautifulSoup, extracts titles and images, and wraps the workflow into a simple console application for random meal selection.

AutomationBeautifulSoupConsole Application
0 likes · 12 min read
A Quick Introduction to Python Web Scraping for Recipe Websites
Python Programming Learning Circle
Python Programming Learning Circle
Dec 11, 2023 · Fundamentals

Python Movie Ticket Booking System with Seat Selection and Film Selector

This article presents a complete Python console application that demonstrates how to build a movie ticket booking system, including data structures for film information, a seat‑booking class with interactive reservation methods, a film‑selection interface, and a controller that ties everything together, accompanied by full source code listings.

Console ApplicationProgramming TutorialPython
0 likes · 10 min read
Python Movie Ticket Booking System with Seat Selection and Film Selector
Python Programming Learning Circle
Python Programming Learning Circle
Nov 7, 2023 · Fundamentals

Python Student Information Management System Tutorial

This tutorial presents a complete Python console program for managing student records, explaining its features, step‑by‑step implementation of add, delete, modify, search, and display functions, and providing full source code with example usage screenshots.

CRUDConsole Applicationstudent-management
0 likes · 11 min read
Python Student Information Management System Tutorial
Java Captain
Java Captain
Dec 31, 2021 · Backend Development

Simple Food Delivery Ordering System (No Database) Implemented in Java

This article presents a step‑by‑step tutorial for building a console‑based food delivery ordering system in Java without a database, covering entity class design, DAO interfaces, management classes for admins, dishes, orders and users, as well as a menu‑driven UI and sample test code.

CRUDConsole ApplicationOOP
0 likes · 19 min read
Simple Food Delivery Ordering System (No Database) Implemented in Java
Top Architect
Top Architect
Dec 28, 2020 · Backend Development

Building a Simple Food Ordering System in Java (No Database)

This tutorial walks through creating a complete, database‑free food ordering system in Java, covering class design for dishes, users, orders, and administrators, implementing CRUD operations with in‑memory maps, and providing a console menu for both admin and customer interactions.

Backend DevelopmentCRUDConsole Application
0 likes · 22 min read
Building a Simple Food Ordering System in Java (No Database)
Java Captain
Java Captain
Dec 19, 2020 · Backend Development

Java Vehicle Rental System Implementation with Classes, Inheritance, and Service Logic

This article presents a complete Java console application for a vehicle rental system, detailing class designs for vehicles, cars, buses, a management class, service logic for renting, and a test driver, along with full source code examples.

Console ApplicationOOPVehicle Rental
0 likes · 10 min read
Java Vehicle Rental System Implementation with Classes, Inheritance, and Service Logic
Java Captain
Java Captain
Nov 29, 2020 · Backend Development

Simple Food Delivery Ordering System (No Database) – Java Console Implementation

This article presents a complete, step‑by‑step Java console application that implements a rudimentary food‑delivery ordering system without a database, covering entity classes, a generic DAO interface, in‑memory management classes for admins, dishes, users and orders, a menu‑driven UI, and a test driver.

Backend DevelopmentCRUDConsole Application
0 likes · 21 min read
Simple Food Delivery Ordering System (No Database) – Java Console Implementation