How to debug angular app using angular-cli webpack?

How to debug with angular/cli The new angular/cli version uses webpack which does not compile the ts files to an local directory like dist before (till beta 1.0.0-beta.10). Now it uses some memory like approach. But you can find the ts Files in the Chrome Developer Tools in the “Sources” tab. (new) Solution for angular/[email protected]Read more

How to stop IntelliJ truncating output when I run a build?

By a popular request Override console cycle buffer size setting was added to the UI 9/14/16: Original answer for older versions: Edit your IDEA_HOME\bin\idea.properties file, and increase this setting: #———————————————————————– # This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb). Older lines are deleted. # … Read more

Intellij – Unable to use newer Java 8 classes – Error : “Usage of API documented as @since 1.6+..”

Edited the answer based on Bastien Jansen comment. Seems that there is another project setting that affects the compiler level. A subtle indication of this problem is when your compiler starts complaining of the source and target java version being different from the one you specified while you are compiling the code Warning:java: source value … Read more

IntelliJ IDEA code format from checkstyle configuration

finally there is something: checkstyle-IDEA since 4.24.0 features import of checkstyle config. A solution is available now: Please install CheckStyle-IDEA plugin (http://plugins.jetbrains.com/plugin/1065?pr=idea), it can be found via plug-in repository (Settings|Plugins|Browse repositories). Go to Settings|Editor|Code Style, choose a code style you want to import CheckStyle configuration to. Click Manage…|Import.., choose “CheckStyle Configuration” and select a corresponding … Read more

Can IntelliJ IDEA encapsulate all of the functionality of WebStorm and PHPStorm through plugins? [closed]

All of the functionality of our lightweight IDEs can be found within IntelliJ IDEA (you need to install the corresponding plug-ins from the repository). It includes support for all technologies developed for our more specific products such as Web/PhpStorm, RubyMine and PyCharm. The specific feature missing from IntelliJ IDEA is simplified project creation (“Open Directory”) … Read more

spring boot hotswap with Intellij IDE

A solution that uses devTools works : 1 – Adding devtools to your project <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> 2- Enabling automatic build Open the Settings –> Build-Execution-Deployment –> Compiler and enable : Build Project Automatically. 3- Update the value of compiler.automake.allow.when.app.running press ctrl+shift+A and search for the registry. In the registry, enable : compiler.automake.allow.when.app.running Hope … Read more

How to configure custom PYTHONPATH with VM and PyCharm?

For PyCharm 5 (or 2016.1), you can: select Preferences > Project Interpreter to the right of interpreter selector there is a “…” button, click it select “more…” pop up a new “Project Interpreters” window select the rightest button (named “show paths for the selected interpreter”) pop up a “Interpreter Paths” window click the “+” buttom … Read more