Questions tagged [tooling]
77 questions
2
votes
0 answers
Tool to strip public method modifier from java source files?
Is there any tool out there that can remove/strip/delete the "public" modifier on Java interface method declarations?
Thanks!

Vanhel
- 29
- 2
2
votes
2 answers
Gulp livereload error in Chrome
I am trying to get LiveReload to work with Gulp and Chrome. I have installed the Chrome extension (v2.0.9), I have enabled "Allow Access to File URLs", which everyone says to do. I am running a simple PHP server with php -S 127.0.0.1:35729 -t dist.…

Moss
- 3,695
- 6
- 40
- 60
2
votes
0 answers
c/c++ windows refactoring tools with Clang tooling
I need to write a utility to refactoring source code in c / c ++. For this I use the Clang. Clang built on windows 7 x64 with visual studio 2012.
Below is the code that needs to be inverted conditions IF and swap code blocks THEN and ELSE.
void…

Dmitry
- 93
- 1
- 6
2
votes
2 answers
Javascript tooling: how complex refactoring is possible right now?
Coming from Java where most IDE supports complex refactoring which can span more source code files and projects, i wonder if there's any Javascript editors which support the same?
I've just finished watching some presentation about Cloud9's AST…

NagyI
- 5,907
- 8
- 55
- 83
1
vote
1 answer
Transfer files and run commands to/on remote servers, are there light weight tools
I tried synctool, it can run simple command on remote "nodes", such as "date", "hostname". But it failed to sync itself ("masterdir") to nodes/host.
$synctool
...... can not mkdir on node1 ... or something ...
Beside "puppet, chef", is there any…

Andrew_1510
- 12,258
- 9
- 51
- 52
1
vote
0 answers
What's the best way to share a development environment across a team?
I am on a team working on embedded software. As a result, we have many building, testing, and debugging tools that are part of our development environment along with a couple IDEs that are configured to use them. We are looking for a good solution…

danielhep
- 346
- 1
- 7
1
vote
2 answers
Is it possible to get inline evaluation similar to Clojure in Ruby?
In Clojure it's possible to evalute a form inline and get the result printed. The implementations vary for different editors, but here's how it looks like using Visual Studio Code with Calva:
Is it possible in any editor to do the same (or…

Alexander Popov
- 23,073
- 19
- 91
- 130
1
vote
1 answer
How can I get a list of entities from existing data with ServiceStack.OrmLite?
I am using test data to run integration tests. So I am using the following method
public static IEnumerable GetProductPhases()
{
return new List
{
new ProductPhase { Id = "FirstPhase", Order = 1 },
…

labilbe
- 3,501
- 2
- 29
- 34
1
vote
0 answers
Sublime Text: How to expand one level at a time? (Alt + Click functionality)
I'm trying to figure out if it's possible to fold and unfold code blocks one level at a time by using the standardized Alt+Click functionality that Finder, Chrome, and many apps use when clicking a caret or chevron at the side.
After collapsing a…

neaumusic
- 10,027
- 9
- 55
- 83
1
vote
1 answer
Tooling to Automatically Update Git Repositories When Their Submodule's or Submodules' Upstream Source's or Sources' Contents Change?
What tooling exists that is designed to make it easy (or at least easier) to update a Git repository and its submodule metadata when the source or sources for any submodules contained in that parent repository changes upstream? I've seen…

RandomDSdevel
- 431
- 6
- 17
1
vote
2 answers
Developing directly inside a container
I have been exploring Docker and containers recently and wanted to know if it is possible to develop directly inside a container? If yes, what are the existing tools?
An example workflow would be:
Suppose I need Java8, Solr, and MySQL for my…

sidmishraw
- 390
- 4
- 15
1
vote
1 answer
How to blacklist classes with stylelint?
I'm integrating basscss into an app codebase and want to use stylelint to lint my existing app codebase for classes that could conflict. My idea to prevent bugs was to blacklist those classes in my app stylelint configuration. Any idea how to do…

ryanve
- 50,076
- 30
- 102
- 137
1
vote
2 answers
Why does my npm takes hours to install dependencies?
The day I have to start a web project, I cringe. I use yeoman and gulp-angular generator for setting up my workflow. There hasn't been a time when npm install's succeeded without failing once.
Also, it take anything from a good 3-4 hours on my…

Shubham Kanodia
- 6,036
- 3
- 32
- 46
1
vote
1 answer
Clojure - boot compose task
I am using boot, and I am happy with it so far.
I still have to run two tasks currently, in two different consoles :
boot dev and boot autotest.
Therefore I would like to know it it is feasible/advised to make all boot tasks within the same JVM.
I…

nha
- 17,623
- 13
- 87
- 133
1
vote
2 answers
How can I measure the response time of a user interaction with my web app?
I have a mobile web app and I'd like a method of measuring the time it takes for my app to respond to a user interaction. An example would be measuring the time it takes for a button to change appearance (to show the user that it is clicked) after…

originUnknown
- 113
- 7