tools

ASP.NET MVC - The controller for path '/non' was not found or does not implement IController.

I use the jQuery Tools Overlay plugin and I have this code here <script type="text/javascript"> var overlayElem; $(document).ready(function () { $("a[rel]").live('click', function (e) { e.preventDefault(); overlayElem = $(this); $(this).overlay({ ...

CSS "Normalizer" tool?

I need to maintain & improve an existing website and I am drowning in the redundancy I have discovered in its CSS stylesheet. Given the existing redundancy and non-methodlogical ordering of elements, it's hard to track and predict how a minor change will propagate through the system, or where to apply a change to achieve a certain effect...

Best tool tool for inspecting PDF files?

What tool do you recommend for inspecting PDF files? Use case: I'm trying to programmatically generate PDF files (using iText). I'm having trouble achieving certain layouts, but I have PDF files with text laid out the way I want (generated from Word). I would like to reverse engineer how they do it. PDF Inspector seems to be good, bu...

Detecting Effective Invisible HTML elements

Is there a way to detect if a rendered DOM element has the same color as its background, effectively being invisible invisible elements (that is: elements invisible not because of display style property, but based on color only), possibly through a framework/tool that works at least on one browser? Ideally, it would be able to detect ver...

Best tool to remove dos line ends and join line back up again

I have a csv file into which has crept some ^M dos line ends, and I want to get rid of them, as well as 16 spaces and 3 tabs which follow. Like, I have to merge that line with the next one down. Heres an offending record and a good one as a sample of what I mean: "Mary had a ^M little lamb", "Nursery Rhyme", 1878 "Ma...

Refactoring advice and tools

I have some code that consists of a lot (several hundreds of LOC) of uggly conditionals i.e. SomeClass someClass = null; if("foo".equals(fooBar)) { // do something possibly involving more if-else statments // and possibly modify the someClass variable among others... } else if("bar".equals(fooBar)) { // Same as above but wi...

We need to test a mixed windows-Linux environment. Is there a automation tool that supports both?

We are trying to automate an aplication that lives in a mixed windows-linux environment. We need a test automation tool that supports both environments. Any recommendations? We are evaluating SeeTest (www.experitest.com) that claims to be capable of supporting both Linux and Windows . Does anyone have any experience using it for such...

microsoft stress tool hardware requirements

Hi, Recently i have downloaded Microsoft stress tool - is this stress tool supporting xp operating system or it's need only server edition(like-windows 2000 etc...) Please help me Thanks in advance. Veerendra ...

How can I do modeling in reverse by parsing a C program and turning it in to a circuit diagram to be displayed.

How can I do modeling in reverse by parsing a C program and turning it in to a circuit diagram to be displayed. Example Except this is psedocode. ...

Web code re-use, How do you organize your scripts snippets?

In every web project most of the time the code is just being re-use. From the drop-down navigation, Rotating Header to CSS Grids. This process makes your workflow more faster and more efficient. I'm wondering how do people organized those scripts? Where do you store it? How do you break it down into category (javascript,css,php etc.)? so...

what is operating system requirement for microsoft stress tools

Hi, what is operating system requirement and hardware requirement for microsoft stress tools ...

Minimum operating system requirement for microsoft stress tools ?

Possible Duplicate: what is operating system requirement for microsoft stress tools Hi Please help me i need the minmum operating system requirement for microsoft stress tools ...

Code Generator for wrapper classes

Hi guys, Do you know of a tool that generates wrapper class based on another class? EDIT: By wrapper class I mean a class which wraps all exposed(public, protected) properties methods events so that you can put any logic in the middle. My concrete purpose is use it to verify the behavior of the wrapped class. ...

.Net: State of the Art in tools & frameworks

This is question for those who work in .Net and are curious enough to expand their toolset, including also things beyond Microsoft's solutions. Coming from the Java world, there is a toolset I would consider using every new project, such as: Spring for IoC and MVC. JPA/Hibernate for persistence and ORM. JUnit/TestNG for unit testing. ...

Red Gate's SQL Toolbelt or Quest's Toad for SQL Server?

We are evaluating trial versions of Red Gate’s SQL Toolbelt and Quest Software’s Toad for SQL Server. What are the main differences between these tools? The benefits of using these tools are quite obvious but we are wondering which one is more suitable for a developer and development work? Is Toad for SQL Server more focused on DBA work?...

Mapping module imports in Python for easy refactoring

I have a bunch of Python modules I want to clean up, reorganize and refactor (there's some duplicate code, some unused code ...), and I'm wondering if there's a tool to make a map of which module uses which other module. Ideally, I'd like a map like this: main.py -> task_runner.py -> task_utils.py -> deserialization.py -> file_...

Open source Animation Content creation tools?

Hi, Are there any open source content creation tools that will help create rich animations (flash/html 5/windows based)? The end users will be non-computer savvy so it should be easy for them to work on it. I am also willing to look at commercial versions, but if we have an open source software, it will be much easier to adapt it to ou...

Good Code Review Software available?

It's been 18 months since the same kind of question was asked. This is an update. I've been searching around for free Code Review Software but couldn't find a definitive answer to find a good tool that would be easy to setup for our team. My list includes: reitveld, running on Google App Engine. Review Board, from VMWare. Codestriker,...

How to discover the method that is called by a Windows Context Menu item?

When you click the right mouse button on your clean desktop it opens a context menu. Each item there is a call to a method. To programmatically call those methods, first I need to know which one I want. IIRC there is a tool that helps with that, but I can't remember its name. ...

XML pretty-printer with fixed line-width output

I need a command-line XML pretty-printer tool that will not overflow given output line width. All tools I've tried (xmlstarlet, xmllint, xmlindent) overflow line width when printing tags with many attributes. I'll settle if each attribute will be printed at a separate line (while keeping indentation of course). Tool must be free, runna...