Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
9answers
1k views

Useful Visualizers for Visual Studio

I recently found out about the Linq To Sql Visualizer for Visual Studio. Are there any other useful visualizers out there?
8
votes
4answers
1k views

HTML5 Audio Visualizer?

Is there such a player? I'm looking into making one purely out of JavaScript. Something like http://www.nihilogic.dk/labs/pocket_full_of_html5/ but randomly all mashed together? What are your ...
8
votes
2answers
850 views

Why is the dictionary debug visualizer less useful in Visual Studio 2010 for Silverlight debugging?

I was debugging in Visual Studio 2010, which we just installed and trying to look at a dictionary in the quick watch window. I see Keys and Values, but drilling into those shows the Count and ...
6
votes
6answers
4k views

JSON viewer for browsing APIs

Does anyone have any recommendations for applications or browser plugins that make browsing and visualizing JSON APIs easy.
5
votes
3answers
3k views

LINQ to SQL visualizer for VS 2010?

I am trying to find a LINQ to SQL visualizer for Visual Studio 2010. Anybody know of one somewhere? When i was using vs 2008 i used this one. But with vs 2010 it does not work. I tried this one, ...
5
votes
2answers
2k views

Android 2.3 Visualizer - Trouble understanding getFft()

First time here so sorry in advance for any butchered formatting. So I am completely new to DSP so I have only a very general understanding of the Fourier Transform. I am trying to build a visualizer ...
5
votes
3answers
2k views

Show Visualizers Error “could not load this custom viewer”

When I try to inspect DataSet by standard DataSet visualizer I see this error "could not load this custom viewer". I wrote simple dataset visualizer, but error throws anyway too. On other computers ...
5
votes
2answers
186 views

Yacc Grammar Debuggers: Are there any? Are they any good/help?

I've been helping augment a twenty-some year old proprietary language within my company. It is a large, Turing-complete language. Translating it to another grammar regime (such as Antlr) is not an ...
4
votes
2answers
580 views

Why does my FFT gives a different visualizer output than Windows Media Player?

I am trying to implement an audio spectrum analyzer in android using the Visualizer class. I am getting FFT data in the onFftDataCapture() method of OnDataCaptureListener() event and I'm drawing that ...
4
votes
1answer
465 views

Why is the framerate of my tweaked OpenGL ES 2.0 template so slow on the iPad?

this is my first posting here. I've modified the OpenGL es 2.0 template in Xcode to render that little box to an offscreen texture (50*50), then reset the view port and render the texture to the ...
4
votes
4answers
963 views

Mole for VS 2010?

Does anyone know about Karl Shifflett's Mole for VS 2010?
4
votes
4answers
1k views

Normalize FFT magnitude to imitate WMP

So, I've been working on a little visualizer for sound files, just for fun. I basically wanted to imitate the "Scope" and "Ocean Mist" visualizers in Windows Media Player. Scope was easy enough, but ...
3
votes
1answer
170 views

Creating a C# VS2010 Visualizer that operates on all Object

I’m attempting to create a C# debugging visualizer that can perform a visualization on all objects. I can’t seem to get the assembly attribute (above the namespace) to bind this visualizer to ...
3
votes
1answer
501 views

Are there any iOS Particle System Libraries

Does anyone know of any (opensource would be nice) Particle / Emitter libraries for iOS? I know of cocos iphone but couldn't find any others. If all else fails I'll get my hands dirty and learn ...
3
votes
1answer
90 views

Iphone read audio from built in apps

I'm trying to implement audio analysis to my app (ie for a visualizer or something). Using the Audio Queue framework, can I read the output of itunes playing in the background of the device into a ...
3
votes
3answers
436 views

Visual Studio visualizer similar to Mole

Mole visualizer for WPF in Visual Studio is a great tool for debugging WPF apps. What I want to know is, is there a visualizer tool with Mole like functionality for general .Net debugging. I find the ...
2
votes
1answer
150 views

Visual Studio: Dataset and DataTable Visualizer not working in watch window

I have just installed visual studio 2005 service pack 1 on a Windows 7 64 bit machine. Everything appears to work fine and I am able to run my project without any errors. However, when I am in debug ...
2
votes
1answer
122 views

Enumerating and using wmp visualizers

I want to use the systems available windows media player visualizers in my app. Apperently visualizers expose an IWMPEffects interface to the world. My question is how do I enumerate and create ...
2
votes
2answers
238 views

.NET datarow visualizer?

Are there any datarow visualizers which work in VS 2008? I have tried a couple (DotNetDan & Captator) and they both give cast exceptions. It seems these were developed for VS 2005. I know I can ...
2
votes
4answers
731 views

Accessing the Body of a Function with Lua

I'm going back to the basics here but in Lua, you can define a table like so: myTable = {} myTable [1] = 12 Printing the table reference itself brings back a pointer to it. To access its elements ...
2
votes
4answers
804 views

Do i need to dispose of this Image instance?

I'm making a simple Image Debugger Visualizer. Code is below. I'm not sure if i need to manually dispose of the Image instance? Because i'm making a windows Form window and the PictureBox inside that ...
1
vote
2answers
123 views

Android visualizer while recording

hi guys i am searching for a solution for this. All i need is to show the bar visualizer while recording audio. So for i have not got any idea of how to go about it. Hoping for better responses. ...
1
vote
0answers
140 views

Android Visualizer getWaveForm() behaves weird at high volumes

