The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
30 views

how to implement automatic functional tests in php

Everywhere I read about the importance of automated tests. I understand the importance and I will do it in my upcoming projects now (a little bit late I know but better late than never ;-)) I read ...
0
votes
0answers
24 views

Building javascript “packages” from source files

I want to develop JavaScript as I would Java, in the form of packages. I have the following files: /src/package/ClassA.js /src/package/subpackage/ClassB.js ClassA.js: function ClassA () { ...
-3
votes
2answers
52 views

Useful tools that detect bugs automatically in Android app development [duplicate]

Are there Android Apps developer willing and available to spend their 2 minutes talking about the tools you use to detect and solve bugs during development? I am looking for analysis tools specific ...
0
votes
1answer
50 views

Please suggest a tool to manage user story clarification Q&A

Currently we use an excel sheet where we put our questions to the business analysts when the developers or testers have questions on UserStory/UseCase. Typical columns will be: Document | Section ...
0
votes
1answer
31 views

What happens when I view some element on page with browsers's development tools?

For several times I have encountered a strange behavior of our web-pages: if I just open the page it looks in one way, and if I view some element of that page with the developers tools provided by my ...
-2
votes
1answer
30 views

Development tooling in a corporate environment [closed]

I'm a developer working for a large multinational corporation whose primary function is not technology but still employs a large number of developers. I'm interested to know other peoples experiences ...
0
votes
1answer
123 views

Are there any log collectors or log management tools that are made by Python?

Something like Ruby's Fluentd and Java's Graylog2. I think Python is suitable with this kind of work, but I did find one.
2
votes
2answers
180 views

Tool that converts if to switch? [closed]

Is there a tool that converts C++ ifs to switches? Both nested or non-nested ifs: if ( a == 1 ) { b = 1; } /*else*/ if ( a == 2 ) { b = 7; } /*else*/ if ( a == 3 ) { b = 3; } It should, of ...
6
votes
2answers
165 views

generate diagram of “include” relationships between source code files

I want to do some refactoring of code, especially the "include"-like relationships between files. There are quite a few of them, and to get started, it would be helpful to have a list, diagram, or ...
0
votes
0answers
226 views

Compare two websites (Frontend), highlight differences

I am looking for a tool (either online or desktop, don't care) which allows for a visual comparison of two website in order for my clients to quickly see the changes in versions. What I am not ...
1
vote
2answers
123 views

Validation tool or pattern for GWT

I am looking for a tool or a pattern to implement validation for GWT. Is there something that has embedded validation functionalities? EDIT: I mean validations in forms I installed STS with the GWT ...
0
votes
2answers
615 views

how to inspect jquery code on chrome developer tools?

I use web developer tools to inspect html and subsequently see the css that is attached to the html element. This is proving to be a great process for learning from other websites (and the debugging ...
0
votes
3answers
96 views

HTML Inspection tool for developers for Chrome?

Is there any developers tool to inspect the HTML code for Chrome, like firefox firebug tool?
1
vote
3answers
379 views

SCORM 1.2 Development Tool

Can anyone recommend a development tool I can use to build SCORM 1.2 content? I would like to develop my SCORM content using HTML and Javascript. From some of the examples I have seen online, all ...
0
votes
3answers
179 views

Quickest way to diff two snippets of code?

Every now and then I will find snippets of code within an application that seem mostly identical, but I need to run a diff to either confirm they are the same or to find the small differences. One way ...
1
vote
1answer
518 views

Firebug Console, Safari / Chrome Console

One of the best features about Firefox and Firebug is that you can see exactly what your AJAX calls responses are. Safari and Chrome have Developer Tools, but the Console is crap. It doesn't show ...
1
vote
1answer
2k views

Does Chrome's Developer Tools have an option to disable cache as firebug does?

Does Chrome's Developer Tools have an option to disable cache as firebug does? If so would someone be so kind as to point me towards it?
1
vote
1answer
427 views

What are some good tools, if any, for Gtk3 / Gnome Shell theme/extension development?

I am a seasoned web developer (XHTML/CSS/JavaScript/X-Browser), and have just installed Fedora 15. Fedora is on the bleeding edge, and ships with Gnome 3 / Gnome Shell as the default desktop. I know ...
1
vote
2answers
349 views

Better DDMS for windows?

Is there a better application than DDMS for windows? I'm just looking for a good way to watch device's logcat, and it has a lot of bugs and problems.
3
votes
2answers
103 views

Development tool to keep track of Python module files

I'm working on a project with a growing number of files (modules) which are having a growing number of dependencies on one another. Is there a tool (preferably FOSS) that will keep track of the ...
0
votes
1answer
376 views

Is it possible to develop Flash CS5 applications in linux?

A freelancer which I plan to hire to develop an application, said he will do it in Flash CS5. I want that I should be able to change code / add minor features myself later on. Is it possible to ...
3
votes
1answer
450 views

Extension for Chrome or Firefox to edit pages?

Is there an extension like Firebug/Chrome "inspect element", that allows one to easily add nodes to a page, and save the changes back to a file? It strikes me that this would be nice way to develop ...
3
votes
0answers
127 views

Great team setup for web application development? [closed]

What is the ideal setup for web application development? If you choose proprietary software, please indicate why it is worth spending the money on rather than going open source. Programming ...
3
votes
2answers
96 views

Does your company have a Development Tools team?

The organization that I work for (a software company) is considering starting a development tools team. Our office has ~200 developers, but company-wide there are several thousand. This team develops ...
1
vote
6answers
313 views

Lightweight versioning system for standalone development

I develop a lot of prototypes while I am trying out stuff. I wish I could have a lightweight versioning system which would keep backup of these and make it easy for me to find them next time. It would ...
1
vote
1answer
195 views

jQuery bookmarklet for selectors

It should work like this: Fire a bookmarklet Select the first element by clicking Select the second element It outputs a series of jQuery calls which would allow selecting the second element given a ...
1
vote
2answers
30 views

What development tools are available for a user to use that doesn't require an installation (admin rights)?

Got a nice new laptop for work but unfortunately I don't have any admin rights to install anything on it. I'm an amateur developer and would like to utilize the laptop at home to do some fun coding on ...
0
votes
1answer
45 views

How to create visual development tools usable by an end user?

For instance, Google's App Inventor for Android is aimed to serve non-programmers. Are there any researches on this matter, which deal with the following questions: Real tests, showing to what ...
1
vote
1answer
69 views

What are the most useful Runtime tools for exercising and debugging code in the wild?

After a product is released, we have the need to execute or debug code that has been deployed to the live environment. I tend to use PowerShell to create objects and invoke public functions rather ...
4
votes
4answers
2k views

How to fix “No newline at end of file” compiler warning for lots of files

I have a huge number of source files that are all lacking a newline at the end. How do I automatically add a newline to the end of each of them? Some may already have a newline, so it should only be ...
1
vote
3answers
116 views

Options to develop professionally with Microsoft tools and Technologies without spending a lot?

I would like to develop applications for the Windows platform & at the very least I need a server based Windows OS (2008), SQL Server, IIS and Visual Studio. Looks like VS2010 professional alone ...
1
vote
2answers
412 views

How do I create a development tool to create custom object instances for iphone os

I'm setting out to create an app where it will use 7-10 instances of a custom class, lets call them "books" each class will consist of a number of pages, a title, a int of how many pages a book ...
8
votes
6answers
496 views

Is it bad practice to use two SVN clients at the same time?

I am currently using Tortoise SVN and a SVN plugin from my IDE. Sometime problems appear, and it seems that my .svn aren't always in a consistent state. So is a bad practice to use two SVN clients ? ...
4
votes
4answers
133 views

What tools are indispensable for programming in a certain language? [closed]

I've recently been implementing my own programming language, mostly to get a feel for what it takes and hopefully to understand quirks of other languages better. I've mostly finished the language ...
11
votes
6answers
4k views

.NET Reflector for Mono

Is there an equivalent of .NET Reflector for Mono? Quick googling did not find anything... Or can I run Reflector on Mono (say, in Mac OS X)?
0
votes
2answers
38 views

Tools to package with distributable for easy debugging?

We are looking for a set of free Windows tools that can be put in a "tools" directory and distributed with our applications, so that when we encounter an issue on a customer site we can diagnose it ...
11
votes
1answer
3k views

How to build BlackBerry application on Linux?

I've read on some development blogs that it is nearly to impossible to build BlackBerry application properly on operating systems other than Windows. Any possible workarounds on veryfication, rapc ...
7
votes
5answers
331 views

How do you replicate your developer PC setup on multiple machines?

Let's say I have a development PC at my work, another development PC at my home, and a tiny netbook PC that I often carry with me. Since these PCs have the same operating systems, the problem of ...
4
votes
9answers
3k views

Renting development machines by the hour using remote access

I am thinking about getting an iPhone, but there are no good solutions for developing iPhone applications on the Windows platform. I don't own or have easy access to a Mac. Were my position switched, ...
4
votes
10answers
1k views

mini laptop development tools recomendations

I have Acer 1 mini laptop that I use on the road. What development tools (ide's, frameworks) are recommended so it will be still light? I'm programming mainly in Java and C++, with XP installed.
6
votes
6answers
663 views

What's Your Complete Tool Stack for Java Web Development and Why? [closed]

My Team recently embarked on our first real Java web app. Prior to this, our corporation was primarily a COBOL shop with some VB and C thrown in. Recently, new blood's been injected, including me ...