VS Code search.exclude doesn’t work

Just in case this helps anyone else, here’s a list of things that could be affecting whether your file/search exclusion settings are working as expected. Double-check whether you’re using the right patterns; you can see what kinds of patterns VS Code supports here. One common problem is to not add * before an extension you … Read more

Which Scheme IDE’s are there?

Other answers have given all the good choices, but without much description. Here’s some more detail: DrRacket Racket’s IDE, DrRacket, is a great tool for beginners and has a lot of strengths for more advanced schemers. It has good profiler and debugger support (far better than Emacs), uses “standard” keyboard shortcuts by default, and is … Read more

Scheme IDE for Windows

DrScheme is the best Scheme IDE I have found. It has a JIT compiler, can build stand-alone executables or run in the traditional Scheme REPL, has smart syntax editing , as well as other traditional IDE features like Menu bars to change features. Running/stopping your program is as easy as clicking ‘Run”https://stackoverflow.com/”Stop’. It also includes … 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

VB6 Editor changing case of variable names

Since I always find this thread first looking for a solution to messed-up casing, here is one Simon D proposed in a related question: If you just need to fix one variable’s casing (e.g. you accidentally made a cOrrectCAse variable and now they are all over the place), you can correct this for good by … Read more

Android Studio ‘tools.jar’ file is not present in classpath

Check if java JDK is installed correctly dpkg –list | grep -i jdk if not install JDK sudo add-apt-repository ppa:webupd8team/java sudo apt-get update && sudo apt-get install oracle-jdk7-installer After the installation you have enable the jdk update-alternatives –display java Check if Ubuntu uses Java JDK 7 java -version If all went right the answer should … Read more