[Tutor] Help with making emacs work with python syntax checking?

2011-07-04 Thread Tidal Espeon
I need help with installing this setup on my emacs: http://hide1713.wordpress.com/2009/01/30/setup-perfect-python-environment-in-emacs/ The problem is that I have no clue how to access any .emacs file or .emacs.d folder. I'm running linux, and they are apparently invisible in my home directory. Try

Re: [Tutor] Help with making emacs work with python syntax checking?

2011-07-04 Thread Lisi
On Monday 04 July 2011 15:46:31 Tidal Espeon wrote: > I need help with installing this setup on my emacs: > http://hide1713.wordpress.com/2009/01/30/setup-perfect-python-environment-i >n-emacs/ The problem is that I have no clue how to access any .emacs file or > .emacs.d folder. I'm running linux,

Re: [Tutor] Help with making emacs work with python syntax checking?

2011-07-04 Thread Peter Otten
Tidal Espeon wrote: > I need help with installing this setup on my emacs: > http://hide1713.wordpress.com/2009/01/30/setup-perfect-python-environment- in-emacs/ > The problem is that I have no clue how to access any .emacs file or > .emacs.d folder. I'm running linux, and they are apparently invis

Re: [Tutor] Blackjackbetting

2011-07-04 Thread Dave Angel
On 01/-10/-28163 02:59 PM, David Merrick wrote: HI. I feel I'm starting to go round in circles solving this problem. I feel I made significant progress. Can someone help me iron out the bugs please # Blackjack # From 1 to 7 players compete against a dealer import cards, games class BJ_Card(car

Re: [Tutor] Help with making emacs work with python syntax checking?

2011-07-04 Thread Alan Gauld
"Tidal Espeon" wrote I need help with installing this setup on my emacs: Why do you want this? Are you already an emacs user? If so then fine, go ahead. But if you do not already use emacs, lerarning it will be a big effort. emacs is a big, powerful tool and once you know it you can use i

Re: [Tutor] Help with making emacs work with python syntax checking?

2011-07-04 Thread eire1130
I second this. I have a second harddrive with Mint on it. Ithought it might be fun to learn emacs. On windows I've been using eclipse for like 6 to 12 months or however long ago I started. I tried emacs for about two seconds and was like, uh no thanks. Downloaded and set up eclipse and I'm sti

[Tutor] serial device emulator

2011-07-04 Thread Edgar Almonte
Hello list need some advice/help with something, i am doing a program in python that send some command via serial to a device so far so good , the thing is not have the program so i need make another program that emulate the behavior of this serial device ( is quiet simple ) to test my app i read a

Re: [Tutor] serial device emulator

2011-07-04 Thread Chris Fuller
You don't need to emulate a serial port (since you're writing the code; you'd have to emulate the port if it was standalone software), only your serial port library. Write a class that has the same methods as the serial port library you're using (you only need the methods you're using or think