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.

Fifteen Puzzle

Submitted by Oelasor on
This program is a modification to the picture swapping puzzle I recently submitted. The puzzle is similar to the popular sliding Fifteen Puzzle only that it can be customized to have more or less than 15 movable image cells. The minimum and maximum sizes of the puzzle are 3 x 3 (9 - 1 = 8 movable cells) and 13 x 13 (169 - 1 = 168 movable cells) respectively. The puzzle allows the display of cell

Refferral System

Submitted by rhenz23 on
Hi.,Im renz ,. I'm beginner in sourcecodester,.hope you like this code,.you can modify it,. Description : Can Print the applicant's name and the adress of the company applied, postion applied.,and also the flash background:) Hope You like It:) database name peso.sql., just contact me,.for more information,.tnx:) +639075790118

Picture Puzzle

Submitted by Oelasor on
A simple picture swapping puzzle that demonstrates the use of the BitBlt and Rectangle API predefined functions. The puzzle can be played by alternately clicking two cell images. The first click selects the first image and the second click swaps the newly selected image with that of the previous one. Hope you enjoy playing with the puzzle and the codes...

PHP Pagination

Submitted by EmbuscadoGeoff on
Viewing of datas on a web pages is very important, but not all datas should be viewed by the client. There is always a restrictions or limits when it come to viewing of datas from a web-enabled database. Hi my name is Geoffrey Embuscado, Im new to sourcecodester and I made a PHP application just to share my knowledge I obtained at the Jose Rizal University also my current school. Im a third year

CPU Scheduling Algorithms

Submitted by Oelasor on
A simple program demonstrating the preemptive and non-preemptive CPU scheduling algorithms (First Come First Serve, Shortest Process First, Shortest Remaining Time First, Priority Scheduling - both preemptive and non-preemptive, and Round Robin. The program includes customizable list of processes wherein the user can enter new ones, edit and delete existing processes. It also includes an execution

VB 6.0 Source Code to Flowchart Converter

Submitted by Oelasor on
This is an unfinished version of a program that generates flowcharts from VB 6.0 source codes. I got bored before I was able to finish it, yet it is very interesting and a bit challenging. Perhaps someone out there would take some spare time to mingle with the codes...you know...just for fun... It lets the user view the code modules of most of the VB 6.0 objects such as Forms, UserControls, Class

Send Mail with SMTP Server

Submitted by [email protected] on
Sample code on how to send mail using SMTP Server. Public Function mailcall(ByVal mail_id) Try SmtpServer.Credentials = New _ Net.NetworkCredential("[email protected]", "*****") SmtpServer.EnableSsl = True SmtpServer.Port = 587 SmtpServer.Host = "smtp.gmail.com" mail = New MailMessage() mail.From = New MailAddress("[email protected]") mail.To.Bcc.add(mail_id) mail.Subject = "Test Mail" mail