10
votes
5answers
319 views
Practical examples of using symbols in Scala?
Scala has symbols - names that start with a single quote ' and which are a kind of string constants.
I know symbols from Ruby (where they start with a colon). In Ruby they are use …
6
votes
1answer
459 views
Microsoft equivalent of the nm command
I've long used cygwin's nm command for all my .lib symbol debugging needs, but recently I thought about referring to it in a SO answer and realized that most Windows developers don …
5
votes
4answers
402 views
How do I change the locations of source files in a symbols file (pdb)
Basically what I want to do it this: a pdb file contains a location of source files (e.g. C:\dev\proj1\helloworld.cs). Is it possible to modify that pdb file so that it contains a …
4
votes
1answer
902 views
How can you change an age-mismatched PDB to match properly?
Our nightly build process was broken for a long time, such that it generated PDB files that were a few hours different in age than the corresponding image files. I have since fi …
4
votes
4answers
226 views
Aren’t modern computers powerful enough to handle Strings without needing to use Symbols (in Ruby)
Every text I've read about Ruby symbols talks about the efficiency of symbols over strings. But, this isn't the 1970s. My computer can handle a little bit of extra garbage collecti …
4
votes
9answers
668 views
What is the difference between equality and equivalence?
I've read a few instances in reading mathematics and computer science that use the equivalence symbol ≡, (basically an '=' with three lines) and it always makes sense to me to read …
4
votes
3answers
3k views
Latex Math Symbol: Vitanyi puts a tiny plus symbol over his equals. How do I do that?
For example, in http://homepages.cwi.nl/~paulv/papers/algorithmicstatistics.pdf at the bottom of page 5 and top of page 6, he uses a plus/equal symbol and a similar plus/lessthan s …
4
votes
5answers
835 views
Remove C++-STL/Boost debug symbols (… or do not create them)
Linux/Gcc/LD - Toolchain.
I would like to remove STL/Boost debug symbols from libraries and executable, for two reasons:
Linking gets very slow for big programs
Debugging jumps …
4
votes
4answers
624 views
How do I list the symbols in a .so file
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).
I'm using gcc 4.0.2, if …
3
votes
1answer
100 views
How do I use TeX/LaTeX formatting for custom data tips in MATLAB?
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 str …
3
votes
2answers
61 views
publishing your own Symbol site for WinDbg
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 …
3
votes
3answers
173 views
If Ascii operators are definable, why not Unicode Symbols?
I'm sure I join many in being glad there's finally a powerful language tied tightly to a mainstream GUI/Database/Communication framework.
I haven't been sure where to post this …
3
votes
1answer
170 views
Load a single symbol from a LaTeX package
When using the MnSymbol package, pdflatex gives two font warnings:
LaTeX Font Warning: Encoding 'OMS' has changed to 'U' for symbol font
(Font) 'symbols' in the math …
3
votes
2answers
180 views
Is Ruby’s length method a symbol? Why is :length sometimes the same as length?
I came across the following while reading about how easy it is to redefine methods in Ruby:
class Array
alias :old_length :length
def length
old_length / 2
end
end
puts …
3
votes
2answers
120 views
What does the number 16 in the DLL symbol _FooBar@16 represent?
I am new to Windows programming.
What does the number 16 in the DLL symbol _FooBar@16 represent?
