Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
2k views

Curious C# using statement expansion

I've run ildasm to find that this: using(Simple simp = new Simple()) { Console.WriteLine("here"); } generates IL code that is equivalent to this: Simple simp = new ...
14
votes
2answers
349 views

How to expand/“preprocess” c++ template code

To properly debug complex macros in c++ I usually run the preprocessor on them in order to see exactly what the resulting code looks like. Is there a similar way to "preprocess" template code?
11
votes
3answers
546 views

Haskell: Equation Expander 1+(1+(1+(1+(…))))=∞

Does there exist a equation expander for Haskell? Something like foldr.com: 1+(1+(1+(1+(…))))=∞ I am new to Haskell I am having trouble understanding why certain equations are more preferable than ...
9
votes
2answers
389 views

Preprocessor token expansion

My mental model of how the preprocessor works is apparently incomplete, and this is driving me crazy. I want to concatenate two tokens, but the second token should be expanded first. #define ANSWER ...
8
votes
1answer
730 views

bash tab completion without variable expansion?

Let's say I have these variables defined in my bashrc: i='cgi-bin/internal'; e='cgi-bin/external'; f='cgi-bin/foo'; b='cgi-bin/bar'; ad='cgi-bin/admin'; #etc... When I use the variable on ...
6
votes
5answers
1k views

How do I temporarily disable a macro expansion in C/C++?

For some reason I need to temporarily disable some macros in a header file and the #undef MACRONAME will make the code compile but it will undef the existing macro. Is there a way of just disabling ...
5
votes
2answers
133 views

Algorithm for bit expansion/duplication?

Is there an efficient (fast) algorithm that will perform bit expansion/duplication? For example, expand each bit in an 8bit value by 3 (creating a 24bit value): 1101 0101 => 11111100 01110001 ...
5
votes
2answers
959 views

how to make bash expand wildcards in variables?

I am trying achieve the same effect as typing mv ./images/*.{pdf,eps,jpg,svg} ./images/junk/ at the command line, from inside a bash script. I have: MYDIR="./images" OTHERDIR="./images/junk" ...
4
votes
1answer
120 views

C pre-processor macro expansion

I'm trying to do (what I would have thought) was a simple macro expansion #define CLEAR_DIGIT(a,b) iconMap[a] &= ~(b) #define R1 4, 16 CLEAR_DIGIT(R1); Now I would expect that to expand to ...
4
votes
2answers
200 views

Is there a way to check, if an argument is passed in single quotes?

Is there a (best) way to check, if $uri was passed in single quotes? #!/usr/local/bin/perl use warnings; use 5.012; my $uri = shift; # uri_check # ... Added this example, to make my problem more ...
4
votes
2answers
156 views

tab expansion in perl

just encountered the code for doing tab expansion in perl, here is the code: 1 while $string =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e; I tested it to be working, but I am too much a ...
4
votes
2answers
556 views

Gnuwin32 find.exe expands wildcard before performing search

I am using Gnuwin32 binaries on a Windows environment. When I want to find files of a certain type, let's say PDF, I usually run: find . -iname '*.pdf' -print This works perfectly on any UNIX ...
4
votes
8answers
449 views

Algorithm for modeling expanding gases on a 2D grid

I have a simple program, at it's heart is a two dimensional array of floats, supposedly representing gas concentrations, I have been trying to come up with a simple algorithm that will model the gas ...
3
votes
2answers
90 views

Macro stepper in DrRacket

On the link http://www.ccs.neu.edu/home/ryanc/macro-stepper/tutorial.html there are instructions for working with the macro stepper. However, when I'm going to try it, I can't get the second ...
3
votes
2answers
263 views

How to prevent filename expansion in for loop in bash

In a for loop like this, for i in `cat *.input`; do echo "$i" done if one of the input file contains entries like *a, it will, and give the filenames ending in 'a'. Is there a simple way of ...
3
votes
5answers
297 views

Globbing/pathname expansion with colon as separator

How can I convert a string containing glob characters such as /var/lib/gems/*/bin into a colon-separated string of filenames (i.e. PATH compatible) matching the pattern? i.e. echo ...
3
votes
2answers
136 views

C99 Macro to build a quoted string literal after evaluation

