-
Replied To a Post in Programming our mind
I am still amazed how easy it was to get this country into war with Iraq. Just some clever missinformation using the lockstep media and twisted CIA details fed to … -
Replied To a Post in Random Facts
The richest US congress person is Rep. Darrell Issa, R-Calif. His wealth averages $464,110,000 -
Replied To a Post in Is privacy over?
A location in the troubled downtown area would be less safe for the police. -
Replied To a Post in python mortgage amort calculator
Line 7 is needlessly duplicated inside the loop at line 18. -
Replied To a Post in Draw Lines using Polygon Function
Module graphics is a wrapper around Tkinter, so take a look at: http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/create_polygon.html -
Replied To a Post in Sounds In Python TKinter Program: "Focus" Control Between External Program
I would recommend the Pygame Mixer. It works well with Tkinter. In my experience modules like pySFML don't get along with Tkinter's event loop. Here is an example ... ''' … -
Replied To a Post in Is privacy over?
At this point in time your thoughts are private, just don't record them in any way! -
Replied To a Post in Memorable Quotations
"If you argue correctly, you're never wrong.” ... Christopher Buckley -
Replied To a Post in What is your favorite English word?
yo -
Replied To a Post in Programming Sucks
Maybe ignoring for a few hours is good enough punishment. -
Marked Solved Status for Which laptop should I buy?
I want to buy a laptop with the following requirements: 1. Daily use 2. 1 TB Hard-disk 3. 4-6 GB RAM 4. i5(4th gen) processor 5. 1GB graphic card 6. … -
Marked Solved Status for when to use paper book and when ebook?
when to use paper book and when ebook? and which you prefer and when? -
Replied To a Post in Memorable Quotations
"A young man should pay attention to intelligent women." ... Max Paulaner -
Marked Solved Status for IDE
Tell me the best IDE for Python 3.4 version(Windows7 64bit) -
Replied To a Post in encryption with python
What kind of encryption do you want to use? -
Replied To a Post in Random Facts
Pharmacy chain Walgreen Co suffered a system outage yesterday, taking all of its 8,200 pharmacy outlets offline. Some prescription orders may have been lost. -
Replied To a Post in Starting Python
Just a little number trick ... ''' decimal_number_sequence101.py after the decimal point there is a sequence of numbers from 000 to 022 you can go higher by increasing the precision … -
Marked Solved Status for Is the TAB going to replace the laptop ?
More and more guys are using the TAB for its features like email, phone,camera, small office like PP word excel. How is it really different from a cell phone? Is … -
Marked Solved Status for When the question posted is so banal, just google it
Sometimes, the questions asked are so banal, mindless, or have been repeated so often that . . . (rant rant rant) for those times, a little humor let me google … -
Marked Solved Status for Which language now??
I've been coding since 1966 and have seen a number of languages come and go and also held up as "THE" language. When Microsoft came out with Visual Basic 3/4/5/6 … -
Replied To a Post in What is your favorite English word?
"blameitonputin" -
Marked Solved Status for Drowning in Problems
I found this interesting *game* and I thought it would be nice to share with you. It's called [Drowning in Problems](http://game.notch.net/drowning/#) and **suddenly** it makes me to don't want to … -
Replied To a Post in Portable Python (Python on a flash drive)
Jython is not Python, but worthwhile looking into ... https://wiki.python.org/jython/LearningJython -
Replied To a Post in IDE
The IDLE IDE that comes with your Python installation is a surprisingly good program and is Python specific. To my knowledge there have only been limited attempts to improve it … -
Replied To a Post in There is an elephant on the loo!
Researchers at Ohio State University have obtained as much as 1500 kg natural rubber per hectare from modified Kazakh dandelions. -
Marked Solved Status for IndexError: list index out of range
Hi all I need your help, I'm working on my python script to fetch the list of channels from the sqlite3 database. I'm fetching 7 channels to set each channel … -
Marked Solved Status for As a beginner, what IDE should I use?
I only started learning Python a few days ago, so as a beginner, what IDE should I be using? Should I just start with IDLE, then move on to something … -
Marked Solved Status for shape drawn on canvas not registering mouse click
I plan to write a program that allows the user to move shapes around on the canvas once they are drawn. A given shape will be drawn when an appropriate … -
Replied To a Post in IDE
See http://www.ninja-ide.org/ and http://idlex.sourceforge.net/ My criteria for a good IDE is how it handles input() ... # input test (use raw_input() for Python2) name = input("Enter your name") print(name) -
Replied To a Post in Euler's Number with 100 Digit Precision (Python)
Starting with Python version 3.3 the decimal module has been rewritten in pure C and is much faster. -
Replied To a Post in shape drawn on canvas not registering mouse click
Only responds when you click on the border of the rectangle. You have to fill the rectangle with eg. white to make the whole shape respond. -
Replied To a Post in Star Wars: Episode 7
A agree with <M/>, Mickey Mouse needs to be introduced as the real hero of the silly thing. -
Replied To a Post in Memorable Quotations
"Spying among friends is never acceptable." ... the turks to the germans -
Replied To a Post in senior of HS
My senior year in HS happened in Germany, and I had to sit in the backrow in class because I didn't look German. -
Replied To a Post in can anyone tell me a good n simple book on android op.system
Start out with this simple minded Android tutorial: http://zetcode.com/mob/android/ -
Marked Solved Status for Newby needs help!
I am starting a not-for-profit to help disabled veterans. To fund it I have set up a call center and need help integrating Callfire call center and ZohoCRM. If anyone … -
Replied To a Post in Newby needs help!
Thanks for letting us know. -
Replied To a Post in Random Facts
Personal data of about 4.5 million patients were stolen from U.S. hospital operator Community Health Systems Inc computer systems. This includes social security numbers. -
Marked Solved Status for Plotting 3 columns or more data on the Graph (python)
Hi, this program of mine can plot timestamp & irradiance but how can i plot another line of data for temperature? This is my txt data: TimeStamp,Irradiance,Temperature 21/7/2014 0:00,0.66,26.2 21/7/2014 … -
Marked Solved Status for Optional Funtions
Is it posible to have an optional veriable in a funtion? Such as this: >>>def Say(msg, (optional)): >>> print msg >>> print optional >>> >>>Say('hi', 'option') hi option >>>Say('not') not … -
Marked Solved Status for Binary Tree
I'm trying to modify this code: class Tree: def __init__(self, cargo, left=None, right=None): self.cargo = cargo self.left = left self.right = right def __str__(self): return str(self.cargo) def print_tree_inorder(tree): if tree … -
Marked Solved Status for Possible to get Tkinter and pygame to work together?
Dear all, Currently I am facing the problem on getting the resources for getting Tkinter and pygame to work together. Sadly, I do not have any leads til now(Which worries … -
Marked Solved Status for Decimal formatting
In my python class, we are using python 3.4.1 And we are typing in the programs from the book. Well, I've typed it in correctly and the output still doesn't … -
Marked Solved Status for How would I get a list of all ips on a network in python
How would I get a list of all ip addresses that are on a network using python. -
Marked Solved Status for Memory usage -- opinions?
Hi all, In the never-ending quest to master Tkinter, I wrote a small version of Notepad. Here is my "SaveAs" function: [php] def save_as(): if not mainw.filename: mainw.filename = tkFileDialog.asksaveasfilename(title="Save … -
Marked Solved Status for Trying to get card images into a GUI
Hi all, I know there have been several threads about getting card images into a GUI, but I'm flustered trying to understand why some things work and some things don't. … -
Marked Solved Status for wxpython and py2exe
Hi i am making a simle gui using wxpython and here is the script [code] import wx class bide(wx.Frame): def __init__(self): wx.Frame.__init__(self, None, -1, "just a test", pos=(0, 0), size=wx.DisplaySize()) … -
Marked Solved Status for raise in Text()
I have a problem: How to insert raise in Text()? for example i have file: [code] #my_program.py a=ddd [/code] and other file: [code] #my_file.py: from Tkinter import* root=Tk() text=Text() text.pack() … -
Marked Solved Status for how to bind keys to menu items?
how to bind keyboard keys to menu items? i know to bind with mouse buttons but with keybooard keys dont know. for eg: [I]Cntl+O[/I] to open a file in File … -
Marked Solved Status for print return rernus script
I am getting really tired, so I am probably doing something dumb(disclaimer). below is a python function I am trying to test [php] # answer.py # # this function asks …
The End.