Tagged Questions
The symbols tag has no wiki summary.
32
votes
7answers
16k 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 that makes a ...
21
votes
6answers
3k 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 used for some ...
17
votes
2answers
296 views
Exposing Symbols to $ContextPath
There are a variety of Internal`context functions that are useful, such as InheritedBlock, Bag and StuffBag, etc., as well as many useful Developer` fuctions.
I wish to expose a selection of these ...
14
votes
1answer
369 views
Is there an equivalent to the GNU linker “--just-symbols” option for non-GNU linkers?
-R filename
--just-symbols=filename
Read symbol names and their addresses from filename, but do not relocate it or include it in the output. This allows your output file to refer ...
14
votes
6answers
1k views
What's the difference between a string and a symbol in Ruby?
What's the difference between a string and a symbol in Ruby and when should you use one over the other?
13
votes
2answers
733 views
Why is it not a good idea to dynamically create a lot of symbols in ruby?
What is the function of symbol in ruby? what's difference between string and symbol?
Why is it not a good idea to dynamically create a lot of symbols?
13
votes
7answers
374 views
What is the difference between a variable and a symbol in LISP?
In terms of scope? Actual implementation in memory? The syntax? For eg, if (let a 1) Is 'a' a variable or a symbol?
13
votes
3answers
23k views
In HTML I can make a checkmark with ✓ . Is there a corresponding X-mark?
Is there a coresponding X mark to ✓ (✓)? What is it?
12
votes
1answer
2k 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't have cygwin ...
11
votes
7answers
3k views
Displaying the Indian currency symbol on a website
This symbol for the rupee, the currency of India, was approved by the Union Cabinet on 15 July 2010.
How can I display it on a website?
10
votes
2answers
123 views
10
votes
3answers
209 views
Why does Ruby expose symbols?
Why does Ruby expose symbols for explicit use? Isn't that the sort of optimisation that's usually handled by the interpreter/compiler?
10
votes
2answers
4k 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 fixed the problem.
...
9
votes
2answers
131 views
Why doesn't this use of Begin[] work?
If we evaluate these lines one-by-one, x will be created in the context cc.
Begin["cc`"];
x = 1;
End[]
However, if we evaluate them together,
(Begin["cc`"];
x = 1;
End[])
then x will be created ...
9
votes
4answers
2k views
What is the purpose of the '@' symbol in CSS?
I just stumbled across this question and I noticed the user is using some notation I've never seen before:
@font-face {
/* CSS HERE */
}
So is this '@' symbol something new in CSS3, or something ...
9
votes
8answers
810 views
Understanding Symbols In Ruby
Despite reading this article, I'm still confused as to the representation of the data in memory when it comes to using symbols. If a symbol, two of them contained in different objects, exist in the ...
8
votes
6answers
645 views
What does <??> symbol mean in C#.NET? [closed]
Possible Duplicate:
What is the “??” operator for?
I saw a line of code which states -
return (str ?? string.Empty).Replace(txtFind.Text, txtReplace.Text);
I want to know ...
8
votes
4answers
1k 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 different location ...
7
votes
2answers
91 views
How the CLR locates pdb symbol files
I would like to know how the CLR locates pdb symbol files, and if this behavior can be overridden.
I looked online (MSDN and other resources) but could not find a good answer.
In my app, i have DLLs ...
7
votes
1answer
133 views
Capital letters for named patterns
In Mathematica built-in Symbols start with capital letters. Therefore it is accepted practice to not start user created symbol names with capital letters.
How far should this restriction be extended ...
7
votes
2answers
120 views
Why aren't the arguments to File.new symbols instead of strings?
I'm pretty new to Ruby, and I was wondering why the people who wrote the File library decided to make the arguments that determine what mode the file is opened in strings instead of symbols.
For ...
7
votes
3answers
645 views
Is there a Python equivalent to Ruby symbols?
Is there a Python equivalent to Ruby symbols?
If so then what is it?
If not then are we stuck with using strings as our keys in dictionaries only?
7
votes
4answers
848 views
In Clojure, how to define a variable named by a string?
Given a list of names for variables, I want to set those variables to an expression.
I tried this:
(doall (for [x ["a" "b" "c"]] (def (symbol x) 666)))
...but this yields the error
...
7
votes
5answers
655 views
What is the meaning of ∃? [closed]
Reading a book on algorithms. Can someone explain the meaning of the mathematical symbol ∃?
7
votes
4answers
12k views
WinDbg symbol resolution
When using WinDbg, where should the private symbol files (pdb?) be placed?
My situation is: I have a DLL which I want to debug. I have the source code and symbol files for this DLL. This DLL is ...
6
votes
1answer
113 views
Linking libraries with incompatible dependecies
I'm working on a C++ project that needs two third party libraries (libfoo.so and libbar.so). My operating system is Linux.
libfoo.so is dynamically linked to libpng14.so.14 (1.4.8) (EDIT 1)
...
6
votes
2answers
142 views
Why are uninterned symbols used for package names and exports in Common Lisp?
In a screen cast on Common List the author uses uninterned symbols for package names and exports.
(defpackage #:foo
(:use :cl)
(:export #:bar
#:baz))
(in-package #:foo)
He also uses ...
6
votes
3answers
174 views
huge executables because of debugging symbols, why?
We have been developing a large financial application at a bank. It started out being 150k lines of really bad code. By 1 month ago, it was down to a little more than half that, but the size of the ...
6
votes
2answers
320 views
Meaning of the various symbols in .aspx page of asp.net
I have come across different symbols in .aspx page of asp.net
<%#eval(expr) %>
<%#bind(expr) %>
<% %> - for specifying the c# code in aspx page
<%$ %> - for specifying the ...
6
votes
2answers
330 views
Best way to strip off symbols
Last week I released the Linux and windows version of an application.
And after the release we realized that the symbols were not stripped off, and my manager thinks (and I disagree) that it might ...
6
votes
5answers
694 views
In Ruby what does “=>” mean and how does it work?
While learning Ruby I've come across the "=>" operator on occasion. Usually I see it in the form of
:symbol => value
and it seems to be used frequently when passing values to functions. What ...
6
votes
3answers
230 views
Strange Lisp Quoting scenario - Graham's On Lisp, page 37
I'm working my way through Graham's book "On Lisp" and can't understand the following example at page 37:
If we define exclaim so that its return value
incorporates a quoted list,
(defun exclaim ...
6
votes
5answers
2k views
readelf-like tool for Mac OS X?
Is there a tool for reading Mac OS X binaries that would print information about relocation tables and symbol offsets similar to this readelf output?
readelf -r app
Relocation section '.rel.dyn' at ...
6
votes
3answers
205 views
What do the pdb files actually do?
OK, I realize that the PDB files are the symbol files for .NET assemblies. But I never really looked into their extended usage.
If I hook in with a remote debugger from a visual studio that has the ...
6
votes
4answers
534 views
Ruby on Rails- :symbols, @iVars and “strings” - oh my!
New to Rails and trying to get my head around when/why to use :symbols, @ivars , "strings" within the framework.
I think I understand the differences between them conceptually
only one :symbol ...
6
votes
2answers
109 views
How do you construct a symbol in clojure?
I want to construct a macro that, given a symbol 'foo, creates a method called foo*. How can I concatenate 'foo and '*?
6
votes
3answers
393 views
Why don't more projects use Ruby Symbols instead of Strings?
When I first started reading about and learning ruby, I read something about the power of ruby symbols over strings: symbols are stored in memory only once, while strings are stored in memory once per ...
6
votes
5answers
806 views
Unfamiliar symbol in algorithm - What does ∀ mean?
I'm reading about an algorithm (it's a path-finding algorithm based on A*), and it contains a mathematical symbol I'm unfamiliar with: ∀
Here is the context:
v(s) >= g(s) = min[s'∈pred(s)](v(s') ...
6
votes
2answers
598 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. Most of the ...
6
votes
5answers
2k views
Ruby symbol to class
Is there a way in Ruby to take a symbol or string and turn it into a class of the same name?
For instance, if I have a class such as
class Bob
def talk
puts "Hi, I'm bob"
end
end
And a ...
6
votes
2answers
3k views
Strip symbols for iPhone application
What are the settings in Xcode to strip symbols for an iphone application?
I use these settings in Xcode but still see classnames and their methods in
the executable using a binary file editor.
...
6
votes
8answers
4k 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 this as if it were ...
5
votes
2answers
624 views
Ruby Koan: Constants become symbols
In the about_symbols.rb Ruby Koan (https://github.com/edgecase/ruby_koans), I have the following code:
RubyConstant = "What is the sound of one hand clapping?"
def ...
5
votes
4answers
467 views
What does the SQL # symbol mean and how is it used?
Can someone please explain to me what the # symbol means in MS SQL Code.
I've tried Googling it, and even searching on StackOverflow, but can't seem to find the answer.
I feel like an idiot - having ...
5
votes
1answer
190 views
In Perl, how can I call a method whose name I have in a string?
I'm trying to write some abstract code for searching through a list of similar objects for the first one whose attributes match specific values. In order to do this, I need to call a bunch of accessor ...
5
votes
4answers
217 views
Does program need additional symbols from .so shared library except those declared in header file?
In C programming, I thought that a object file can be successfully linked with a .so file as long as the .so file offers all symbols which have been declared in the header file.
Suppose I have ...
5
votes
1answer
1k views
How to get an outline view in sublime texteditor?
How do I get an outline view in sublime code editor for Windos? http://www.sublimetext.com/
The minimap is helpful but I miss a traditional outline (a klickable list of all the functions in my code ...
5
votes
3answers
496 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, but here seems the ...
5
votes
3answers
2k views
How much information do pdb files contain? (C# / .NET)
Is is wise to redistribute the pdb files along with a commercial application?
Occasionally, I'm using the stack trace to get a more detailed error reporting logs from the deployed applications; can ...
5
votes
5answers
4k views
Using GDB without debugging symbols on x86?
How do I use GDB to debug a program which do not have debugging symbols on a 32-bit x86 processor? Inspecting the function arguments, local variables, resolving pointers would be useful to know how to ...