I'm developing an embedded application in C99, and the project contains some integer constants defined like: #define LEVEL1 0x0000 #define LEVEL2 (LEVEL1 + 1) It has since become useful to ...
3
votes
2answers
291 views

home directory expansion (~) within an argument

When I enter the following (BASH): rdesktop -r disk:bacon=~/bacon host It does not expand to rdesktop -r disk:bacon=/home/me/bacon host It seems the "disk:" part is the problem as can be seen ...
3
votes
3answers
717 views

Bash globbing - autoexpand for a few specific cases?

I understand that the wildcard * (by itself) will expand in such a way that it means "all non-hidden files in the current folder" with hidden files being those prefixed by a period. There are two use ...
3
votes
2answers
1k views

Four Dollar signs in Makefile

I am reading the document of GNU Make. Here is an example %.d: %.c @set -e; rm -f $@; \ $(CC) -M $(CPPFLAGS) $< > $@.$$$$; \ sed ’s,\($*\)\.o[ :]*,\1.o $@ : ,g’ < $@.$$$$ ...
3
votes
3answers
2k views

c++ preprocessor macro expansion to another preprocessor directive

Initially I thought I needed this, but I eventually avoided it. However, my curiosity (and appetite for knowledge, hum) make me ask: Can a preprocessor macro, for instance in #include "MyClass.h" ...
3
votes
3answers
809 views

Avoid expansion of * in bash builtin function let

I have a problem with a bash script. I have to use the operator * to multiplicate. Instead the script bugs me with expansion and using as operator the name of the script itself. I tried with single ...
2
votes
1answer
22 views

Reconstruct $@ and keep the correct word split in Bash

I have a bash function that passes all the parameters to another function b which works well in the past. a () { b "$@" } a -input /input -output "with blanks" Now I want modify some parameters ...
2
votes
2answers
456 views

Bash parameter expansion

I have a script which uses the following logic: if [ ! -z "$1" ]; then # if any parameter is supplied ACTION= # clear $ACTION else ACTION=echo # ...
2
votes
3answers
345 views

Base64: What is the worst possible increase in space usage?

If a server received a base64 string and wanted to check it's length before converting,, say it wanted to always permit the final byte array to be 16KB. How big could a 16KB byte array possibly become ...
2
votes
1answer
338 views

how to avoid shell expansion when running Java app in eclipse

I am running into a peculiar behavior of the eclipse run configuration, and it appears to be a Windows-only problem. Suppose I have a Java app that prints out the command line arguments, like the ...
2
votes
4answers
2k views

Bash: trim a parameter from both ends