I am using the Android Visualizer to obtain the waveform data of an audio stream and calculate the RMS of it. public int[] getFormattedData(byte[] rawVizData) { for (int i = 0; i < ...
1
vote
1answer
311 views

Android Visualizer FFT / waveform affected by device volume?

I'm working on some music analysis using the Visualizer class on Android 2.3.1. I am finding that the FFT and waveform magnitudes are affected by the volume of the device. This means that if the user ...
1
vote
1answer
799 views

Creating a simple VS2008 visualizer inside autoexp.dat (problem with casting)

I have a large project of mixed C/C++. I've created a simple visualizer for the ICU UnicodeString class as follows... [inside autoexp.dat] icu_4_2::UnicodeString { preview ...
1
vote
0answers
140 views

cross-platform iTunes visualizer?

I'd like to make a cross-platform iTunes visualizer (Mac + Windows). I've looked at: Quartz Composer, which only runs on Mac OS, and appears to consist of dragging boxes around. I'd like to be able ...
1
vote
1answer
764 views

Visualize a Jena ontology model in Java

I would like to visualize an Ontology model created through Jena in Java. Is there an API which can help me out in this task ? Or at least a tutorial on the matter? Thanks in advance.
1
vote
0answers
175 views

DataTable descendant with DebuggerDisplay attribute loses DebuggerVisualizer

I have a descendant of DataTable that has the DebuggerDisplay attribute defined. The default visualizer for DataTable is removed when I add the DebuggerDisplay attribute. If I remove the ...
1
vote
2answers
724 views

Debugger Visualizer for non-managed C++ code?

Does anyone know of a C++ IDE or debugger that's supports debugger visualizers for unmanaged C++ code? The problem is that Visual Studio's debugger visaulizer supports only managed C++. Thanks, ...
1
vote
1answer
589 views

How do I use the current sound out as an audio input in Quartz Composer?

If I want to build a spectrum visualizer of what's currently playing on my speakers (not the line in) what do I do?
1
vote
1answer
722 views

Debugger Visualizer not working? Have i incorrectly registered it?

I have created a debugger visualizer in VS2008. There are two classes i've made, in the same .dll :- BinaryDataDebuggerVisualizer ImageDebuggerVisualizer The image one works fine (eg. the ...
1
vote
7answers
3k views

DataTable visualizer disappeared from my Visual Studio

A while ago I noticed I don't have a magnifying-glass next to my datatables. I used to have it, and somehow, sometime, it disappeared... Has anyone seen this happen? Do you know how to help me view my ...
0
votes
0answers
16 views

Visualize music that will react to the beat of the song in andoid

In one of my android application I want to create visualization patterns that will react to the beat of the song. Please guide me, If there are some library to achieve this. Thanks
0
votes
1answer
114 views

Android Visualizer implementation crash

I am trying to implement the Android Visualizer class. I have looked up other trouble threads but I am still getting a fatal error. This all looks to me like it should work correctly, for whatever ...
0
votes
1answer
129 views

Android Visualizer (Audio Effects) runtime exception on Ice Cream Sandwich

In the sample AudioFxDemo.java, provided with the SDK, I get a java.lang.RuntimeException: Cannot initialize Visualizer engine, error: -4 when trying to create the android.media.audiofx.Visualizer ...
0
votes
0answers
202 views

How to implement VU Meter in android?

i am new to android developing and I have to implement an application that shows vu meter ,it reacts to the sound(when song is playing). Can anybody help me ..
0
votes
1answer
100 views

Visualization: best approach?

I need to visualize stuff and want to ask for some hints and tutorials. Or which technique to use (Cocos2D, OpenGL, Quartz, ...) Anyone here who did Visualization on iOS Devices? It's about moving ...
0
votes
1answer
143 views

Dimitre Novatchev's XPath visualizer help

I want to try what looks like a really cool tool. I've dl'd the FF version from http://www.huttar.net/dimitre/XPV/TopXML-XPV.html. I open XPathMain.htm in FireFox, Browse to the provided test1.xml ...
0
votes
1answer
43 views

Visual Studio tooltip visualized activation difficult to click

I'm having difficulty positioning the mouse cursor just right over an object name that can be visualized. Is there an alternate or easier way to invoke a visualized other than precise mousing?
0
votes
1answer
121 views

How to handle audio-card buffer

Im trying to do a screen-flashing application that flashes the screen depending on the audio(like an audio visualizer, but instead of a visualization like bars or something like that, just flash the ...
0
votes
0answers
231 views

Help with audio visualizer

Im new to this website, and mostly to any type of programming. Recently Im trying to learn C++(Game Programming), and my father wants me to make him a web-based application, that flashes the window ...
0
votes
2answers
998 views

Is there a Linq to Entities debug Visualizer working?

I found this but this is not working for me.I added a reference and also tried to also copy it to this directory -\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers Has anyone tried ...
0
votes
1answer
874 views

Vertex label in JUNG graph visualization

I wrote a little graph visualizer class: public void simpleGraph(SparseMultigraph<Vertex,SEdge> graph, String name) { Layout<Vertex, SEdge> layout = new ISOMLayout(graph); ...
0
votes
3answers
614 views

iTunes Visualization — What type of code is it written in and what does that code look like?

Being a web developer, I know how event driven user interfaces are written, but do not have insight into other families of code (embedded software like automotive software, automation software on ...
0
votes
2answers
72 views

How to persist custom objects between calls to a Visual Studio debugger visualizer?

I need to persist an object between calls to a debugger visualizer I'm writing, but it doesn't need to persist between IDE sessions. The EnvDTE.Globals object for the IDE seemed like an obvious place ...
0
votes
1answer
159 views

Why can I not see the VS 2005 dataset visualizer anymore?

I cannot see the magnifying glass next to my Dataset anymore. Is there a way to re-enable it?
0
votes
3answers
656 views

What does the VisualStudio Dataset visualizer exclaimation mark mean?

Some rows in the dataset visualizer have an exclamation mark for each column, other rows have the data as expected. I have been unable to track down a description for the exclamation mark or indeed ...