[01:39] I have been using sublime as well and liked it a lot. The languages I develop in are php scss javascript . I have been using buffers today they are cool [01:42] How about yourself's what do you develop in? [01:43] A year ago I would have said bash & perl; now it's probably more PHP, CSS, JS, & python. [01:44] Mostly I just use vim with syntax colouring on, but will probably look into a more PHP/CSS/JS-oriented one soon. [01:44] I've heard good things about NetBeans for PHP, but haven't had a chance to try it yet. [01:45] If you develop in Java or any of the other languages which use the JVM, Eclipse is far & away the most widely used, and it worked well for me when I used it. [02:25] what is python like [02:26] I have never tried it [04:45] purencool: One of the big differences is whitespace in indents is significant - takes a bit of getting used to. I still prefer the C/Java/PHP way, but I'm over hating on python now [06:24] blahdeblah: So trouble shooting at times would be really hard? [06:56] I have never found troubleshooting python to be difficult [06:57] Yes, you have to use indentation to specify blocks in the code, instead of using braces like C-based languages, but this just enforces more readable code [07:52] Hi jea this is a newbie question but how does the python become more readable [08:40] Basically because it enforces indentation [08:40] I tutor courses at uni involving C programming. We have a fairly strict style guide due to students just ignoring indentation, etc when writing code [08:41] it ends up being completely unreadable [08:41] however, because the indentation forms the blocks in Python, you don't get such an issue [08:41] that is just one example of it. there are probably more [09:18] So because you have to adhere to the the tabs for the code to work it creates a block [09:20] The block then makes the code more readable. But is {} languages you are not forced to adhere to the tabbing to get to work [09:21] jea: Is that way you mean? [09:21] This is not about ubuntu but very interesting [09:26] I am going off line thanks for everyone's help today [10:37] purencool: yeah, that is what I was meaning [21:59] jea: I never worked out what the big deal there was; just make them run it through GNU indent before submitting. ;-) [23:36] Good Morning Ubuntu people. [23:40] blahdeblah: yeah, we tell them about that. Our style guide is a bit stricter than that, so they have to tweak it a bit more. [23:41] The main reason for enforcing it earlier is so that when we as tutors go to help them, we should be able to understand the code flow somewhat when it is formatted. If you have to help someone who has braces everywhere, etc, then it is a nightmare