• Member Avatar for vegaseat
    vegaseat

    Replied To a Post in What are you eating/drinking right now?

    My neighbor made beefstew and I brought the beer.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    If you have a lot of tension and you get a headache, do what it says on the aspirin bottle: Take two and keep away from children.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    A fine is a tax for doing wrong. A tax is a fine for doing well.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    Short skirts have a tendency to make men polite. Have you ever seen a man get on a bus ahead of one?
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    Engineer's Chocolate Chip Cookies: Ingredients: 1. 532.35 cm3 gluten 2. 4.9 cm3 NaHCO3 3. 4.9 cm3 refined halite 4. 236.6 cm3 partially hydrogenated tallow triglyceride 5. 177.45 cm3 crystalline C12H22O11 …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Updated Tiny Tkinter Calculator (Python)

    Just a reminder, please test your snippets before you submit them.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Tiny Tkinter Calculator (Python)

    Press the buttons in this order 1 + 1 = See also the updated version at https://www.daniweb.com/software-development/python/code/467452/updated-tiny-tkinter-calculator-python
  • Member Avatar for vegaseat
    vegaseat

    Created Display an image from the WEB (Tkinter)

    Sometimes it's easier to pick an image from the internet to display in your Python Tkinter GUI toolit program.
  • Member Avatar for vegaseat
    vegaseat

    Edited Display an image from the WEB (PyGame)

    A short example of Pygame showing an image with a known internet url.
  • Member Avatar for vegaseat
    vegaseat

    Created Display an image from the WEB (PyGame)

    A short example of Pygame showing an image with a known internet url.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in There is an elephant on the loo!

    Winston Churchill used to sleep till noon and drink a quart of whiskey every evening.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in There is an elephant on the loo!

    Ludwig van Beethoven's mother already had 8 children, three were deaf, two were blind and one was mentally retarded. She also had syphilis when she gave birth to him.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Memorable Quotations

    "Conformity is the jailer of freedom and the enemy of growth." ... John F. Kennedy
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Memorable Quotations

    "Our minds are information vacuums. Either we fill them with thoughts of our choosing or someone else will.” ... Ray Davis
  • Member Avatar for vegaseat
    vegaseat

    Created Move a sprite with arrow keys (PyGame)

    A very basic pygame sprite example. Moving a sprite with the arrow keys, could be the start of a great space game.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in So. Does anyone have any good programming/computing jokes?

    Theory is when you know something, but it doesn't work. Practice is when something works, but you don't know why it works. Programmers combine Theory and Practice: Nothing works and …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in So. Does anyone have any good programming/computing jokes?

    "If debugging is the process of removing bugs, Then programming must be the process of putting them in." ... Edsger Dijkstra
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Memorable Quotations

    "The trouble with the world is that the stupid are sure and the intelligent are full of doubt." ... Bertrand Russell
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Memorable Quotations

    "When all think alike, no one is thinking." ... Walter Lippman
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Memorable Quotations

    "You do not really understand something unless you can explain it to your grandmother." ... Albert Einstein
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in There is an elephant on the loo!

    Living on Earth is expensive, but it does include a free trip around the Sun every year.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in What are you eating/drinking right now?

    Herring in wine sauce, some Paulaner beer.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Python Break Factor Function

    A note to coding style: In just about all computer languages programmers try not to exceed about 80 characters per line of code. You could add your comments above the …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Python Get Root Floor and Root Ceiling of a Number

    Try ... sf = "For {} Root floor: {}, Ceiling: {}" n = 91 print(sf.format(n, math.floor(n**0.5), math.ceil(n**0.5))) n = 161 print(sf.format(n, math.floor(n**0.5), math.ceil(n**0.5)))
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Get the Middle Factors from a Factor List

    @BustACode we just want to help you with your coding style. Python was written for readability, so yes PEP 8 is good to follow. See ... https://www.python.org/dev/peps/pep-0008/ Also, don't use …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in tkinter. animation based on after() function

    Thanks for letting us know.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for tkinter. animation based on after() function

    I am trying to make a small dice roll program. By using after(), I would like to make a small "image animation". that displays an other image every ... ms. …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Scrollbar not working

    You have to apply the scrollbar to a particular widget, for example ... ''' ttk_Scrollbar101.py explore the ttk scrollbar widget ''' try: # Python27 import Tkinter as tk import ttk …
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in So. Does anyone have any good programming/computing jokes?

    Remember that a multitasking programmer is one that can read in the bathroom.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in So. Does anyone have any good programming/computing jokes?

    The dynamic declination flag was accidentally switched to EIEIO. Check your atomic memory pool for floaters because they're probably causing the kernel to pop. But be careful because the memory …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Another Visit To String Formatting (Python)

    @Gribouillis, dice symbols work fine using Idle and Python34 on a Windows machine. Thank you for the `__format__` method.
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Projects for the Beginner

    Create an example of a nested list comprehension.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Another Visit To String Formatting (Python)

    Print a simple table using the string format function ... ''' format_table101.py an example of a table created with format() ''' # name,age,weight lines read from a csv file data_str …
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Edited Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Created Another Visit To String Formatting (Python)

    We have had several snippets on the format() function. This one gives a condensed overview of the many options you have.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Is an asthma air purifier good to go to get rid of smoke ?

    Second-hand smoke is invading my apartment thanks to a new neighbor and his nonstop smoking which is making me sick. I am asthmatic and get severe headaches from cigarette smoke. …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Why I sometimes hate ads

    I have found plenty of ads that are a lot better then the TV show.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Cutting virtual cloth

    Who said that programming has to be boring?
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A tooltip class for Tkinter

    Just to mention it ... ''' tix_Balloon102.py Tkinter extension module tix comes with Python27 and Python3+ tix has addtional widgets like ... tix.Balloon (acts like a tooltip) ''' try: # …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Things I hate about TV shows

    There seem to be plenty of criminal investigator shows on TV where folks run around with a gun drawn at face level. You also know that nothing can happen to …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in There is an elephant on the loo!

    In Finland Valentine’s Day is called Ystävänpäivä, which translates into “Friend’s day”. It's more about remembering your buddies than your loved ones.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in For all loved ones and those not so much loved

    About 1 billion Valentine’s Day cards are exchanged each year. This makes it the second largest seasonal card sending time of the year
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Happy Holi

    Bright colors, water balloons, lavish gujiyas and melodious songs are the ingredients of perfect Holi. Wish you a very happy and wonderful Holi too. On an unrelated side: I wonder …

The End.