Professional VHDL IDE?

I use Emacs+VHDL-mode which is great if you don’t mind (or have already climbed) the learning curve of Emacs. Alternatively, you could try Sigasi-HDT which is Eclipse-based and has more GUI. And some more powerful refactoring tools by the look of it.

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’/’Stop’. It also includes a macro-expander … Read more

Does Notepad++ show all hidden characters?

Yes, it does. The way to enable this depends on your version of Notepad++. On newer versions you can use: Menu View → Show Symbol → *Show All Characters` or Menu View → Show Symbol → Show White Space and TAB (Thanks to bers’ comment and bkaid’s answers below for these updated locations.) On older versions you can look for: Menu View → Show all characters or … Read more

How to clear gradle cache?

Gradle cache is located at On Windows: %USERPROFILE%\.gradle\caches On Mac / UNIX: ~/.gradle/caches/ You can browse to these directory and manually delete it or run on UNIX system. Run this command will also force to download dependencies. UPDATE Clear the Android build cache of current project NOTE: Android Studio’s File > Invalidate Caches / Restart doesn’t clear the Android build cache, so … Read more

What’s a good IDE for Erlang programming?

The best IDE for Erlang is Emacs. However, the mode which ships with Erlang isn’t the best. Erlware-mode extends it and Distel allows you to use Emacs itself as an Erlang node, enabling some very nice features. See this blog post. Between plugins for NetBeans (ErlyBird) and Eclipse (ErlIDE), I prefer the Eclipse one. NetBeans at least used to require nightly … Read more

Anyone know how to solve the error of “collect2.exe: error: ld returned 1 exit status” when a program in C is running?

Overall, your problem is that you’re trying to run a program that is interactive from within Sublime; it doesn’t support that. Sublime captures output your program sends to stdout and stderr and displays it in the output panel, but it does’t connect the panel to stdin. So, the scenario you’re encountering works like this: You run your program, which is … Read more

IDE for OCaml language

Editors • Emacs ◦ ocaml-mode from the standard distribution ◦ alternative tuareg-mode https://forge.ocamlcore.org/projects/tuareg/ − cheat-sheet: http://www.ocamlpro.com/files/tuareg-mode.pdf ◦ camldebug intergration with debugger ◦ type feedback with C-c C-t key shortcut, needs .annot files • Vim ◦ OMLet plugin http://www.lix.polytechnique.fr/~dbaelde/productions/omlet.html ◦ For type lookup: either https://github.com/avsm/ocaml-annot − or http://www.vim.org/scripts/script.php?script_id=2025 − also? http://www.vim.org/scripts/script.php?script_id=1197 • Eclipse ◦ OCaml Development Tools http://ocamldt.free.fr/ ◦ an old plugin OcaIDE http://www.algo-prog.info/ocaide/ … Read more