Tagged Questions

A synonym for [tag:symbols].

learn more… | top users | synonyms

12
votes
3answers
286 views

Why use symbols as hash keys in Ruby? [closed]

Possible Duplicate: What are symbols and how do we use them? A lot of times people use symbols as keys in a Ruby hash. What's the advantage over using a string? E.g.: hash[:name] vs. ...
9
votes
4answers
2k views

“Don't know how to create ISeq from: Symbol” error in Clojure

I have the following Clojure code and I'm not sure why it's not working: (defn match (x y &optional binds) (cond ((eql x y) (values binds t)) ((assoc x binds) (match (binding x binds) y ...
8
votes
1answer
409 views

Controlling symbol generation in Clojure macros

I'm trying (as a self-learning exercise) to create a Clojure macro that will generate code to apply a function to a sequence of integers and sum the result, e.g. f(0) + f(1) + f(2) + f(3) This is ...
7
votes
5answers
948 views

Export a global symbol from a Delphi DLL

I'm trying to create a Gecko 2.0-compatible DLL in Delphi. Previously (pre-Gecko 2.0) the DLL needed to export a NSGetModule() function. This worked flawlessly. Starting with Firefox 4, my DLL is ...
6
votes
2answers
104 views

Clojure: resolve declares symbol

I get some weird behaviour when checking if a symbol can be resolved. user=> ok CompilerException java.lang.RuntimeException: Unable to resolve symbol: ok in this context, ...
6
votes
2answers
469 views

How to deal with symbol collisions between statically linked libraries?

One of the most important rules and best practices when writing a library, is putting all symbols of the library into a libarary specific namespace. C++ makes this easy, due to the namespace keyword. ...
6
votes
4answers
397 views

What is the colon operator in Ruby?

When I say array ={:bla => 1, :bloop => 2}, what exactly does the : do? I read somewhere about how its similar to a string, but somehow a symbol...errr...something rather. I'm not super clear on ...
6
votes
1answer
64 views

How can I print definition of a symbol without evaluation in Scheme?

If I want to print function definition for a symbol, what should I do?
6
votes
2answers
273 views

VIM: How to change the Showbreak Highlight color without using the NonText Color-element

I noted that the 'showbreak' symbol is highlighted with the highlight "NonText" color-element. NonText is also used for the EOL Characters. I would like to keep the highlight-color for the EOL ...
6
votes
3answers
202 views

How could I redefine a subroutine and keep the old one too?

Here's what I'd like to achieve: sub first { print "this is original first"; } *original_first = \&first; sub first { print "this is first redefined"; } original_first(); # i expect ...
5
votes
2answers
158 views

Ruby 1.8.7: Symbol not found Error

Just did a fresh install of ruby 1.8.7 REE and MRI on a machine with fresh gem sets (Using RVM) Yet in each of them when I try to use memprof i get this error $ gem install memprof $ irb >> ...
5
votes
3answers
125 views

What are these characters: ⎲⎳?

I used Lyx (a Latex distribution) to convert my content to an HTML page. I noticed that the sigma symbol represented in firefox is composed of these 2 characters: ⎲ ⎳ The first character is for the ...
5
votes
2answers
150 views

R ggplot2 - error bars show through open symbol

I have a plot with pairs of points that are slightly offset. Each pair of points has associated error bars. I have specified that the symbol of the first point in the pair is different from that of ...
5
votes
3answers
392 views

How to set values to symbols

I would like to set values to a list of variables, like so: list[[1]] = 2 and if list[[1]] is a, then a will now be equal to two. How can I achieve this?
5
votes
2answers
267 views

Issue with C++ template arguments with hidden visibility

I'm compiling the following code under gcc with -fvisibility=hidden: template<class T> struct /*__attribute__ ((visibility("default")))*/ A {}; template<class T> struct B { B() ...
5
votes
4answers
375 views

Emacs ruby symbol word completion

Quite often I define a ruby symbol (eg. :some_value), then I want to create a method with the same name def some_value. Unfortunately, the autocompletion(M + /) for the second occurrence of ...
5
votes
1answer
392 views

how do you assert an exception from another ruby module is thrown? (using assert_throws)

I'm trying to write code like this: assert_throws(:ExtractionFailed) { unit.extract_from('5 x 2005')} ExtractionFailed is a trivial subclass of Exception, and under test/unit, I'm trying to assert ...
4
votes
1answer
92 views

Why does sun C++ compiler change symbol names when compiling with debug infos?

I have this source file: // ConstPointer.cpp const short * const const_short_p_const = 0; const short * const_short_p = 0; and compiled it with and without debug infos (SUN C++ Compiler 5.10): # ...
4
votes
3answers
312 views

Rails load YAML to hash and reference by symbol

I am loading a YAML file in Rails 3.0.9 like this: APP_CONFIG = YAML.load(File.read(File.expand_path('../app.yml', __FILE__))) It loads the all of the contents like hierarchical hashes, no problem. ...
4
votes
1answer
444 views

How to merge two columns in R with a specific symbol?

I have a table read in R. As follows: column1 column2 A B What is the command line need to be use to match two columns together as follows? Column 3 A_B
4
votes
1answer
81 views

Starting a debugging session in Silverlight takes a very long time

In my SL4 LOB app, I’ve probably hit F5 1000x or more with no problems. Suddenly, now hitting F5 can take up to 90 seconds before the app’s Startup event is raised. I’ve tried clearing the IE ...
4
votes
4answers
298 views

What is the difference between an atom and a symbol in Common Lisp?

Are there any differences between what in Common Lisp you'd call an atom, and a symbol? Do these differences extend to other languages in the Lisp family? (I'm aware that atom has a different ...
4
votes
6answers
3k views

Missing symbol names when profiling IPhone application with Instruments

I am compiling an IPhone application via command line (so no XCode options involved) and I am unable to get my symbol names to show when profiling with Instruments. I have tried several flags such as ...
4
votes
2answers
274 views

common-lisp: difference between binding and symbol

What's (in simple terms) the difference between setting a binding (LET) and symbols (=variables) in common lisp?
3
votes
3answers
58 views

What are the negatives of adding a to_str method to Symbol?

I'm working in a ruby app in which symbols are used in various places where one would usually use strings or enums in other languages (to specify configurations mostly). So my question is, why should ...
3
votes
1answer
404 views

C Symbol Table Problem

I am currently developing some sort of static analysis tool, that performs pattern matching.For that purpose, i am using Flex to generate lexical analyser, and i wrote piece of code for managing ...
3
votes
4answers
192 views

PHP equivalent to Ruby symbol

Does PHP have symbols like Ruby? Or, should I just use strings as the keys in a PHP associative array? I'm guessing it's the same answer as that of the question Is there a Python equivalent to Ruby ...
3
votes
1answer
133 views

Ld wrong symbol

I'm buildnig application with boost.python library. I want to link it. Here is the code: #include <boost/python.hpp> using namespace boost::python; // Boost.python definitions to expose ...
3
votes
4answers
631 views

Currency abbreviation (EUR, USD, GBP) convert to currency symbol (€, $, £)

I have some dropdownbox with currency abbreviations like EUR, USD, GBP and for all the other currencies. I would like to use some c# .Net functionality/method where I can insert an currency ...
3
votes
1answer
99 views

How I retrieve a 'standalone' symbol on Ruby's C extension API

I want to return several (7) values from a C function an a hash is, IMHO, a good option. I use first rb_intern('A_KEY') to create the keys, but the extension crashes. Finally, I had to use ...
3
votes
3answers
256 views

Why is in F# a dummy symbol literal needed between pipe and when?

I am new to F# and fiddling just around with it. What get's me is: let rec fact n = match n with | dummy when n < 2 -> 1 | _ -> n * fact (n - 1) let x = 6 printfn "%d! = %d" x ...
3
votes
1answer
2k views

Objective C: Inline function - symbol not found

I have a library which uses an inline C function, and is compiling just fine. When another library references that library, it still compiles fine. But if an actual app references the library, it ...
3
votes
2answers
158 views

How to use symbols/punctuation characters in discriminated unions

I'm trying to create a discriminated union for part of speech tags and other labels returned by a natural language parser. It's common to use either strings or enums for these in C#/Java, but ...
3
votes
2answers
174 views

Linker throwing out undefined symbol

I'm building an executable using GCC 3.4.0 . The target is an embedded system. I've been using a way of modularly defining "console command handlers" by defining a function pointer to a handler in any ...
3
votes
2answers
4k views

gcc -s and bash command strip

I wonder what is the difference between these two: gcc -s: Remove all symbol table and relocation information from the executable. strip: Discard symbols from object files. Are they having the ...
3
votes
2answers
2k views

Are there general guidlines for solving undefined reference/unresolved symbol issues?

I'm having several "undefined reference" (during linkage) and "unresolved symbol" (during runtime after dlopen) issues where I work. It is quite a large makefile system. Are there general rules and ...
3
votes
2answers
420 views

how to identify a font as symbolic in java?

I'm currently looking for a possibility in Java to identify a font as symbolic like OpenOffice does. Characters with the font Windings or Webdings and so on should be rendered with the correct ...
2
votes
4answers
83 views

Python not replacing % symbol

Hey guys I'm having a bit of an issue, I have to replace the symbols in a string one of them is the % sign now I'm using this as an example li = "this is () stuff %" li.replace('()%', ' ') but it ...
2
votes
2answers
31 views

Missing symbol compile error in C. Basic header file setup

I'm working on a C project implementing some generic containers and am having this weird issue when compiling. Here is some sample code that also replicates the error. foo.h void fooprint(void); ...
2
votes
1answer
49 views

MySQL LOWER() function not multi-byte safe for the º character?

When I encoding the following character to UTF-8: º I get: º Then with º stored as a field value, I select the field with the LOWER() function and get ⺠I was expecting it to respect that ...
2
votes
2answers
146 views

dlsym — get overridden symbol

I have an application dynamically loading libraries which dynamically load libraries which... In Windows, I'm able to iterate over all loaded modules looking for the symbol I'm interested in. Don't ...
2
votes
1answer
290 views

undefined symbol: SSLv2_method

Is Canonical renaming symbols in their package version of openssl, and if so for what purpose? When I compile openssl-1.0.0e.tar.gz (downloaded from openssl.org directly) from scratch I see the ...
2
votes
1answer
88 views

How to add Greek letter to data cursor in Matlab figure?

I added a data cursor in a Matlab figure, and this it the code shown when I clicked "Edit Text Update Function..." function output_txt = myfunction(obj,event_obj) % Display the position of the data ...
2
votes
1answer
185 views

At-Sign in SQL statement before column name

I have an INSERT statement in a PHP-file wherein at-signs (@) are occurring in front of the column name. @field1, @field2, It is a MySQL database. What does the at-sign mean? Edit: There is no ...
2
votes
1answer
80 views

Issue w/ Symbol Substitution in Mathematica

I want to define a symbol and use it within a function. For example, with IDnumbers defined as a list of numbers: ParallelMap[{#1, Name[#1], Age[#1]} &, IDnumbers] With userlist={#1, Name[#1], ...
2
votes
1answer
97 views

Why not IO Unique an instance of Show and how to see what it is?

I am trying to use the Data.Unique in Haskell. The newUnique can generate an object, but I want to see what it is. How can I do that?
2
votes
2answers
158 views

Linux function redirect

Hey, I'm trying to wrap a function in my program without using LD_PRELOAD. I have two functions with the same signature: void someFunc () { puts ("someFunc"); } void someFunc_wrapper () { ...
2
votes
2answers
274 views

Use special symbol (<, >) in layout design in Android

I need two navigation buttons with their texts are "<" and ">". However, the compiler doesn't allow me use those symbols, even if I use "\<" and ">". Is there anyway to put these symbol into ...
2
votes
1answer
258 views

“Cannot find symbol” - class with the main method can call methods from one of the other classes but not the second of the others?

I've been lurking here for a little while, but I've come into a problem that I can't solve in some Java programs I'm writing for an assignment. I bet they're not too difficult to figure out, but I'm ...
2
votes
4answers
933 views

Problem with Link Time Optimization causing undefined symbols with ASM constants

I am compiling mplayer with llvm-gcc-4.2.1. With '-O1' (which disables link time optimization), the program successfully compiles and links. With '-O2' or '-O1 -flto', ld complains of undefined ...

1 2 3 4 5