Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
6k views

How to implement dynamic arrays in Delphi

I originally had an array[1..1000] that was defined as a global variable. But now I need that to be n, not 1000 and I don't find out n until later. I know what n is before I fill the array up but I ...
9
votes
2answers
901 views

How do I redefine built in Perl functions?

I want to do two things: In production code, I want to redefine the open command to enable me to add automagic file logging. I work on data processing applications/flows and as part of that, it's ...
7
votes
4answers
1k views

How to redefine a Ruby constant without warning?

I'm running some ruby code which evals a .rb file everytime its date changes. In the file, I happen to have constant definitions, like Tau = 2 * Pi and of course they make the interpreter display ...
5
votes
6answers
270 views

How to reuse and override inherited javascript function

I have a class for mouse events. I'm using dojo b/c I like its OO approach dojo.declare("MouseObject", null, { constructor: function(){}, onclick : function(){...}, _onClick : function(){...} ...
5
votes
4answers
688 views

Python __setattr__ and __getattr__ for global scope?

Suppose I need to create my own small DSL that would use Python to describe a certain data structure. E.g. I'd like to be able to write something like f(x) = some_stuff(a,b,c) and have Python, ...
5
votes
3answers
614 views

Can I redefine a c++ macro for a few includes and then define it back?

I am using both the JUCE Library and a number of Boost headers in my code. Juce defines "T" as a macro (groan), and Boost often uses "T" in it's template definitions. The result is that if you ...
4
votes
1answer
494 views

XSD: How to redefine the data type of a simpleType eg. from xs:string to xs:integer

I am trying to extend and tailor an external xsd schema (of the fixml standard). I need to change the data type of some of the elements, without touching the original schema, but by redefining it; but ...
3
votes
0answers
53 views

How to copy macro contents to another macro in C [closed]

Possible Duplicate: Can I redefine a c++ macro for a few includes and then define it back? I have the following: #include <iostream> #define A 1 // define a macro #define B A ...
3
votes
2answers
121 views

How to redefine ^ In Matlab?

How to redefine the exponential function ^ In MATLAB? x.^y to sign(x).*abs(x.^y))
3
votes
4answers
522 views

How to redefine malloc() in Linux for use in C++ new

I have a mem_malloc() and mem_free() defined for me and I want to use them to replace the malloc() and free() and consequently C++'s new and delete. I define them as follows: extern "C" { extern ...
3
votes
3answers
145 views

How can I change the value or a static char* from a function? C++

I am trying to change the value of a "static char *" I define at startup, I do it from inside a function, and when this function returns the var I am trying to re-set the value doesn't retain it. ...
3
votes
10answers
8k views

Php redefine Class Methods OR Class

Is there any way to redefine a class or some of it's methods without using typical inheritance ex: class third_party_library { function buggy_function() { return 'bad result'; } ...
2
votes
1answer
23 views

DOMParser: Can we make it cry less about multiply defined attributes?

"Be liberal in what you accept, and conservative in what you send." -Jon Postel Right now I'm using the chrome browser, but I've experienced the same in the past with Firefox. JS code like... (new ...
2
votes
1answer
215 views

Redefine XMLHTTPRequest in overlay.js in Mozilla Firefox Add-on

I'm building a firefox extension and would like to change the behavior of the XMLHTTPRequest object for every page loaded. I found following code which should do the trick: ...
2
votes
2answers
176 views

cfset problem with adding to existing variable

I am pulling my hair out working on what would seem to be easy problem. But as a ColdFusion rookie I am just having a hell of a time figuring it out. <cfoutput query="getSeasonAndRate"> ...
2
votes
2answers
272 views

redefine __and__ operator

Why I can't redefine the __and__ operator? class Cut(object): def __init__(self, cut): self.cut = cut def __and__(self, other): return Cut("(" + self.cut + ") && ...
2
votes
3answers
374 views

How can I redefine 'open' properly in Perl?

Some time ago, I ask a question: How do I redefine built in Perl functions? And the answers have served me well. I have a package that overrides Perl's 'open' function enabling me to log file access. ...
1
vote
1answer
147 views

How to redefine XML Schema type without redefine?

This is a continuation question to my previous question. I have XML files and XML Schema provided by several different third parties. For some mysterious reasons Oracle requires an Oracle specific ...
1
vote
3answers
106 views

Faster to reuse a variable defined in a common scope or redefine it in each inner scope?

C++ specifically, if it matters, but I imagine the answer lies in assembly code somehow. If we have multiple blocks in a common scope (say, a function) which each use a variable of the same type, is ...
1
vote
5answers
123 views

timed display of div

all i need is some client side code jQuery or JS that will alter the divs style after X seconds like visibility : hidden; OR max-height : 50px; or switch the class \ id of the DIV ( preferred )
1
vote
2answers
790 views

Flex - How can I define a function in one component from another?

I'm a complete Flex/Flash noob, running Adobe Flash Builder 4 Beta 2. I have a main component that needs to be able to call several popups, each mostly the same except for one function and a few ...
0
votes
0answers
12 views

How to redefine FocusVisualStyle for all the elements

I have some RadioButtons in project. I need to redefine FocusVisualStyle for all of them. I think it is a bad idea to define the style for each. Does anyone have any idea how to redefine ...
0
votes
2answers
410 views

Java 6 redefining currency symbol (via CurrencyNameProvider?)

Recently Sun/Oracle changed currency code for Ukrainian hrivna to incorrect one and I've to fix that in my code. I find out that Java 6 should allows me to do that at Java level (details are here) ...
0
votes
3answers
717 views

C++ class redefinition error

I am compiling a logging program, but I am receiving this error and cant figure it out for the life of me... logger.cpp:15: error: redefinition of ‘class Logger’ logger.h:20: error: previous ...
0
votes
1answer
42 views

redefining css overflow?

My main div .container is set to overflow:hidden; to maintain 100% height, it nests all content divs except for my header and footer. However inside is my sidebar which contains things that need to ...
0
votes
2answers
210 views

Redefining free memory function in C

I'm redefining memory functions in C and I wonder if this idea could work as implementation for the free() function: typedef struct _mem_dictionary { void *addr; size_t size; ...
0
votes
2answers
461 views

Redefine / resize C array in Objective C?

I have a C array in Objective C defined as follows: id keysArray; Then in an if block, i would like to redefine the array based on a condition: if (somethingIsTrue){ id keysArray[4][3]; } else ...