How to integrate ZXing Library to Android Studio for Barcode Scanning?

You need add the following to your build.gradle file: repositories { mavenCentral() maven { url “http://dl.bintray.com/journeyapps/maven” } } dependencies { // Supports Android 4.0.3 and later (API level 15) compile ‘com.journeyapps:zxing-android-embedded:2.0.1@aar’ // Supports Android 2.1 and later (API level 7), but not optimal for later Android versions. // If you only plan on supporting Android … Read more

IDE for ironpython on windows [closed]

SharpDevelop with IronPython 2.0 Beta Integration is worth a look – especially given that it’s free. Also, check out this Iron Python 2 – what IDE do YOU use? discussion. Seems to confirm your belief that “IronPython Studio doesn’t support IronPython 2”.

How to use Gradle to generate Eclipse and Intellij project files for Android projects

Gradle itself is a generic build tool, it is not created specifically for Android. All the functionality is enabled using plug-ins. Traditionally, build plug-ins don’t generate project structure. That’s the job of project specific tools. The Android plug-in for Gradle follows this. The problem is that current android tool in SDK generates old type of … Read more

Which IDE for Scala 2.8? [closed]

I’ve been pretty successful with IDEA 9. I’ve briefly tried both Netbeans and Eclipse and wasn’t able to get what I wanted. Eclipse’s code-complete didn’t behave as well as I’d have liked, and I couldn’t find a way to make Netbeans handle Scala scripts; It’d just complain that the file wasn’t a class. To be … Read more

Alternative IDE for VB6 and VBA [closed]

I have never heard of an alternative IDE for Visual Basic 6.0 (VB6). However, these two (free) VB6 add-ins are indispensable and will make your life easier – especially if there is a lot of code. They are equally effective for VBA in Microsoft Office. MZ-Tools: provides a superb collection of IDE tools – finding … Read more

Is it possible to use arrow keys alone to expand tree node in package explorer in Eclipse on Linux?

Put this into your ~/.gtkrc-2.0 and you should be good to go. The Left and Right lines make the requested change, the rest are just my personal additions to make the tree-view act more vim-like. binding “gtk-binding-tree-view” { bind “j” { “move-cursor” (display-lines, 1) } bind “k” { “move-cursor” (display-lines, -1) } bind “h” { … Read more