Bumf71
- 活动总数 15
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 5
-
Bumf71 进行了评论, -
-
Bumf71 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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; ...