Greetings! This are well know Bash parameter expansion patterns: ${parameter#word}, ${parameter##word} and ${parameter%word}, ${parameter%%word} I need to chop one part from the beginning and ...
2
votes
5answers
3k views

jQuery Accordion expand all div

Is it possible to expand all components when page is load or when an event occurs? Thanks!!
2
votes
1answer
815 views

Java: Expanding array size, can't seem to keep all values in original locations

For my current homework, I'm trying to sort my array through a generic class as the user inserts values into its locations. When the size reads as fully loaded, the array class calls in an expansion ...
2
votes
3answers
677 views

Qt: Expand ~ to home-directory

Does Qt have any platform-independent functionality to accept paths like "~/myfile"? I know about wordexp, but it would be nice with a platform-independent wrapper. Edit: Thank you all for the ...
2
votes
1answer
501 views

Why do I get this error using {1..9} in zsh?

I run the following code zgrep -c compinit /usr/share/man/man{1..9}/zsh* I get zsh: no matches found: /usr/share/man/man2/zsh* This is strange, since the following works echo Masi{1..9}/masi ...
1
vote
2answers
80 views

Scala Case Class Map Expansion

In groovy one can do: class Foo { Integer a,b } Map map = [a:1,b:2] def foo = new Foo(map) // map expanded, object created I understand that Scala is not in any sense of the word, Groovy, but am ...
1
vote
1answer
45 views

Query expansion in PostgreSQL

I've just read in PostgreSQL manual that it provide full-text search functions including parsing, indexing and searching on documents text. My question is: it is possible to obtain a query expansion ...
1
vote
0answers
369 views

Datatable row expansion event

I am using Primefaces 3.0 with JSF 2.0. I have a datatable with expansion enabled. I wanted to call a bean method when the user clicks on rowToggler. Basically I wanted to load the expansion details ...
1
vote
1answer
145 views

bash: expanding variable

I'm trying to add a function to my .bashrc to ease prepending $PWD to environment variables. I'd like the function to take one argument -- the name of the variable on which to prepend the working ...
1
vote
3answers
130 views

Sequences expansion and variable in bash

I am having a problem with builtin sequences (ie: not using seq) in Bash when the seq number is a variable. For example, this works and print me 1 2 3: for i in {1..3};do echo $i;done but this : ...
1
vote
1answer
447 views

Windows 7 PATH environment variable expansion

In Windows 7 I set the PATH environment variable thus: ...
1
vote
2answers
349 views

Fileset/patternset's refid attribute isn't expanded. How would you write a target that operates on an arbitrary set of files?

I have a set of targets that each do essentially the same thing except each contains a specific patternset on which to perform its tasks. I want to collapse these targets into a single "reusable" ...
1
vote
1answer
142 views

How can I guarantee full macro expansion of a parameter before paste?

I have a general macro: #define mSwitch( Root, Case ) Root##_Case_##Case #define mSpecialDisplay( what, Val ) mSwitch(mSpecialDisplay,what)(Val) #define mSpecialDisplay_Case_Int(Val) ...do ...
1
vote
2answers
300 views

Is there a way to control macro expansion order

I am hoping that someone may have an idea on how to control/specify the order of macro expansion. Here is the context: // 32 bit increments, processor has registers for set, clear and invert ...
1
vote
2answers
251 views

Can't assign FULLTEXT index on my table

I am trying to implement a search function on a database table using query expansion, and I'm aware that I have to add the FULLTEXT index on the fields I want to become searchable. I have tried to do ...
1
vote
4answers
884 views

How to escape extended pathname expansion patterns in quoted expressions?

In addition to the basic *, ? and [...] patterns, the Bash shell provides extended pattern matching operators like !(pattern-list) ("match all except one of the given patterns"). The extglob shell ...
0
votes
0answers
13 views

sql table expanding

I have a table as follows: Line Slots 1 1 2 2 3 3 4 5 6 etc. Each line can have one,two or three slot numbers. The user enters slot numbers separated by blanks. I have to ...
0
votes
1answer
44 views

How can I create an always-expanded treeview?

Well, I thought I had this one solved. I simply changed the TreeViewItem's template to ignore whether a particular node was expanded or not. Looks great! But that's just it... it looks great! ...
0
votes
1answer
27 views

ZSH directory expansion ('..' into '../')

I've recently started to learn and use ZSH. The problem I'm facing is that ZSH won't auto-expand '..' in commands (like 'cd', 'cp' and so on) into '../'. Bash does this. This wouldn't be such an big ...
0
votes
0answers
18 views

How UIView open with changing height and show subview with detail information?

I am implementing UIView with button that activate changing height of UIView. after UIView opened with button clicked, height of UIView is growing as sliding. Opened area have detail information of ...
0
votes
1answer
40 views

In-Place Word/Symbol Dabbrev Expand

Here's my extension to dabbrev-expand to support sub-string expansion.It works as expected, as far as I know. However I would find it even more useful if it supported in-symbol expansion similar to ...
0
votes
0answers
22 views

Prevent TI BASIC expression expansion

I'm coding a function for my TI-Nspire CAS calculator. I have two parts of an expression: (x+2)^2 and +3 Joining these two parts results in the expression being undesirably expanded: x^2 + 4x ...
0
votes
1answer
55 views

Get next enumeration value in C?

For class I need to make a dynamically expanding hash table that expands when the number of bindings reaches certain values - 509,1021, 2039, 4093, etc. I understand just about everything else but I'm ...
0
votes
2answers
49 views

How to force bash/zsh to evaluate parameter as multiple arguments when applied to a command

I am trying to run a program like this: $CMD $ARGS where $ARGS is a set of arguments with spaces. However, zsh appears to be handing off the contents of $ARGS as a single argument to the ...

1 2