Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
~153.71K People Reached
PC Specs
Intel i5, 4GB RAM, 500GB HDD
Favorite Tags

38 Posted Topics

Member Avatar for vegaseat
Member Avatar for Reverend Jim
15
13K
Member Avatar for samaru
Member Avatar for Duki
Member Avatar for LastMitch

Watched an old movie called The Sting starring Robert Redford. Pretty awesome movie. Also watched an even older classic of Henry Fonda called My Darling Clementine

Member Avatar for LoanHensley
6
6K
Member Avatar for oanahmed

The first thing that most programmers learn is the C programming language. There are books and courses online that present the concepts of programming and the intricacies of C itself very well. I suggest you start with C. Python is also good due to its friendly syntax and programming style …

Member Avatar for dianaaadams
2
1K
Member Avatar for vegaseat

Develop an mp3 player using the pygame's mixer module with a GUI interface with buttons for browsing the file (Filedialog module of Tkinter) and other buttons for play, pause and stop. You can also go ahead with a time display as a label to measure the time for which the …

Member Avatar for vegaseat
20
18K
Member Avatar for abelLazm

Granted. Along with that you also get peanut allergy for free! I wish I could see a book and know all that is in there

Member Avatar for James_40
8
9K
Member Avatar for <M/>
Member Avatar for iAssistant
Member Avatar for anupam_smart
Member Avatar for debasisdas

The tongue has no bones but is strong is enough to break hearts. So be careful with words.

Member Avatar for James_28
8
17K
Member Avatar for o Chantelle o

I have not learnt PHP. But I think www.thenewboston.com has ample video tutorials for you to learn from.

Member Avatar for booicu
0
280
Member Avatar for m_ishwar

