Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment batch to python transition (Score 1) 426

In my company, I had to do also an automated test suite.
I began with batch files, because there were already some very basic scripts done by another developer and I as extending them.

But, the suite needed some more advanced things, like time profiling. Batch files were too bad to do time calculations, even the simplest.

So, I decided to migrate to a scripting language, and I was between Tcl (I already did things with it, even controlling Networking printers through SNMP and PCL) and Python (Never touched it).

Even I like more the Tcl syntax, I decided for Python, because:
  - Python has a more active community and is not dying, unlike Tcl
  - I could learn Python
  - I could get help from some colleagues at my job
  - If the thing needs to be maintained, it will is more likely to get people that knows Python than Tcl
  - It has some modern developments that Tcl does not have

But, I also had some problems. First Python is now in a phase of deep restructuring, and I was doing it in Python 3 and had lots of problems, mainly because of some extras for Python that are not compatible. After, I discovered a chat Channel whose topic says "It's to early to use Python 3".
So I downgraded it and got the job done. So, if you go for Python, I recommend seriously 2.6

And you can also have some Windows things, may be it is why you are reticent of moving out from batches. I used winreg module to access the Windows registry.

Java

After Learning Java Syntax, What Next? 293

Niris writes "I'm currently taking a course called Advanced Java Programming, which is using the text book Absolute Java, 4th edition, by Walter Savitch. As I work at night as a security guard in the middle of nowhere, I've had enough time to read through the entire course part of the book, finish all eleven chapter quizzes, and do all of the assignments within a month, so all that's left is a group assignment that won't be ready until late April. I'm trying to figure out what else to read that's Java related aside from the usual 'This is how to create a tree. This is recursion. This is how to implement an interface and make an anonymous object,' and wanted to see what Slashdotters have to suggest. So far I'm looking at reading Beginning Algorithms, by Simon Harris and James Ross."

Comment Komodo Edit / Openkomodo (Score 1) 310

Komodo Edit is a free editor you can use, and you can contribute to Openkomodo - it is a blend of Mozilla platform, Python and some other technologies.
I use it with the Morekomodo plugin, but even without plugins it has lots of functionality, specially for python.
Unless its heavy weight, I prefer everything of this editor over the Notepad++.

Slashdot Top Deals

"May your future be limited only by your dreams." -- Christa McAuliffe

Working...