Bogdan Calmac

- Total activity 32
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 9
-
Created Does PyCharm work with the Cygwin Python?
I guess the title says it all. This would help me avoid maintaining two Python installations: the Windows one for PyCharm and the Cygwin one for running the scripts (I do want to run the scripts in... -
Created Syntax highlighting for Apache httpd.conf
AnsweredIs there any plugin providing syntax highlighting for Apache HTTPD configuration files (httpd.conf)? -
Created How much functionality is there in the Spring diagram for Java config?
Consider the following Java config (from Spring in Action)@Configuration@EnableTransactionManagement@ComponentScanpublic class RepositoryTestConfig { @Bean public DataSource dataSource() {...... -
Created What is the point of the "static method declared final" inspection?
AnsweredStatic final methods trigger the following warning:'static' method declared 'final'Reports methods declared final and static. When a static method is overriden in a subclass it can still be accesse... -
Created How can I disable the new annotation highlighting from 14.1?
I've just upgraded to IntelliJ 14.1 and I noticed that annotations are now highlighted in two ways (see screenshot): The @ symbol has a violet background Violet markers are added in the marker bar ... -
Created How can I disable auto-capitalization in SQL completion?
If I start typing "not nu" and accept the auto-completion it inserts "NOT NULL"This is on IDEA 14.0.2 (with a MySQL database if it matters)I remember that in IDEA 13 (with a SQL Server database) th... -
Created How can I get full coverage on class of static utility methods?
Consider the following minimal class:public abstract class UtilityClass { private UtilityClass() {} public static void utilityMethod() {}} When I run the tests with coverage, the empty constr... -
Created How can I specify additional include files?
I want to use the check C unit testing framework which is installed in /usr/local/include. How can I tell CLion/CMake to look in that directory for headers?