active questions tagged symbols - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:34:47Z http://stackoverflow.com/feeds/tag/symbols http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804622/restricting-symbols-to-local-scope-for-linux-executable 2 Restricting symbols to local scope for linux executable anirudh 2009-11-26T16:26:15Z 2009-11-27T15:36:51Z <p>Hi All,</p> <p>Can anyone please suggest some way we can restrict exporting of our symbols to global symbol table?</p> <p>Thanks in advance</p> <p><hr></p> <p>Hi,</p> <p>Thanks for replying...</p> <p>Actually I have an executable which is statically linked to a third party library say "ver1.a" and also uses a third party ".so" file which is again linked with same library but different version say "ver2.a". Problem is implementation of both these versions is different. At the beginning, when executable is loaded, symbols from "ver1.a" will get exported to global symbol table. Now whenever ".so" is loaded it will try to refer to symbols from ver2.a, it will end up referring to symbols from "ver1.a" which were previously loaded.Thus crashing our binary.</p> <p>we thought of a solution that we wont be exporting the symbols for executable to Global symbol table, thus when ".so" gets loaded and will try to use symbols from ver2.a it wont find it in global symbol table and it will use its own symbols i.e symbols from ver2.a</p> <p>I cant find any way by which i can restrict exporting of symbols to global symbol table. I tried with --version-script and retain-symbol-file, but it didn't work. For -fvisibility=hidden option, its giving an error that " -f option may only be used with -shared". So I guess, this too like "--version-script" works only for shared libraries not for executable binaries.</p> <p>code is in c++, OS-Linux, gcc version-3.2. It may not be possible to recompile any of the third party libraries and ".so"s. So option of recompiling "so' file with bsymbolic flag is ruled out.</p> <p>Any help would be appreciated.</p> http://stackoverflow.com/questions/1799197/preventing-symbol-loading-in-visual-studio 0 Preventing symbol loading in Visual Studio Josh Santangelo 2009-11-25T18:57:36Z 2009-11-25T18:59:48Z <p>Many questions have been asked about this, and many answers have been proposed, but nothing's worked for me.</p> <p>At one point, I turned on .NET symbol loading for WPF projects, using these instructions: <a href="http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx" rel="nofollow">http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx</a></p> <p>Worked great, all cool and that.</p> <p>Except in Silverlight projects, it would also try to load symbols from that server, but they didn't exist, so startup time to debug a project was huge.</p> <p>So, I turned off symbol loading, and it did stop trying to load all the symbols, except for one namespace: System.Windows.Browser. VS still tries to load those with each F5, taking several seconds and driving me crazy.</p> <p>I tried to add the symbol server mentioned here as well: <a href="http://blogs.msdn.com/seema/archive/2008/10/08/xperf-a-cpu-sampler-for-silverlight.aspx" rel="nofollow">http://blogs.msdn.com/seema/archive/2008/10/08/xperf-a-cpu-sampler-for-silverlight.aspx</a></p> <p>Thinking that maybe the symbols were there, they'd get loaded and cached, and all would be well. But no, not only do they not get loaded, but VS tries to load symbols for every other DLL in my project, including those for which symbols have never been available, making it take even longer to start up.</p> <p>Frankly, I don't even need to debug into the sources of these DLLs, I just thought it would be cool. Now I can't turn it off and it's driving me batty. What's the fix?</p> http://stackoverflow.com/questions/1764798/loading-swc-assets-into-array-in-pure-actionscript-3-project 2 Loading .swc assets into array, in pure Actionscript 3 project Christian_R 2009-11-19T16:53:08Z 2009-11-21T11:48:43Z <p>Hello,</p> <p>I know how to get Flash CS4 symbols into Flash Builder via .swc. The class names become available in the main class, but I can only instantiate those one by one, writing each name into the code.</p> <p>How can I loop through the .swc and load its assets in an array without mentioning their name, then obtain and use these names for instantiation? ideally, something like (half-assed pseudocode):</p> <pre><code>the_instances: = new Array for(i=0; i&lt;the_SWC.length; i++) { tmp = new eval( the_SWC[i].name + '\(\)' ) the_instances.push( tmp ) } </code></pre> <p>or anything else to get those names in a loop.</p> http://stackoverflow.com/questions/1759934/as3-getting-symbols-from-an-assets-library-without-flex 0 AS3 - getting symbols from an assets library WITHOUT Flex phil 2009-11-18T23:45:04Z 2009-11-20T00:50:44Z <p>Been searching around for a long time, and the only examples I can find for doing this are something like this:</p> <pre><code>[Embed(source="Assets.swf", symbol="dog")] private static var _Dog:Class; public static function get Dog():MovieClip { return new _Dog(); } </code></pre> <p>But this seems to be flex-only (I get the error "unable to resolve 'Assets.swf' for transcoding") How do you do this in plain AS3?</p> http://stackoverflow.com/questions/1748741/shark-was-unable-to-find-symbol-information-for-this-address-range-iphone 0 Shark was unable to find symbol information for this address range - iPhone Elliot 2009-11-17T13:05:11Z 2009-11-17T13:10:00Z <p>I'm trying to use Shark to determine which method(s) are taking the most time in my iPhone app. After sampling, I get this: <img src="http://img69.imageshack.us/img69/7871/screenshot20091117at503.png" alt="alt text" title="no symbols"></p> <p>Clicking the "!" button yields:</p> <blockquote> <p>Shark was unable to find symbol information for this address range. Typically this happens because the application was compiled without symbols or they have been subsequently stripped away. In Xcode, make sure the "Generate Debug Symbols" checkbox is selected (passes the -g flag to the compiler). Note that this does not affect code optimization, and does not typically alter performance significantly. However, the extra symbol information does consume significantly more space and may bloat the size of the executable.</p> </blockquote> <p>But I AM using the Debug option, and I am running on my Device. And Generate Debug Symbols IS checked. So what's wrong?</p> http://stackoverflow.com/questions/1703636/how-to-store-euro-symbol-in-mysql-database 1 How to store Euro Symbol in mysql database ? Rachel 2009-11-09T20:39:33Z 2009-11-09T21:10:11Z <p>How to store symbol for Euro currency in MySQL Database ?</p> http://stackoverflow.com/questions/1694072/how-come-we-pass-the-linking-stage-and-still-miss-symbols 1 How come we pass the linking stage and still miss symbols ? ? unknown (google) 2009-11-07T19:05:20Z 2009-11-07T20:03:16Z <p>Hi All</p> <p>And thanks in advance.</p> <p>operating system: AIX 5.3. compiler: xlC_r</p> <p>build system is: "Unix Makefiles"</p> <p>our application uses several static (<em>.a) libs and several shared (</em>.so) libs. the build process pass successfully (we do get some duplicate symbol warnings). but when we try to execute we are getting symbol missing errors.</p> <p>Note: we are not using dl to load shared libs at runtime.</p> <p>Are we missing something ?</p> <p>How come we pass the linking stage and still miss symbols ?</p> http://stackoverflow.com/questions/1676040/windbg-doesnt-load-symbol-file-that-is-created-using-the-same-source-but-built-a 1 WinDbg doesn't load symbol file that is created using the same source but built at a differnt time than the original portakalla 2009-11-04T19:27:00Z 2009-11-04T19:57:54Z <p>Hi,</p> <p>We released a product (C#.NET library) and didn't store the pdb file of the library, assuming that we can always generate symbol files using the same source code.</p> <p>Now, we want to analyze crash dump (mini dump) file of an application that is using our library. Since we didn't store the pdb file, I created a new one using the same source code (using the same tag in SVN). Then I tried WinDbg and provided the pdb file, but the debugger didn't like it.</p> <p>Since the source code is the same, I think the only difference is the date the build was done (We are using the same machine for releases). Can this really cause the debugger to not load the symbol file? How does WinDbg identify a symbol file?</p> <p>If I am sure that the symbol file is identical to the original one (except the date), is there a way to force WinDbg to load the symbol file?</p> <p>Thanks.</p> <p>Note: If I make a new release and artificially create a dump file, symbols are loaded properly.</p> http://stackoverflow.com/questions/1668071/how-do-i-use-tex-latex-formatting-for-custom-data-tips-in-matlab 3 How do I use TeX/LaTeX formatting for custom data tips in MATLAB? Doresoom 2009-11-03T15:32:54Z 2009-11-04T01:33:28Z <p>I'm trying to annotate a polar plot with data tips labelled with 'R:...,Theta:...' where theta is actually the Greek symbol, rather than the word spelled out. I'm familiar with string formatting using '\theta' resulting in the symbol, but it doesn't work in this case. Is there a way to apply the LaTeX interpreter to data tips? Here's what I have so far:</p> <pre><code>f1=figure; t=pi/4; r=1; polar(t,r,'.'); dcm_obj = datacursormode(f1); set(dcm_obj,'UpdateFcn',@polarlabel) info_struct = getCursorInfo(dcm_obj); datacursormode on </code></pre> <p>where polarlabel is defined as follows:</p> <pre><code>function txt = polarlabel(empt,event_obj) pos = get(event_obj,'Position'); x=pos(1); y=pos(2); [th,r]=cart2pol(x,y); txt = {['R: ',num2str(r)],... ['\Theta: ',num2str(th*180/pi)]}; </code></pre> http://stackoverflow.com/questions/1657528/does-anyone-knows-of-any-site-that-have-a-searchable-index-of-unicode-symbols 1 does anyone knows of any site that have a searchable index of unicode symbols Karim 2009-11-01T16:09:26Z 2009-11-01T16:21:00Z <p>Is there a site that would allow you to search for "arrow", for example, and provide all the Unicode symbols that match the keyword "arrow"?</p> <p>This would be very handy :)</p> <p>Ideally, it would also show the Unicode symbol rendered as an image for users without the requisite fonts who would otherwise see these chars as squares.</p> http://stackoverflow.com/questions/34732/how-do-i-list-the-symbols-in-a-so-file 4 How do I list the symbols in a .so file Moe 2008-08-29T16:57:47Z 2009-10-25T10:39:36Z <p>How do list the symbols being exported from a .so file. If possible, I'd also like to know their source (e.g. if they are pulled in from a static library).</p> <p>I'm using gcc 4.0.2, if that makes a difference</p> http://stackoverflow.com/questions/1619832/strange-squre-numerical-symbols-show-as-characters-in-firefox 0 Strange squre-numerical symbols show as characters in firefox [closed] Lea 2009-10-25T02:45:17Z 2009-10-25T02:54:59Z <p>Hi all,</p> <p>I have been seeing these strange symbols for a while now, and am curious as to what they are, and why they appear. Sometimes, they appear so frequently in one page, the writing is indecipherable. The symbols appear as they do below in FF, but they appear as little squares in IE. So 2 questions I guess... 1. What are they? 2. How do I get rid of them?</p> <p>Cheers all, Lea.</p> <p>Screenshot: <img src="http://img163.imageshack.us/img163/2756/squaresymbols.png" alt="alt text" /></p> http://stackoverflow.com/questions/1613068/symbols-or-case-classes-for-sending-messages-to-scala-actors 2 Symbols or Case Classes for sending messages to Scala Actors? Joe 2009-10-23T12:19:44Z 2009-10-23T13:41:27Z <p>In the Scala actor examples I have seen where a parameterless message is sent to an actor (such as <a href="http://www.scala-lang.org/node/242" rel="nofollow">this</a>), <code>case class</code>es (or <code>case object</code>s) have been created and then used as messages. Symbols work just as well and look a bit neater and, after reading a book on Erlang, seem more natural. I assume that symbol equality would work for remote actors.</p> <p>For messages with parameters case classes would be the obvious choice, so perhaps consistency between message types is one issue? </p> <p>Are there any reasons to go for either approach?</p> http://stackoverflow.com/questions/314336/how-to-generate-the-symbols-file-of-a-powerbuilder-program-for-dump-analysis 0 How to generate the Symbols file of a PowerBuilder program for dump analysis? Daniel Silveira 2008-11-24T14:46:48Z 2009-10-22T16:06:09Z <p>How to generate the Symbols file of a PowerBuilder program for dump analysis?</p> http://stackoverflow.com/questions/1589774/windbg-detecting-symbols-needed-for-a-crash-dump 1 Windbg - Detecting symbols needed for a crash dump despart 2009-10-19T16:39:00Z 2009-10-19T16:51:01Z <p>Hello, I have a crash dump file that I need to analyze using windbg to run some tests. </p> <p>Due to some restrictions I can't comment, my symbols folder can only contain the symbols needed to analyze this crash dump. </p> <p>Is there a way to know the exact symbols needed by a dump? If it helps, I can first analyze this dump in another environment where all the symbols are available.</p> <p>Thank you.</p> http://stackoverflow.com/questions/311936/what-is-the-difference-between-equality-and-equivalence 4 What is the difference between equality and equivalence? DrFredEdison 2008-11-23T00:09:33Z 2009-10-18T02:03:33Z <p>I've read a few instances in reading mathematics and computer science that use the equivalence symbol <strong><code>≡</code></strong>, (basically an '=' with three lines) and it always makes sense to me to read this as if it were equality. What is the difference between these two concepts?</p> http://stackoverflow.com/questions/1579330/why-does-compiling-a-shared-object-with-gcc-always-result-in-undefined-references 1 Why does compiling a shared object with GCC always result in undefined references to main? Joseph Garvin 2009-10-16T17:23:39Z 2009-10-17T04:36:43Z <p>I'm running Solaris, so it's possible that this is specific to running GCC on Solaris. If I use GCC to generate a shared object, and then run nm on it to see undefined symbols, there will always be a reference to main:</p> <pre><code>[624] | 0| 0|NOTY |GLOB |0 |UNDEF |main </code></pre> <p>If I manually generate the same shared object using ld, the reference to main doesn't exist. If I run nm on the system libraries in /usr/lib, none of them appear to have references to main. Only shared libraries I compile myself with GCC.</p> <p>Apps compiled against these shared libraries work fine and without errors. But I still don't understand why the reference to main is there in the first place. Any clues?</p> http://stackoverflow.com/questions/265449/windbg-with-minidump-from-native-32-bit-app-crashing-on-64-bit-windows-wont-lo 0 WinDbg, with minidump from native 32-bit app crashing on 64-bit Windows, won't load symbols for system DLLs Roger Lipscombe 2008-11-05T15:18:56Z 2009-10-12T06:27:37Z <p>I've got a minidump file from a crash in one of our apps. It's a 32-bit native app, and it was running on 64-bit Windows.</p> <p>If I load the minidump file into WinDbg, WinDbg won't load the symbols for the system DLLs. I've got my symbol paths configured correctly:</p> <pre><code>_NT_SYMBOL_PATH=SRV*C:\WebSymbols*http://msdl.microsoft.com/download/symbols </code></pre> <p>...because WinDbg correctly loads symbols for minidumps created on 32-bit Windows. It just won't load symbols for DLLs in the SysWOW64 directory.</p> <p>I've tried 32-bit WinDbg (from Debugging Tools 6.9) on 32-bit Windows 2003, and 64-bit WinDbg (also from Debugging Tools 6.9) on 64-bit Windows 2008. Both fail to load the symbols. This is from the 32-bit WinDbg:</p> <pre>0:014> !sym noisy noisy mode - symbol prompts on 0:014> .reload .................................................................................... Loading unloaded module list .. SYMSRV: C:\WebSymbols\ntdll.dll\48E714D0170000\ntdll.dll not found SYMSRV: http://msdl.microsoft.com/download/symbols/ntdll.dll/48E714D0170000/ntdll.dll not found DBGENG: C:\Windows\SysWOW64\ntdll.dll - Couldn't map image from disk. Unable to load image C:\Windows\SysWOW64\ntdll.dll, Win32 error 0n2 DBGENG: ntdll.dll - Partial symbol image load missing image info DBGHELP: Module is not fully loaded into memory. DBGHELP: Searching for symbols using debugger-provided data. SYMSRV: C:\WebSymbols\wntdll.pdb\6686D0C5D0554E14953396093DA218A92\wntdll.pdb not found SYMSRV: http://msdl.microsoft.com/download/symbols/wntdll.pdb/6686D0C5D0554E14953396093DA218A92/wntdll.pdb not found DBGHELP: wntdll.pdb - file not found *** WARNING: Unable to verify timestamp for ntdll.dll *** ERROR: Module load completed but symbols could not be loaded for ntdll.dll DBGHELP: ntdll - no symbols loaded SYMSRV: C:\WebSymbols\kernel32.dll\48E7156Cf0000\kernel32.dll not found SYMSRV: http://msdl.microsoft.com/download/symbols/kernel32.dll/48E7156Cf0000/kernel32.dll not found DBGENG: C:\Windows\SysWOW64\kernel32.dll - Couldn't map image from disk. Unable to load image C:\Windows\SysWOW64\kernel32.dll, Win32 error 0n2 DBGENG: kernel32.dll - Partial symbol image load missing image info DBGHELP: Module is not fully loaded into memory. DBGHELP: Searching for symbols using debugger-provided data. SYMSRV: C:\WebSymbols\wkernel32.pdb\B0C3B36CC7EF4F3E9C168E186A5A6FEB2\wkernel32.pdb not found SYMSRV: http://msdl.microsoft.com/download/symbols/wkernel32.pdb/B0C3B36CC7EF4F3E9C168E186A5A6FEB2/wkernel32.pdb not found DBGHELP: wkernel32.pdb - file not found *** WARNING: Unable to verify timestamp for kernel32.dll *** ERROR: Module load completed but symbols could not be loaded for kernel32.dll DBGHELP: kernel32 - no symbols loaded SYMSRV: C:\WebSymbols\KERNELBASE.dll\48E7156D5a000\KERNELBASE.dll not found SYMSRV: http://msdl.microsoft.com/download/symbols/KERNELBASE.dll/48E7156D5a000/KERNELBASE.dll not found DBGENG: C:\Windows\SysWOW64\KERNELBASE.dll - Couldn't map image from disk. DBGENG: KERNELBASE.dll - Partial symbol image load missing image info DBGHELP: Module is not fully loaded into memory. DBGHELP: Searching for symbols using debugger-provided data. SYMSRV: C:\WebSymbols\wkernelbase.pdb\A8683F0C515F469B833E3FA562E0DB251\wkernelbase.pdb not found SYMSRV: http://msdl.microsoft.com/download/symbols/wkernelbase.pdb/A8683F0C515F469B833E3FA562E0DB251/wkernelbase.pdb not found DBGHELP: wkernelbase.pdb - file not found *** WARNING: Unable to verify timestamp for KERNELBASE.dll *** ERROR: Module load completed but symbols could not be loaded for KERNELBASE.dll DBGHELP: KERNELBASE - no symbols loaded</pre> <p>Any ideas? Are the symbols just not available on Microsoft's symbol server?</p> http://stackoverflow.com/questions/1548754/what-are-symbol-fonts-for 1 What are symbol fonts for? [closed] e-satis 2009-10-10T18:48:24Z 2009-10-10T18:53:06Z <p>Create a font is a lot of work, and using the right one a crucial part of application design. But I never understood why there are so many symbol fonts outthere, and more new coming everyday. </p> <p>What are they for?</p> <p>We have pictures in gif, svg and png for graphism, and you won't use symbols to write. But they must be usefull overwise nobody would create new anymore.</p> <p>Please, enlight me.</p> http://stackoverflow.com/questions/1371494/net-symbols-disappearing-from-assembly 0 .NET symbols disappearing from assembly Brian Stewart 2009-09-03T04:55:42Z 2009-10-08T03:05:43Z <p>I have a project that is built with native C++, as well as C++/CLI. I have the following components:</p> <pre> Assembly A (C++/CLI) | uses Assembly B (C++/CLI) | uses Static Lib C (Native C++) </pre> <p>I did a major re-write of Static Lib C, and it compiles, and other native projects that use it compile fine as well. None of Assembly B changed in the re-write - and as expected, when I compile Assembly B it compiles fine with no errors or warnings. However, when I try to compile Assembly A, none of the symbols that are supposed to be available in Assembly B can be found, causing hundreds of errors. I tried adding and removing B and C as references in the A project with no luck. I tried doing a clean, and rebuilding everything from scratch - but still no luck. I loaded Assembly B up in RedGate's Reflector, and I can not see the symbols, so at least that's consistent. I'm working on a branch, so I loaded an earlier version of Assembly B from the trunk, (and it asked to unload the previous version I had loaded from my branch), and I could see all the symbols in it. So when I look at my current version of Assembly B in Reflector, I see:</p> <pre> +TFModelSetNETD, Version=1.0.3532.42171, Culture=neutral, PublicKeyToken=null +TFModelSetNETD.dll + References + {} - + &lt;CppImplementationDetails&gt; + &lt;CrtImplementationDetails&gt; + vc_attributes </pre> <p>And that is all. In the older version, I see these four entries, plus all my namespaces declared in Assembly B, Static Lib C, other libs, plus several boost and std namespaces. I should mention this is in Visual Studio 2008.</p> <p>Any ideas as to what is going on here? I just can't understand what I could have done to make the compiler not export any symbols, without giving me any kind of warning.</p> <p>Ideas, tips, or debugging suggestions are all greatly appreciated.</p> <p>Edit: I have loaded the Static Lib C into LibDump, and all the symbols are there - however, none of the symbols either defined in Assembly B, or referenced from Static Lib C are visible in Assembly B when examining it with Redgate Reflector.</p> http://stackoverflow.com/questions/1498461/how-can-i-get-the-correct-symbols-for-microsofts-dlls-assemblies-if-i-dont-have 0 How can I get the correct symbols for microsoft's dlls\assemblies if I don't have an internet connection? Moshe Levi 2009-09-30T14:27:09Z 2009-10-07T08:43:34Z <p>I can't connect the computer to the internet because of security reasons. therefore, I can't use the symbol server. I've installed the symbols pack for windows xp sp2 but some of the PDB's do not match the dlls installed on my machine (I guess it's because of some specific updates that were installed on my machine).</p> <p>as it seems, the only package that microsoft has published is the complete xp sp2 symbols package. I cannot download specific symbols from the server.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1525648/how-can-i-convert-private-pdb-to-public-pdb 0 How can I convert private pdb to public pdb? msh 2009-10-06T13:37:27Z 2009-10-07T08:17:17Z <p>Hello all,</p> <p>I have private pdb file and I have to convert it to a public one. Is there tool for it?</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1406766/windbg-missing-symbols-for-managed-code 0 windbg missing symbols for managed code turnhose 2009-09-10T17:55:42Z 2009-09-11T05:30:01Z <p>I am having a problem getting windbg to use the pdb files for my .Net dlls. the hang dump I am looking at is from a production build. but I have pdbs from a debug build of the same code.</p> <p>I set the symbol path to include a local folder and the msft symbol server.</p> <pre><code>C:\websymbols\foo;srv*c:\websymbols*http://msdl.microsoft.com/download/symbols </code></pre> <p>I put all my pdb files in c:\websymbols\foo yet the managed stack listings contain no method names.</p> <p>doing a reload tells me</p> <p>.reload /f</p> <pre><code> DBGHELP: No debug info for FOO.dll. Searching for dbg file SYMSRV: c:\websymbols\foo\FOO.dbg\49B7F17C10000\FOO.dbg not found SYMSRV: c:\websymbols\FOO.dbg\49B7F17C10000\FOO.dbg not found SYMSRV: http://msdl.microsoft.com/download/symbols/FOO.dbg/49B7F17C10000/FOO.dbg not found DBGHELP: .\FOO.dbg - file not found DBGHELP: .\dll\FOO.dbg - path not found DBGHELP: .\symbols\dll\FOO.dbg - path not found DBGHELP: FOO.dll missing debug info. Searching for pdb anyway DBGHELP: Can't use symbol server for FOO.pdb - no header information available DBGHELP: FOO.pdb - file not found *** WARNING: Unable to verify checksum for FOO.dll *** ERROR: Module load completed but symbols could not be loaded for FOO.dll DBGHELP: FOO - no symbols loaded </code></pre> <p>when attaching windbg to the service in a test environment, managed stacks show up fine with method names. dumping the memory, and analyzing the dmp file locally I don't see the names in the managed stacks. What might I be doing wrong?</p> <p>Thanks</p> http://stackoverflow.com/questions/1407697/symaddsourcestream-questions 0 SymAddSourceStream questions Kirill Kovalenko 2009-09-10T21:01:47Z 2009-09-10T21:01:47Z <p>Did I get it right that SymAddSourceStream function is an equivalent of pdbstr.exe command line tool that comes with MS Source Server?</p> <p>I wrote a test that does SymInitialize/SymLoadModule64/ SymAddSourceStream/SymUnloadModule64/SymCleanup calls sequence and it works without errors, however the target pdb file remains unchanged.</p> <p>Does anybody have an example of proper SymAddSourceStream usage?</p> http://stackoverflow.com/questions/1402679/good-wysiwyg-math-expression-builder-or-wysiwyg-plug-in 1 Good WYSIWYG Math Expression Builder or WYSIWYG Plug in? Tyler 2009-09-09T23:31:29Z 2009-09-10T06:59:54Z <p>Anyone know of a good Math Expression builder for an online WYSIWIG. Ideally the user would be able to <strong>easily create common math symbols/notations like summation, integrals, radicals, etc...</strong> online, ideally in an existing editor.</p> <p>I also need to be able host it (and ideally integrate it) in a .NET stack (IIS/Windows).</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1075866/working-with-foreign-symbols-in-python 0 Working with foreign symbols in python KeyboardInterrupt 2009-07-02T18:10:35Z 2009-09-08T23:06:49Z <p>I'm parsing a JSON feed in Python and it contains this character, causing it not to validate. </p> <p>Is there a way to handle these symbols? Can they be converted or is they're a tidy way to remove them? </p> <p>I don't even know what this symbol is called or what causes them, otherwise I would research it myself.</p> <p>EDIT: Stackover Flow is stripping the character so here: <a href="http://files.getdropbox.com/u/194177/symbol.jpg" rel="nofollow">http://files.getdropbox.com/u/194177/symbol.jpg</a></p> <p>It's that [?] symbol in "Classic 80s"</p> http://stackoverflow.com/questions/1396484/symbols-in-microsoft-debugging-tools-for-windows 0 Symbols, in Microsoft Debugging Tools for Windows? madcolor 2009-09-08T21:42:17Z 2009-09-08T22:01:10Z <p>Can anyone explain the need/use of 'symbols' in the Microsoft debugger?</p> <p>I spent some time trying to figure out the debugger a while back and never was able to get it making any sense ( I was trying to debug a server hang).. Part of my problem was not having the proper 'symbols'.</p> <p>So what are they.. and why would I need them.. Aren't I just looking for text.</p> <p>Also, is there anyone out there who has a good grasp of the tool (Debugging Tools for Windows)? Any better links out there to using it as well would be awesome.. </p> <p><a href="http://www.networkworld.com/news/2005/041105-windows-crash.html?page=2" rel="nofollow">http://www.networkworld.com/news/2005/041105-windows-crash.html?page=2</a></p> http://stackoverflow.com/questions/1360835/free-map-icon-symbology 0 free map icon/symbology Dels 2009-09-01T06:28:51Z 2009-09-02T09:09:36Z <p>Hi,</p> <p>I want to create a navigation application but can't found any icons/symbols that suitable for my needs, i just hope i can find some icons with consistent style like what we currently see in google maps or garmin.</p> <p>Thanks</p> http://stackoverflow.com/questions/1355516/publishing-your-own-symbol-site-for-windbg 3 publishing your own Symbol site for WinDbg G33kKahuna 2009-08-31T02:08:51Z 2009-08-31T02:29:28Z <p>This is an interesting challenge and I am not sure if anyone out there has undertaken it. I work for a software vendor, selling a large enteprise scale Microsoft.NET based software. Most of the production issues are triaged using DebugDiag or ADPlus dmp files. Our customers often ask us if we could publish our symbols public like Microsoft's <a href="http://msdl.microsoft.com/download/symbols" rel="nofollow">http://msdl.microsoft.com/download/symbols</a> site. Any guidance here is much appreciated.</p> <p>thanks</p> http://stackoverflow.com/questions/1324466/practical-examples-of-using-symbols-in-scala 10 Practical examples of using symbols in Scala? Jesper 2009-08-24T20:08:18Z 2009-08-25T22:59:10Z <p>Scala has symbols - names that start with a single quote ' and which are a kind of string constants.</p> <p>I know symbols from Ruby (where they start with a colon). In Ruby they are used for some meta-programming tasks, like generating getters and setters for member variables (for example <code>attr_reader :name</code> to generate a getter for <code>name</code>).</p> <p>I haven't seen a lot of use of symbols in Scala code yet. What are practical uses for symbols in Scala?</p>