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.

Text to Speech Using Google Speech API

Submitted by GeePee on
This project will teach you how to create a text to speech using the google speech API. This is simple and easy. All we have to do is pass the text in google speech api and save it as an mp3. Then play the audio file using a player. In my example, I used html5 player. You can use whatever player you want to use. Hope you learn from this.

Creating Shapes in CSS

Submitted by GeePee on
This project will teach you on how to create a different shapes using CSS. We can create shapes in our web page without including images. This is simple but very useful. This is for the newbie in programming. I have here an example of triangles(left, right, up, bottom), circle, quarter circle and half circle. Hope you learn from this.

Repeating Tile Background Animation in CSS

Submitted by GeePee on
This project will teach you on how to animate a repeating tile background using CSS keyframes. Using the css keyframes, tiled images will animate like a falling snow as seen on my example. It is depend on your style if you want to animate it from the right. Feel free to modify this project according to your preference. Hope you learn from this.

Insert, Delete, Update in GridView using ASP.NET

Submitted by sadiq.ameen.982 on
1. As we don't want to use datasource controls. Please delete "ObjectDataSource1" control from the webform. 2. Delete DataSourceID="ObjectDataSource1" from GridView1. This should remove the dependency of GridVIew1 on ObjectDataSource1 control. 3. From the code behind file, delete lbInsert_Click() event handler method. 4. In the "FooterTemplate" of "EmployeeId" TemplateField, please delete OnClick=

Calculator Using Java

Submitted by 563 on
This is a small application, it requires two double type values from user in two different text fields and it calculates on that values (+, -, *, /). Five buttons for four basic Operation and one with button "C" to clear text fields. In the zip file, there is a source code as will as the setup file of this app. If you wants to use the setup only, you should install JDK on your computer. For JDK

Creating Notification Box Using jQuery

Submitted by GeePee on
This project will teach you on how to create a notification using the jQuery. In my example, I used my previous project jQuery Datatables. In every update of the selected item, BlockUI jQuery plugin appeared saying that item selected has been updated. You can also customize the notification by changing the css codes. Hope you learn from this.