Showing posts with label GUI. Show all posts
Showing posts with label GUI. Show all posts

Tuesday, 22 September 2015

PyCLOCK - A simple analog clock with python and pygame

Hi all. How it's going?

I'm back and this time pygame is ruling my mind.
I combined the Parametric form of equation of a cirle with pygame and got this neat analog clock as the reuslt.

See the screen shot below.

HAVE AN IDEA? WOULD U LIKE ME TO PROGRAM IT?  Share it with me via e-mail here. I'll be kind enough to mention your name and will surely implement your idea if I am capable of doing so.  ;)

Give it a go here:   Datafilehost

Saturday, 28 March 2015

Dots and Boxes game with python and pygame!

Yes! it is Dots and Boxes this time and its really working and that too without those complex algorithms that you get to see when you search the web.

My Algorithm:

1. Let the user play first.
2. When the computer gets its turn, it first searches for boxes that can be completed in one move.
3. It completes one of such boxes if found else it finds out the 'two-sided' boxes (those which have two sides marked) and stores in a list.
4. Now the list stores the boxes which will lead the computer to lose one precious point to the user.
5. The computer dares not even to touch the boxes and finds the lines which are safe to mark.
6. If the computer finds no safe lines then it finds out the chains of boxes which the user can form if the computer takes its turn.
7. Then it finds out the smallest chain and marks one line in it to minimise the loss.
8. This way, the computer has a good chance of winning and this is an enjoyable game.

HIT +1 IF YOU LIKE THE IDEA

Give it a try: Download




Tuesday, 10 March 2015

HTML PageMaker GUI v1.1

Hello Python Lovers.
Today After quite some-time I am back with a new Tkinter GUI python script.

This program provides an easy to use GUI for my older page maker.

So Download it here and give it a try.

Happy HTML Pagemaking...

And...
Don't Forget to hit +1





Next Expected Post: Solution to Task 3. See details here.

Tuesday, 30 December 2014

War Of The Numbers - New version! (Update)

This program here is an update to the older war of the numbers.
It contains many changes:

Power-ups : The Golden Shot, The Shield, Freeze , Reverse

Code  Optimization : Performance is now better due to code optimization which now doesn't wastes any processing cycles.

Menu : A Menu created.

Improvements coming in the near future:
Full-screen, Better sound, Objectives and achievements, High Scores, etc.

Download here: http://goo.gl/JHwRmS

The game is action:





Sunday, 30 November 2014

See the new game I'm working on! - Fruits everywhere with pygame...

This is another game which is purely made with python and pygame.

This is a fruit collection game that would help you kill time and also learn some programming tactics if you see the source code carefully.

The code is self explanatory so i didn't comment.
I will if someone wants me to do so.

The game consists of an empty fruit basket which you need to fill up by collecting the free falling fruits. Beware of the bombs which take away 10 Scores and the cool bombs which rip you of one live. Lives are precious and you get three.
Lost a life? You have a chance to get one falling along those fruits but it takes a long time to appear.

Your high scores are stored and don't get cleared when you close the game.

This version currently works only with linux (posix). Sorry for windows users.
E-mail me here and I will post a version for windows too! if you find the game worth doing so.

The game ain't tough. It's fun. Enjoy...
Download : datafilehost




Thursday, 2 October 2014

GCalc 2

Hi Friends.
I had previously posted a calculator which was a simple and minimalistic calculator.
It had many errors like two symbols occurring together would raise an error.
This program has absolutely no error. And it supports solving a whole expression in one step!

It has improved functionality. Why don't you download it yourself?

Download - Datafilehost





Friday, 12 September 2014

SUDOKU2.0 - Game with python (GUI)

Hi Guys
Today I have another enjoyable program to share. You may remember the terminal Sudoku puzzle game that I posted a couple of weeks ago (see here). That program is difficult to use and it makes the already difficult game even more difficult.

This program makes it very easy to play the game as you do not need to use the keyboard and everything can be done with the use of the mouse only.

Much more to tell about the program....
...Why don't you use it yourself?

Download the program: Datafilehost

Have an Idea? Share with me here. I will program it!







******************* UPDATE ***********************

Well, I have some modifications in this new program.

1. Removed the 'OK' button.
     Earlier, I had to use it to change the color of the button after the check button was used but now, It is done automatically.
2. Added a timer.

Download: Datafilehost


Thursday, 14 August 2014

Tic-Tac-Toe (GUI) game with python

Hello everyone.
I am here to share another program with you. It is - PyTic-Tac-Toe (as I call it).
This is a simple yet enjoyable Tic-Tac-Toe (Noughts and Crosses) game based on an older(not much) tic-tac-toe game program.

This version has some bugfixes in the A.I. that confronts the user.

Improved A.I. (Impossible to defeat for at least me)
GUI version. (No need to input numbers!)

Download it here: Datafilehost

Enjoy!

Screens:









Sunday, 20 July 2014

GCODER - Encrypt your text using Python

Hello Friends. This is the next version of my application called GCODER which converts your text into unreadable form and vice versa. It used a very simple and easy to understand. But this version is serious and uses the G-2TEA to encrypt text. The algorithm is difficult to crack.
For instance, Guess what the following text is

{-%%,oE0[|?E|?E}X62 .E!FRDRTE[-+-RE2|(E),\E\<(-+?_`<(E_[|?E_-#_s

Did you guess it?
Well, This text in it's normal form was this and the result is in front of us.
This is impossible to understand and that's what we want.

Download source code : Datafilehost
Debian Package also available: Datafilehost

Screen shots:






Contact me : Here


Thursday, 3 July 2014

Gictionary - English dictionary with python (GUI)

Hello friends. This is a Graphical User Interface for the dictionary program I posted yesterday.
Since it is a gui, it can easily be used.
The Gictionary is an English language dictionary which includes approximately 109582 english words.
It checks wether the user's word is an English language word or not and if it is, then the meaning is found.
After finding a meaning, the program checks for other meanings if present.
Finally, the meaning(s) is(are) published.
Download it here: 4shared
Or download it and install on your Windows PC - Download setup here.
Please share this post if you find it worth of doing so.
Follow my blog if you like it.

Linux(Linux-mint-11) Screen-shots.
 Note: Linux users will have to replace the provided .py file with this file.






Tuesday, 1 July 2014

Math Quiz GUI - Python

Hello friends.
This is the GUI version of my older program called Math Quiz.
It basically asks randomly chosen math questions and then evaluates the result at the end.
The user can set the number of questions they want to answer.

So try it here: Datafilehost

See other posts here too.
Thanks for visiting.

GDates - Operations on Dates

Hello everyone.
This Applications operates on dates.

It does two things.

It can find the number of days between two dates; and
It can also find the day of a date.

It does the former by using the built-in datetime module and the latter using Christian Zeller's Congruence Algorithm.

Download the code here: Datafilehost

See my other posts here too.
Keep visiting :-)

Screen-Shots:




 

Monday, 30 June 2014

User name and password checker

Hello Readers,
I am sharing a username and password checker application which lets you set the password first and then each time it is run, it allows you to enter username and password and then checks them if they are correct.

It stores the username and password in a text file and then retrieves it every time it needs to check.

Download it there: Datafilehost

See other posts here too.
Have an idea that I can Program? Share it with me now! Comment or E-mail. You will be always welcomed.
Thx for visiting.