Python

Python Source Code

Free Python Source Code. Download from a vast collections of free Python source code below. Games are also available like Rock Paper Scissors Game and a lot more.

Database Information System in Java

Submitted by Bhaumik Mistry on
This project is database information system using java. It is connected to ms access database to the jdbc/odbc driver. You will learn how to save, edit delete and create new transactions in this system. The user can also view records using next, previous, first and last buttons. This is easy to used system. Hope you learn from this.

Logic Gates Project in Visual Basic

Submitted by donbermoy on
Good day! I want to share this project called the Logic Gates written in Visual Basic. We all know that a logic gate is an elementary building block of a digital circuit. In this project, it has AND, OR, NOR, NOT, XOR, AND XNOR gates. You can also input values like 0 and 1 to build the output of a specific gate. This project also builds truth table of the chosen gate and shows the image of the

Database Application In Java

Submitted by Joshua1 on
Hello, everyone. I’m Joshua and I want to share my very first code here on Sourcecodester. It’s a simple database application with a User Graphical Interface [GUI] that shows how to code the main four CRUD [Create, Retrieve, Update, Delete] operations. In this code you’ll learn how to do so many things like how to add, save, update, delete, search, connect to database and write a login class plus

Simple Grading System in Eclipse (Java + Access)

Submitted by donbermoy on
This is a Simple Student Grading System written in Java as the fontend and MS Access 2007 as backend and was programmed in Eclipse.This was a student project of my students in their Java Programming Subject. This features to add, edit, delete, and search a specific student and will enter their prelim, midterm, prefinal, and final grade then compute the General Weighted Average or GWA of the

Disable an Input Character in Java

Submitted by donbermoy on
This tutorial will teach you how to create a program that will disable a specific input of a character in java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of disableInputChar.java. 2. Import the swing package library: import javax.swing.*; // used to access the JComponent,JFrame,JTextField, and KeyStroke class 3. We will initialize

Rotating Border in CSS

Submitted by GeePee on
This project will teach you how to create a rotating border using pure css. There are different tricks on how to do this. First, we have to create four div's and set a border-bottom to 5px dashed. It will create a dashed lines. Form lines to a square. Animate lines to linear with a duration of 6 seconds infinite. Hope you learn from this.