Tagged Questions
The developer-tools tag has no wiki summary.
44
votes
6answers
16k views
Internet Explorer 8 Developer Tools not displaying
Within the last day, in Internet Explorer 8, the developer tools window will not show up.
When I hit F12 or use menu Tools -> Developer Tools I get the Developer Tools entry in the Task Bar but the ...
22
votes
21answers
1k views
Why do people spend so much time searching for, and hacking around with, “free” toolsets when superior pay ones are available?
Clarification: I'm referring to companies that pay developers, professionally. I understand why a "hobby" or "for fun" developer wouldn't want to (or couldn't afford) a fully-features pay tool, and ...
22
votes
16answers
3k views
Would you use Code Bubbles? [closed]
I've read this question mentioning Code Bubbles and I've watched their video presentation.
The video is impressive, and does seem a little bit futuristic, but apparently it's somewhat real.
But that ...
14
votes
4answers
3k views
Trim trailing spaces in XCode
Is there a way to force XCode to trim trailing whitespaces when I save file?
I'm using version 3.1.3 if that matters.
13
votes
1answer
4k views
How to view http header in Chrome 9.x? [closed]
Till 9.x, the headers were under the resources in the Developer Tools, but now I can't find it anywhere.
Thanks
8
votes
2answers
2k views
Viewing HTML response from Ajax call through Chrome Developer tools?
So in my javascript I'm making an ajax call to a service on my website. Whoops, something fails. No problem. Here's what I'd do in Firefox:
Open the firebug console
Find the failed Ajax call and ...
8
votes
6answers
2k views
What's a good mail server for development use?
I'm doing some development which will involve reacting to emails, and I'd like to use a local IMAP mail server for this.
I currently use Devnull SMTP server for testing of sending emails, but this ...
7
votes
3answers
3k views
View AJAX response content in Chrome developer tools?
Traditionally I use FireBug to debug my AJAX requests. It lets you examine both the contents of your request as well as the response that was sent back from the server. (it also notifies you in the ...
7
votes
8answers
858 views
Microsoft Certified Partner? Important to Developers?
My company has recently became a Microsoft Certified Partner and from a business perspective it helps us greatly as it provides the software licenses needed to continue development in a much more cost ...
5
votes
1answer
267 views
Developer Tools - preserve console record
For Network, Profiles and Timeline, there is a record button, which preserves the log. Is there anyway I can do the same for console log?
Sometimes, if there is an error in the script or during post ...
5
votes
2answers
672 views
Disable Chrome Developer Tools' $ function
Chrome Developer Tools define a convenient $ function (as well as a few other conveniences). When using jQuery, however, it is convenient to have $ = jQuery. Is it possible to disable Chrome's ...
4
votes
4answers
138 views
Website with JS doesn't work in IE9 until the Developer Tools is activated
I'm developing a complex website that heavily leverages jQuery and a number of scripts. On load of the site, none of my scripting is working (though I can confirm that other scripts are functioning ...
4
votes
2answers
176 views
What is the best developer toolbar for IE?
I use 'FireBug' extension of FF to debug designed webpages and installed 'IE Developer Toolbar' for IE to get this purpose, but it is not as good as FireBug. It is difficult to work with it.
Are ...
3
votes
4answers
108 views
How do you debug vanishing elements with Firebug/Dev Tools on your websites?
How do you debug vanishing elements with Firebug/Dev Tools on your websites?
I have a div that disappears on mouseleave/out; I would like to explore this div with the debugger, but on my way to the ...
3
votes
3answers
205 views
Javascript debugging
I have recently started to tinker with Project Euler problems and I try to solve them in Javascript. Doing this I tend to produce many endless loops, and now I'm wondering if there is any better way ...
2
votes
1answer
167 views
Jump to file and line from outside XCode 4.2
For the NSLogger project we would like to implement the feature to directly jump back to XCode to the line in the file that issued the log entry. One would expect thatthis would be easy using the ...
2
votes
1answer
114 views
Heavy Javascript with URLs causes Chrome (DevTools?) to report bad 404's
A page containing a good load of javascript also contains URLs encoded within the javascript as JS strings.
The problem is that Chrome (or perhaps just it's Developer Tools?) is trying to navigate to ...
2
votes
1answer
93 views
IE8 - Developer Tools - Profiler
Maybe I'm doing something wrong here, but when I am profiling javascript in the Profiler tab of the Developer Tools and double click a line to a regular .js file (jquery.js) it works, it takes me to ...
2
votes
2answers
95 views
What makes a jQuery object show up as an array in Chrome's Developer Tools?
I'm wondering how it's possible that jQuery objects show up as an array in the console log of Developer Tools in Chrome.
E.g. if I execute $('<a>'), what I see in the console log is:
...
2
votes
2answers
361 views
What do the colored bars in the Firefox net panel represent?
In the firefox developer tools, under the "Net" panel, resources that are loaded have their load time split into different colors/categories. These are:
DNS Lookup
Connecting
Blocking
Sending
...
2
votes
2answers
309 views
Create shortcut to console.log()
Because I'm lazy I created a function log() that basically is just an abbreviation of console.log():
function log() {
console.log.apply(console, arguments);
}
However, whenever I call this, I ...
2
votes
3answers
249 views
IE7 javascript command line tool
I have the IE7 Developer Toolbar for IE7. It doesn't allow you to change styles of elements nor does it have a JS command line feature/console. IE8 Developer Tools has a javascript command line. I ...
2
votes
1answer
499 views
Windows Phone 7 Developer Tools and Existing Visual Studio 2010 Install - How?
Microsoft's Windows Phone 7 developer site that contains the following:
* Visual Studio 2010 Express for Windows Phone CTP
* Windows Phone Emulator CTP
* Silverlight for Windows Phone CTP
* XNA Game ...
2
votes
2answers
114 views
Any form autofill for 'Developers'?
I have looked at some autofills for Firefox. But they are not designed with the developers' needs in mind. General internet surfers will need a tool to fill in many different forms with constant ...
2
votes
2answers
62 views
Tool to generate rotated versions of an image
In sprite-based systems, it's common to fake rotation of a sprite by having many different images, each showing it rotated an extra few degrees.
Is there any free tool which will take a single ...
2
votes
5answers
222 views
Increasing productivity | What commands am I repeating?
I'm looking for a programming that monitors my activity in Windows Vista/XP/2003 that lets me know what commands, shortcuts, web sites, etc. I visit more frequently.
with this information I could ...
1
vote
2answers
97 views
How can I make the c++ fstream class references compile in Visual Studio 2010 CLR
In the following code, Visual Studio 2010 C++ does not recognize accepts the fstream include but does not recognize the fstream type:
#include <string.h>
#include <fstream>
class ...
1
vote
3answers
39 views
chrome devtools: Revisions of resources not working
In Chrome, you can edit your resources in line and Chrome will generate revisions of that resource. Here the documentation: ...
1
vote
2answers
62 views
adding functionality to chrome developer tools
I'd like to add functionality to chrome's developer tools.
In particular it would be nice to have a most used files option to the list of scripts I'm looking at. Also would be nice to hide some ...
1
vote
2answers
126 views
alternative to Resharper “go to file” and “go to implementation” features
Does anybody know a light plug-in that do (same as Resharper) go to implementation and the quick search for a file where you just insert few characters and it shows the matches? I just want to get rid ...
1
vote
0answers
96 views
Company moving away from IBM Rational solution… any good alternatives? [closed]
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 ...
1
vote
2answers
207 views
Is there any Developer tool like FireBug for IE? [closed]
Possible Duplicate:
Firebug for IE
I am looking for web developer tool like FireBug for IE for inspecting html elements? Things which works fine in FireFox/Crome does not work in IE? some ...
1
vote
1answer
102 views
Hide Mac OS X development tools from virtualenv environment
I'm working on a set of Python scripts for a client and am looking to recreate their environment locally.
We're both running OS X Snow Leopard. I have Python 2.7.1 installed, they have the default ...
1
vote
1answer
98 views
tool for editing live html in IE8
Editing live html while developing my site is very easy with Firebug or Chrome developer tools. But on IE8, the built-in developer tools don't even show you what the live html source is if it was ...
1
vote
2answers
433 views
Adding network users to _developer group (Leopard Server, Snow Leopard Client)
We have a Leopard server and a network of iMacs running Snow Leopard. Some of our users are having trouble running the debugger through XCode as the system asks for a member of the Developer Tools ...
1
vote
0answers
55 views
How to get back the “on demand” network waterfall in Google Chromes Developer Tools
Chrome gave me a new version today; it's has one new feature I don't like. The network waterfall is not available unless you have the dev tools window open and reload. I like to be able to inspect a ...
1
vote
2answers
850 views
Displaying objects in IE Developer Tools console
I'm debugging my web application in Firefox, Chrome and Internet Explorer. With the latter I'm using Developer Tools to debug my scripts.
The problem I'm having is that when I write some expression ...
1
vote
1answer
303 views
How do I uninstall Apple Developer Tools EXCEPT for the iPhone simulator?
I installed the Developer Tools and it ends up I don't really need them and it takes up a lot of room on my small hard drive. However I find the iPhone simulator extremely useful for mobile web ...
1
vote
3answers
119 views
Is there a tool that can transform a static SQL string into valid Drupal db query code?
I am wondering if there is some tool available, that will take as input a SQL command, and as output will return valid Drupal code that can be used in the Drupal Api?
EDIT
The idea is I have large, ...
1
vote
4answers
299 views
The display order of CSS rules in Chrome Developer Tools
I have been examining a web page in Chrome Developer Tools and noticed that the CSS rules are displayed in alphabetical order. I noticed that when I tried to track the inheritance of the rules applied ...
1
vote
1answer
96 views
How to generate external intellisense documentation
What tool do I need to generate XML intellisense help file as shown below?
0
votes
3answers
31 views
Tool helping split a huge class into two
Is there a good aid/tool for helping me split a huge class into parts?
The code does its job well, but having a class over 500 lines is not comfortable. I am sure it could be split up into smaller ...
0
votes
1answer
15 views
Issue with IE developer toolbar
I have just install IE developer toolbar to debug my website in IE.But i cant't see the content of javascript script codes on the page.
how can i see the js script content like firebug?
0
votes
1answer
44 views
How can I search for a class among all .css files in Developer Tools?
I am trying to find a CSS class definiton on the loaded page by using the Developer Tools of IE.
When I use the search box under CSS tab it seems it only searches the selected CSS file.
Is it ...
0
votes
1answer
166 views
Deleted the /Developer/Platforms/iPhoneOS.platform/DeviceSupport folder and now I can't test on my device
I deleted the /Developer/Platforms/iPhoneOS.platform/DeviceSupport folder by mistake trying to fix an EXC_BAD_ACCESS error. The folder I was supposed to delete was: ...
0
votes
5answers
109 views
Web Application for testing post requests
Is there a web application for testing post requests? What I imagine it'd be like is you would visit the site and then it would redirect you to a unique URL. You could then send a post request to the ...
0
votes
1answer
97 views
Why IE Developer Tools seems to be more descriptive than FireBug in this example?
When I call this line:
Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML")
For FireBug it returns:
>>> Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML")
...
0
votes
2answers
299 views
How to copy a CSS style from a website for re-use
I am frustrated. I have one website where my drop-down CSS menu works and another where it doesn't.
Their stylesheets differ wildly and, although I have tried to manually copy the menu styles from ...
0
votes
1answer
348 views
jquery html chrome developer tools timeline, jquery firing for every mousemove event?
http://cl.ly/0B0p1h04050I1H0I3J1u
jQuery is firing on every mousemove event for me.
How do I get it to stop doing that?
It seems like jQuery 1.2.6 do not have this behavior, but 1.4 and 1.5 does.
...
0
votes
0answers
501 views
Safari Developer toolbar
In iPad Safari, is there any way of downloading the Developer tool and insert the following meta tag to see the effect instantly;
<meta name=”viewport” content=”width=device-width″ />
I know ...