• Member Avatar for vegaseat
    vegaseat

    Replied To a Post in surprise

    Kind of neat!
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Tommy Ramone, last surviving member of the Ramones passed

    "I wanna be cremated" very practical thinking.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in The easiest programming language???

    Java sounds like it is made for you. Google "colleges using java"
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Possible to get Tkinter and pygame to work together?

    The two different eventloops don't work very gracefully together. There is a lot of flickering. Threading might improve performance? The only thing that works reasonably well is the pygame.mixer and …
  • Member Avatar for vegaseat
    vegaseat

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

    In 2011 more 20,783 individuals ended up in hospital emergency rooms after consuming too much of the popular high caffeine energy drinks according to the US Substance Abuse and Mental …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Programming our mind

    Sheep + People = Sheeple Sheeple, most of us, are easily programmed particularly by the news media.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in What are you watching?

    Greg Hunter on YouTube
  • Member Avatar for vegaseat
    vegaseat

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

    Remoulade on pommes frites and a fresh Margarita. Cool stuff for a hot summer day.
  • Member Avatar for vegaseat
    vegaseat

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

    The ten most corrupt cities in the USA ... Chicago Los Angeles New York Miami Cleveland Philadelphia Austin Orlando Sacramento New Orleans Here is the source ... http://cbschicago.files.wordpress.com/2012/02/leadingthepack.pdf
  • Member Avatar for vegaseat
    vegaseat

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

    The baby or little toe is connected to the part of the brain in the back of your head that affects the optic nerve. So a broken toe can affect …
  • Member Avatar for vegaseat
    vegaseat

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

    A blueberry scone and hot chocolate. I eat a lot of blueberries ever since I read that they help improve your memory. However, I can't remember where I read this.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Random Facts

    In a study involving older adults (with an average age of 76 years), 12 weeks of daily blueberry consumption was enough to improve scores on two different tests of cognitive …
  • Member Avatar for vegaseat
    vegaseat

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

    Fresh blueberries and cream.
  • Member Avatar for vegaseat
    vegaseat

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

    The ten most corrupt states in the USA are ... 1. Mississippi 2. Louisiana 3. Tennessee 4. Illinois 5. Pennsylvania 6. Alabama 7. Alaska 8. South Dakota 9. Kentucky 10. …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Awake and in pain

    A local anesthetic like the gel one uses on gums for a sore tooth might help.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Projects for the Beginner

    Write a Python program that copies files from one directory to another, but excludes files with a specified extension.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Write a code snippet to declare and accept an integer and calculate the cub

    Write a code snippet to declare and accept an integer and calculate the cube value of the integer. The integer should be passed by reference to a function cube(). The …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Program for Converting Quadratic Equations to Standard Form

    Program For Standard Form def stnfrm(a,b,c): one = (b/(2.0*a)) two = c-((b**2.0)/(4.0*a)) axis = one/-1.0 x = -b/(2.0*a) y = a*(x**2.0)+(b*x)+c print x if a == 1: print "(x + …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for EXTERMINATE!!!

    path = './file.txt' os.remove(path) import os `os.remove(path)` is equal to `os.unlink(path)`, so how can I delete the file if it just becomes unlinked? Also I haven't tried to yet, but …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Explanation of par below

    Hi All, Im new to Python and doing a few basic exercises around modules and calling same. Can someone explain what par is in relation to this example? -------------- # …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Is a python os possible?

    In my opinion, python is a fantastic language, but is it possible to develop an operating system with python, BUT one thing that I do know is that if you …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for importing eyed3

    (Linux) I just installed eyed3 for python using apt-get, everything installed fine but when I tried to import eyed3 I got a trackback error, no such module. Do I need …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Projects for the Beginner

    You have a large multiline string. In what GUI toolkit widget would you display this string so that it can be scrolled but not edited?
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Write a code snippet to declare and accept an integer and calculate the cub

    A mild hint to help you along ... // FuncByRef2.c // pass function arguments by reference using pointers #include <stdio.h> void swap(int *x, int *y) { int temp = *x; …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Random Facts

    Python bumps off Java as top learning language. http://www.infoworld.com/d/application-development/python-bumps-java-top-learning-language-245774
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Software development,a wise choice of second career for an older woman?

    Your competition will be thousands of folks from foreign lands here on a work visa. http://fortune.com/2013/08/05/the-myth-of-americas-missing-software-engineers/
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Anyone try a portable laser keyboard ?

    I guess I have to put that on my Christmas list.
  • Member Avatar for vegaseat
    vegaseat

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

    Asiago cheese sandwich and peppermint tea.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for How to organize your YouTube videos?

    I have 3147 videos on youtube and seldom watch them. If they aren't on the first page or two. But that is going to change. Right now I'm going through …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Epic one liner time

    From the CS olympiads: binary in mult times 7 binary out -> pythhon:(python code: int(raw_input(),base=2)*7
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Do we really get better with experience?

    Look at this: http://www.codinghorror.com/blog/2007/01/how-to-become-a-better-programmer-by-not-programming.html Did someone who simply couldn't write efficient code (complexity-wise) before, felt intimidated by people who did, decide to work really hard, try to solve an insane …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for New kind of Dropbox

    Someone just notified me that a new free online space provider has launched, called Copy. If you know Dropbox: it's pretty much similar to that for as far as I …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for A Special Surveillance Chip

    I haven't seen this confirmed anywhere else yet. The article starts with >According to leaked internal documents from the German Federal Office for Information Security (BSI) that Die Zeit obtained, …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for how is the working environment in Goldman sachs ?

    Can we discuss some points on this ? Is it a good job for the freshers ? Some people may have some points in his/her knowledge regarding this. than please …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for 3D TV

    Do you like it? I've seen it in a showroom and couldn't tell the difference between 3d and normal tv. I've read elsewhere that it makes may people dizzy, headaches …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for I like stories with a happy ending

    http://thelibertarianrepublic.com/robber-tries-to-stick-up-clerk-an-iraq-veteran-who-turns-and-shoves-a-pistol-right-in-his-mouth-video/
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Teach Yourself Programming in Only 10 Years

    [Here's](http://norvig.com/21-days.html) an interesting little article I cam across recently. >Walk into any bookstore, and you'll see how to Teach Yourself Java in 7 Days alongside endless variations offering to teach …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Daniwebbers at the Gym?

    So... random question to you guys (i haven't seen anyone ask this yet). What workouts/excercises/etc. do you Daniwebbers do to stay in shape? Normally I hear that people on the …
  • Member Avatar for vegaseat
    vegaseat

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

    The 2014 fourth of July celebration in Chicago sent 89 people to the hospital with gunshot wounds, 15 have died at this point.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in importing eyed3

    A directory in the PYTHONPASS that already has a `__init__.py` file is a **package directory**. Many of these directories appear in the **site_packages** directory. Putting your own modules in there …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Lets share some awesome programming quotes that keeps you interesting

    http://www.lifengadget.com/lifengadget/amazing-programming-quotes/
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for List of Hello world program examples

    List of Hello world program examples http://en.wikipedia.org/wiki/List_of_Hello_world_program_examples
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Finding approximations of sine and cosine with given value theta in degrees

    Hi I am trying to write a code that finds approximations of sine and cosine using the equations below with a given value of theta in degrees basically as a …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Python Challenges

    Challenge: change the code so that only .py and .txt files of a given directory are listed. ''' filename_list_given_dir1.py use module glob to list all the filenames of .jpg files …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Question from a beginner learning Python

    I am new here and it's my first post, so I'm sorry if this is in the wrong place or is formatted wrong. I made my first Python code, which …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for How can I display a frame2 form frame1

    Hi, I want to display a Frame2 when I clic the button4 in Frame1,my problem is when I clic in that button the Frame2 is not displayed this is my …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in files

    **in_file** is a file handle **indata** is a string containing the contents of the file
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in importing eyed3

    Another way is to create a folder like MyModules in a path that Python has on its PYTHONPATH eg. C:\Python27\MyModules Now save your module eg. module1.py in there. You also …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Is a python os possible?

    Python is a high level language, really not written to do low level access needed for OS use like C. There have been past attempts ... https://github.com/tornewuff/pycorn
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in What technique did you use to learn to program?

    Explore with small code examples, then put them together to explore a project.

The End.