Bumf71
- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
Bumf71 commented, -
-
Bumf71 created a post, Indentation of if statements where condition spans multiple lines
Hi,Due to code-sniffer rules on our project, multi-line function calls have to start on their own line. So when a multi-line function call is the condition of an `if` statement, it formats like ... -
Bumf71 commented, -
-
-
Bumf71 created a post, Scala make takes 10s even with no changes whilst Activator is sub-second
Hi all,I am working on a hello-world Scala/Play app in Intellij IDEA 14.1.1I am running a very simple test - see below. Running just this test through Intellij takes 10s even without any changes to... -
-
Bumf71 created a post, Easy way to add js & css libs to HTML page
GdaySo I have Twitter Bootstrap setup as a library and I'm looking at an empty HTML page in the editor.Is there an easy way to add the appropriate <link> and <script> lines to the page? I use Emmet... -
Bumf71 created a post, Phpunit suppressing errors when skipping tests
Hi,I'm skipping unit tests like sopublic function setup(){ parent::setup(); if ( ! defined ('TEST_DB')){ $this->markTestSkipped('skipping db tests'); return; ...