4

Good cloud based IDE's for Java, Python and C# - any suggestions?

Should I place my braces after the method header or under it?
1.
public void test(){
}
2.
public void test()
{
}
Or is it just personal preference?

Comments
  • 3
    Personal preference. As for IDEs, I don't know what you mean by "Cloud based".
  • 2
    Something like stackblitz.com I think
  • 5
    on the same line.
  • 3
    Why would you want to use a cloud based IDE? Use Git so your code is portable, and any ide will do.

    Both are acceptable, 2 pisses me off!
  • 0
    1 for me.
  • 2
    Yeah if you're following the traditional coding standards, it's number 1 for Java, and number 2 for c#. But it's just standards, so you can deviate from it if you want
  • 0
    Put a fucking space after that () for number 1 if you go with that
  • 0
    2 is easier to read.
  • 1
    @growling yeah I agree that annoys tf out of me
  • 0
    It's all personal preference, there is no language that I can thino of that it makes a difference in (I'm sure one exists) but Java, C, C#, C++, Php, JavaScript etc.. don't process them any differently because of the way the parsing works, typically if you can put a space (whitespace) between two characters in code you can put any number of new lines between them.
  • 2
  • 0
  • 2
    Personal preference, but the first one or you're doing it wrong 😋
  • 0
    For cloud ide's I've found

    Code envy
    Goorm ide
    Code anywhere

    Code anywhere also has an android app
  • 0
    @iamavalos Must? No.
  • 2
    @iamavalos Thank you Colonel Obvious.
Add Comment