Slightly unrelated, but why does everybody insist on calling it vi(m)? I have never seen a box that used vi in lieu of vim, it seems to be a historical artifact.
Calling it vi is probably used here to mean anything that acts somewhat like the original vi. There are quite a few editors like that, and vim is probably the most common. > I have never seen a box that used vi in lieu of vim I'm going to guess that you mostly use Linux boxes? The BSDs use nvi, which works and act like the old Berkeley CSRG vi. If you look at more esoteric systems like Solaris, AIX, etc. , you're lik…
Poll: Android developers, what IDE do you use?
51–60 of 81 posts
Re: Poll: Android developers, what IDE do you use?
#52As someone who is interested in Android, but is currently being scared off by Eclipse, does anyone know any good resources for developing for Android in something that isn't $BLOATED_JAVA_IDE? I tried vim, but the command-line builds were horribly slow, and almost all documentation and tutorials I found expected me to be using Eclipse.
Re: Poll: Android developers, what IDE do you use?
#53IntelliJ IDEA. Because it is sooo much better than Eclipse.
For those of us that haven't used IntelliJ, but have used Eclipse, could you explain further how it's better? I really don't have any issues with Eclipse, as long as I'm using a fast PC with a lot of RAM (SSD helps as well).
Re: Poll: Android developers, what IDE do you use?
#54As someone who is interested in Android, but is currently being scared off by Eclipse, does anyone know any good resources for developing for Android in something that isn't $BLOATED_JAVA_IDE? I tried vim, but the command-line builds were horribly slow, and almost all documentation and tutorials I found expected me to be using Eclipse.
Yes command-line build/deploy is horrible, the way to use vim is: - Write code in VIM - Build everything on Eclipse. Basically keep eclipse open only to build, and deploy to the smartphone. Everything else, do it in vim.
Re: Poll: Android developers, what IDE do you use?
#55Slightly unrelated, but why does everybody insist on calling it vi(m)? I have never seen a box that used vi in lieu of vim, it seems to be a historical artifact.
On some systems vi is aliased to vim, so you would appear to have both, but you really just have vi. Even on systems where full vim is not installed, the "vi" installed is cut down vim.
I worked in Centos for awhile and vi was aliased to vim, but that might have been a local practice.
Re: Poll: Android developers, what IDE do you use?
#56Re: Poll: Android developers, what IDE do you use?
#57Re: Poll: Android developers, what IDE do you use?
#58Earlier quoted context omitted.
Why is command line deployment horrible? Write some scripts, copy stuff with ssh, etc... I continue to be horrified at the refusal of modern app developers to write code to help them write code.
Someone already did that for us, it's called an IDE. I continue to be horrified by engineering re-write code that already exists.
Every one of these is a valuable optimization for some workflow somewhere. All of them reduce the compile/test cycle by seconds or minutes, speeding development. NONE of them are done by any IDE I'm aware of.
Seriously: write code to help you write code. If you aren't doing this, you probably aren't writing good code. And if you gave that answer in an interview, I for one wouldn't hire you.
Re: Poll: Android developers, what IDE do you use?
#59Earlier quoted context omitted.
well if you had used a proper IDE in the last decade you'd realize that Eclipse is not perfectly acceptable.
As someone who uses Eclipse pretty regularly, what don't you like about it? I'd never really used big IDEs before I got into Java either, so I'm curious.
Also, try using eclipse on very large projects -- it gets very slow. Sometimes I'm not sure if eclipse is hung, or if it's still stuck compiling something or fetching something in maven.
Re: Poll: Android developers, what IDE do you use?
#60I used to only use textmate because eclipse/adt was soooo slow. Since adt 12 is out and i have a brand new iMac eclipse is working just fine for me now. That said i still use ant to manually compile my releases.