I have an old system with P4 processor, 1.12gb ram, 40 gb hdd (of which maybe 10 gb is in bad sectors) which was running Windows XP. I wanted to experiment with it. So, I installed Ubuntu 13.04 on it and completely removed windows xp. According to the [system requirements](https://help.ubuntu.com/13.04/serverguide/preparing-to-install.html) …

Member Avatar for paulas24
0
378
Member Avatar for arohideep13

Play Football to liven myself up or read books and in general anything that is not academic!

Member Avatar for TSRmiyata
0
483
Member Avatar for rmad17

There are many books offered free online. You can find Game programming related books at this link: http://wiki.python.org/moin/GameProgrammingBooks There is also a good book for beginners called "[A Byte of Python](http://files.swaroopch.com/python/byteofpython_120.pdf)" Also try Python Programming for absolute beginners by Mike Dawson, a veteran game developer. Don't know if the book …

Member Avatar for rmad17
0
312
Member Avatar for weblord

Chrome. Much more colourful than other browsers. Somehow faster than IE. Its got a great bookmark bar and most plugins are built in into the Chrome browser. Somehow feel at home browsing the net using chrome

Member Avatar for stultuske
0
203
Member Avatar for red23

@red23 IDLE has its own text editor that you can use instead of npp. Of course npp is a great text editor but the one in IDLE is also not bad.

Member Avatar for JasonHippy
0
3K
Member Avatar for mc.sQr

Hello @Jacek 1. Welcome to Daniweb. Your learning process can itself be the contribution to the community. You can ask all about Computer science on Daniweb and get your queries solved. That itself is a great contribution!

Member Avatar for mc.sQr
0
85
Member Avatar for mersey.male1
Member Avatar for JorgeM
0
64
Member Avatar for srinivas.rambha

Since you are using Tkinter to display the text, the best option would be to use the various formatting styles used in the text widget. I just found a link. Click [here](http://effbot.org/tkinterbook/text.htm) to check out the formatting styles available in Tkinter text widgets.Your best bet would be the justify options(LEFT, …

Member Avatar for m_ishwar
0
1K
Member Avatar for m_ishwar

Hey guys is there a funtion in python that enables to output values to a bin files? Just like storing strings in .txt files, can we store hexadecimal values directly into .bin files? I am working using Python 2.7.3

Member Avatar for m_ishwar
0
316
Member Avatar for Matigo

You can also use the stick attribute Button(self,text="Start",command=self.launch).grid(row = 7, column = 0, columnspan = 1, sticky=E) But sticky attribute can be really messy. Just experiment with the positioning. Other values for sticky are N and W and S. You can also use them in combination

Member Avatar for bumsfeld
0
220
Member Avatar for keerthibhushan
Member Avatar for abelLazm
Member Avatar for CCHIndiaStore
0
351
Member Avatar for islam.fci.3

Welcome to Daniweb! There are lots of resources on the web to learn programming starting from Video tutorials, books and several online courses. Daniweb itself hosts a lot of tutorial programs for beginners and a lot of ideas flow on Daniweb. Its a very good forum to get any of …

Member Avatar for m_ishwar
0
178
Member Avatar for D1SS1D3NT

Welcome to Daniweb! You can begin with free online courses in C, Python, html and many kinds of programming languages. That along with discussions on this forum will give you a sound idea about Computers. Post all your programming queries on the right forum and get all your doubts and …

Member Avatar for m_ishwar
0
242
Member Avatar for gina90410
Member Avatar for bilashcse

'AI' clearly appears to be a string in the above code. Probably, this code is to start a game. The string 'AI' is assigned when you select a particular character to the other party in the game(here the computer). When the code checks for the string, it wants to find …

Member Avatar for m_ishwar
0
171
Member Avatar for theholychilli

Create a class for a Pokemon in general. Then create instances of that object as the pokemon you control and the ones you have to battle(say a tournament). A simple class for a pokemon would be like this: class Pokemon(object): """A Pokemon object""" def __init__(self,name,hp,powers): self.name=name self.hp=hp self.powers=powers def attack(self,power,enemy): …

Member Avatar for m_ishwar
0
611
Member Avatar for m_ishwar

Guys! I would like to know if it was possible to create an assembler using python since it has excellent string handling features. Any Ideas how it could be done?

Member Avatar for m_ishwar
0
156
Member Avatar for krystosan

Create a tuple of special characters you will be checking for. Create a for loop and use string.find() Maybe you can implement it as follows: test="How are you?!!!#" #Say you have a list of chrs like @,#,$,!,%,^,&,* etc spl_chr='!'#If you are looking for ! loc=test.find(spl_chr) if loc==-1: print "not found" …

Member Avatar for krystosan
1
210
Member Avatar for m_ishwar

Here is a code snippet that calculates the probability of the outcome of a two sided game based on the capability of each side. I used it in my football league simulator program Could be used in any number of simulators which involve two parties. For equally strong parties, the …

0
390
Member Avatar for m_ishwar

Guys, below is a part of an Object description in an application I am trying to code. I am using Tkinter for GUI. The Tkwindow hangs as soon as the "print self.gs" instruction is executed. Can it be rectified? Any help will be appreciated def while_time(self): pass def gameplay(self): self.gs=self.get_schedule()#Schedule …

Member Avatar for m_ishwar
0
166
Member Avatar for bhavikavekaria

Windows might be corrupted. What exactly happens when you switch on your pc? Any messages displayed?

Member Avatar for Webville312
0
53
Member Avatar for m_ishwar

Hello Guys I am trying to make a game with Tkinter. It involves selecting different options from a set of buttons. I created a root for the window, and am done with all the basic game programming. Its a football league simulator allowing players to select a team and choose …

Member Avatar for Schol-R-LEA
0
223
Member Avatar for m_ishwar

Hello everyone. I am trying to compile this simple code using gcc under Cygwin terminal. //A function that just returns a value// int my_function() { return 0xbaba; } I saved the code as basic.c I issue the command $gcc basic.c in the Cygwin terminal And I get the error: gcc: …

Member Avatar for m_ishwar
0
610
Member Avatar for m_ishwar

Hey this bit of code is giving a lot of trouble. I am new to python and have no idea why I am getting an error like this : Traceback (most recent call last): File "D:/Python27/saved/digital_filter.py", line 83, in <module> app=Application(root) File "D:/Python27/saved/digital_filter.py", line 23, in __init__ self.create_widgets() File "D:/Python27/saved/digital_filter.py", …

Member Avatar for m_ishwar
0
195
Member Avatar for m_ishwar

I am experiencing a problem with turbo c while I execute odd loops. The compiler doesnt wait till I give a yes or a no. It just jumps out of the loop. Can anyone help me?Is it a problem with the compiler or my program. The latter is not possible …

Member Avatar for Aia
0
119

The End.