Developer tools refer to set of software that are frequently used during the software development process.
22
votes
6answers
1k views
Should I be worried about overengineering programming assignments given during interview process?
I recently had a phone interview with a company. After that phone interview, I was told to complete a short programming assignment (a small program; shouldn't take more than three hours). I'm only ...
1
vote
1answer
153 views
Zen Coding for Java?
I just saw a demonstration of Zen Coding. I think it's a great investment on productivity, however my work is 99% backend data processing via Java.
So far I only know templates in Eclipse like ...
-1
votes
1answer
100 views
C# tool for real time code path visualization [closed]
I remember seeing a Visual Studio 2012 extension that added 'develop'-time support for executing methods and functions with mock data, in a very similar way to LightTable. Does anyone know what it's ...
3
votes
4answers
401 views
Command line tools vs IDE (Eclipse ) [duplicate]
Not sure if this is the right place to ask the question, but I'll ask anyway. (If it is not, please let me know!)
I'm working in a team of 5 programmers on a project which we have to start on ...
1
vote
1answer
51 views
Is there something like Brew for Sysops where I can go on a fresh VPS and say, “sissyops rails-box”?
I've been learning how to make websites with Rails for the past 4 months. I'm really starting to grok it.
The problem is 99% of the tutorials out there use Heroku as the de-facto hosting platform; ...
2
votes
3answers
92 views
How to organise utility scripts inside a development team?
Inside my development team there are a lot of tooling/utility scripts around all members. Those scripts are mainly for specific tasks and shouldn't be part of our SCM (perforce).
How should we ...
0
votes
2answers
161 views
Indenting/formatting brackets like { } and [ ] [closed]
Is there an application that can easily align/format brackets such as [ ] { and } ?
e.g. change
{
{
}
}
into
{
{
}
}
3
votes
1answer
633 views
Picking a code review tool [closed]
We are a startup looking to migrate from Fogbugz/Kiln to a new issue tracker/code review system. We are very happy with Jira, especially the configurability, but we are undecided on a code review ...
5
votes
1answer
173 views
Tool to identify (and remove) unnecessary website files?
Inevitably I'll stop using an antiquated css, script, or image file. Especially when a separate designer is tinkering with things and testing out a few versions of images. Before I build one myself, ...
2
votes
2answers
180 views
Automated deployment/installation of development tools [closed]
My team is looking to automate installation/deployment of all of our development tools.
The main driver for this is to ensure that everyone in the team has a consistent development environment setup ...
3
votes
2answers
537 views
How to create a code generation tool for Visual Studio
I'm working on a tool that will generate some C# code, which I hope could prove useable to a wider audience. This tool will read an assembly and a text file containing some data and then generate a ...
4
votes
1answer
723 views
Is there a desktop tool to auto-combine & minify JS on save?
I've been using Less.app lately to automatically minify CSS and compile it from LESS to CSS immediately when I save a LESS source file. It seems like an obvious thing, but I can't find a tool that ...
3
votes
1answer
158 views
Looking for a digital developer book service [duplicate]
I just started managing a small team of developers for my company and I would like to give them access to a library of books that would help them improve their skills.
Before I buy a bookshelf worth ...
4
votes
2answers
162 views
Suggestions for tree (as a visualization tool) editing software?
I'm trying to generate a call tree for code I'm working on (I didn't write it) to help me understand it. I want to be able to manually enter each function and the functions it calls (as children), ...
5
votes
4answers
8k views
SVN code review tool
I would like to do some code review on the SVN repository used by our team.
For now, I've used Eclipse: show log on trunk, click on a revision and "Compare" to see the changes. The diff renders ...
1
vote
1answer
107 views
Is there a release tool for interpreted languages? [closed]
I am looking for a release tool for parsed languages (do not need complex build mechanism).
The following features, which I consider standard, are what I am looking for:
GUI, browser based ...
1
vote
2answers
644 views
Finding header files
A C or C++ compiler looks for header files using a strict set of rules: relative to the directory of the including file (if "" was used), then along the specified and default include paths, fail if ...
3
votes
1answer
252 views
What's there in Eclipse, other than PyDev, for a Python developer?
Like many other people, I use Eclipse with the excellent PyDev plugin (available in the Eclipse Marketplace) to develop my Python projects. And like most people with the same setup, I came to PyDev ...
4
votes
3answers
572 views
What it the best programming/developer productivity tool … you have coded youself? [closed]
Well, the question is in the subject, but I would repeat - what is the best programming/developer productivity tool you have coded yourself.
A small console application or a script you hacked in a ...
1
vote
1answer
310 views
Company moving away from IBM Rational solution… any good alternatives?
We are moving away from IBM Rational products due to really high costs. I am trying to find alternative solutions that will roughly cover all the functionalities from IBM Rational product line. I ...
2
votes
2answers
216 views
What is the best way to maintain software tool chains?
Short Question
What is the best way to create, maintain, and distribute software development tool chains?
Background
I am trying to develop a workflow / process to create an isolated environment in ...
2
votes
1answer
83 views
Best single tool to generate documentation related to a web application speed [closed]
I want to generate a documentation on the application performance with stats related to speed, page load time and various other possible data with the same across different browsers. Basically i want ...
2
votes
2answers
935 views
Visual Web Developer 2010 Express, automated testing, and SVN
We have an HTML designer who is not a developer but needs to modify .aspx files from our ASP.NET 2.0 projects from time to time in order to get CSS to work properly with them. Currently, this ...
2
votes
2answers
152 views
What tools can be used to get a reference like document.frames.item(0).document.innerhtml?
I want to scrape things from a web page. The way I want to do this is to extract the text of a DOM element (I believe this is the correct description). This means that I will to retrieve the text of ...
4
votes
5answers
507 views
Is it worth writing a memory error detection tool for C++ these days?
For past 2 years, I have been writing a tool in C++, meant for C++ as my hobby project. Slowly, I realized that it can be made commercialized, as it can compete with other memory leak detectors. This ...
10
votes
9answers
2k views
What is a dedicated Linux box used for?
So this is probably a very basic and obvious question for most people, but my google-fu is failing me and it just seems something is going over my head. I've heard numerous people refer to having a ...
5
votes
3answers
211 views
How do I know what tools I can download in my country?
I've seen a spate of questions on Stack Overflow and elsewhere about downloading programming tools and where to find them. Sometimes developers can't find a download link or availability in their ...
5
votes
2answers
861 views
Seeking Delphi (Pascal) code beautifier
Preferably a tool which will run from inside of the Delphi IDE (I use Delphi 7), but I can accept a standalone program.
Should have the ability to define rules (X space indent, no tabs, one statement ...
4
votes
4answers
811 views
Seeking Windows file compare which accepts directories and filters for source code only
There are some good free file compare programs out there and most of them will compare directories too. But what I am look for is one where I can specify a filter like *.cpp and have it ignore object ...
7
votes
8answers
277 views
Choosing a particular stack because of the IDE, tools and ease setting up the dev env
I almost always choose the Microsoft stack over anything else because of Visual Studio, the available tools and how easily I can get started programming with a particular new framework.
Please, that ...
2
votes
5answers
509 views
Seeking LOC counter with estmated cost to write those LOCs
I had one (Linux only) and I lost it. I'd like another, either Windows or Linux will do.
Please don't turn this into a "such estimates are useless" discussion. I need ... something, anything ... to ...
2
votes
2answers
725 views
Is there an Auto Generator for DataContracts? [closed]
Is there a tool out there that can quickly and simply generate a DataContract from either XML or JSON? Doing it manually can be a real pain.
8
votes
3answers
629 views
Are there any tools for testing drag & drop Windows desktop applications?
I need to develop a Windows desktop application (win32 API) which will use drag & drop extensively in many formats, including my own. I need to test it, for example, with CF_TEXT dragging, CF_RTF, ...
29
votes
13answers
5k views
Must a programmer learn text editors like Emacs and Vim? How important are they?
I have been writing code so far in conventional text editors that come with the OS so far or use an IDE in some cases. I know there are some advanced text editors like Emacs and Vim available solely ...
21
votes
10answers
2k views
Good resources and tools for modern, heavy JavaScript development?
I am interested in doing some projects that involve heavy use of JavaScript. Namely HTML5 based canvas games, potentially using node.js as well. I am interested in learning modern best practices, ...
34
votes
32answers
4k views
Most underestimated programming tool [closed]
We have many great tools which helps a lot when programming, such as good programmers text editors, IDEs, debuggers, version control systems etc. Some of the tools are more or less "must have" tools ...
7
votes
15answers
767 views
Looking for a light weight note program [duplicate]
This might belongs on superuser but for me it's part of programming so i will ask it here.
I find I use notepad to keep chunks of data that are important but not important enough to keep in my head. ...
2
votes
1answer
136 views
Why does F. Wagner consider “NOT (AI_LARGER_THAN_8.1)” to be ambiguous?
In his article on Virtual Environments (a part of his VFSM specification method) Ferdinand Wagner describes some new ways of thinking about Boolean Algebra as a software design tool. On page 4 of ...
5
votes
3answers
298 views
When is it ever ok to write your own development tools? (editor into IDE)
So I'm foremost using a text editor for coding. It's a very bare bones editor; provides mostly just syntax highlighting. But on rare occasions I also need to debug something. And that's when I have to ...