Re: python code

2015-04-14 Thread James Dugger
Hey Mike, Great job getting started with the book. Looks like you have a lot of help so far too. I would set the code up like this: print(Welcome!) guess = 0 while guess != 5: g = input(Guess the number: ) guess = int(g) if guess 5: print(Guess higher.) elif guess 5:

Re: python code

2015-04-14 Thread Michael Havens
I was wondering: after I loaded the libraries an imported randinit when I run the program it says: ImportError: cannot import name randinit does this mean I need to install something? My duckduckgo search (ImportError: cannot import name randinit python) gave me a big 'nothing found'

Re: python code

2015-04-14 Thread James Dugger
Sounds like a circular import problem: lookup circular import in Python. On Tue, Apr 14, 2015 at 10:55 AM, Michael Havens bmi...@gmail.com wrote: I was wondering: after I loaded the libraries an imported randinit when I run the program it says: ImportError: cannot import name

Remotes for Kodi/XBMC

2015-04-14 Thread Venzetti Laptop
Hello everyone, I've got mythbuntu 14.04 32-bit running a mythbackend and a Kodi frontend on the same machine and I was wondering if anyone had suggestions/experience on remote controls and receiver to use instead of the bulky keyboard. I'm looking for something relatively easy to set up in

Re: Remotes for Kodi/XBMC

2015-04-14 Thread sean
I would look at using a Nintendo wiimote. I have no experience with it but I've read about people using it with Kodi. On Apr 14, 2015 4:47 PM, Venzetti Laptop mariovenze...@cox.net wrote: Hello everyone, I've got mythbuntu 14.04 32-bit running a mythbackend and a Kodi frontend on the same

Re: Remotes for Kodi/XBMC

2015-04-14 Thread Todd Cole
adesso MCE ARC-1100 works out of the box I use it on the same set-up. the mouse tracks slow but but if using it in KODI it a non-issue. I still use a wireless KB and mouse when in MYTHBUNTU On Tue, Apr 14, 2015 at 4:54 PM, sean sean.a.ritz...@gmail.com wrote: I would look at using a Nintendo

Re: Remotes for Kodi/XBMC

2015-04-14 Thread Michael Havens
I sit in a chair using a wireless mouse as the remote. Come to think of it a use the tv remote to adjust the volume though it is possible to adjust the volume with the mouse. :-)~MIKE~(-: On Tue, Apr 14, 2015 at 5:59 PM, Todd Cole to...@azloco.com wrote: adesso MCE ARC-1100 works out of the

Re: python code

2015-04-14 Thread Todd Millecam
it's randint, not randinit On Tue, Apr 14, 2015 at 12:15 PM, James Dugger james.dug...@gmail.com wrote: Sounds like a circular import problem: lookup circular import in Python. On Tue, Apr 14, 2015 at 10:55 AM, Michael Havens bmi...@gmail.com wrote: I was wondering: after I loaded the

Re: python code

2015-04-14 Thread Michael Havens
of course random integer oops! :-)~MIKE~(-: On Tue, Apr 14, 2015 at 1:35 PM, Todd Millecam tyg...@gmail.com wrote: it's randint, not randinit On Tue, Apr 14, 2015 at 12:15 PM, James Dugger james.dug...@gmail.com wrote: Sounds like a circular import problem: lookup circular import in