Tagged Questions
The arbitrary tag has no wiki summary.
4
votes
11answers
312 views
How do you determine if doing something the right way will handicap you?
I have a horrible habit, actually something I'm wrestling with right this moment, when I think of a better way to do something - either a refactor, or something that would just be SO MUCH COOLER ...
3
votes
5answers
260 views
Math operations on arbitrary objects in C#
first question here, apologies in advance for any foul-ups.
I'm implementing an interpreter for a toy language in C#, and in order to do math in that language I'd like to implement a function like ...
3
votes
5answers
581 views
Arbitrary bit-sized data type in C#
What is the best way of defining in C# a structure with, say, 6 bits of data?
I can, of course, define 2 fields of int + short, but I wonder if there's a way of holding all the data in 1 filed.
...
1
vote
6answers
139 views
Sort List C# in arbitrary order
I have a C# List I.E. List<Food> x = new List<Food> () ;
This list is populated with this class
public class Food {
public string id { get; set; }
public string ...
1
vote
1answer
101 views
How can I make objc functions with comma separated multiple arguements?
I would like to imitate the functionality of [NSArray arrayWithObjects:] which allows me to type in arguements this way: [MyClass doSomethingWithObjects: @"str1",@"str2",nil]. Assuming this is ...
1
vote
1answer
165 views
Bash - bind key to a string (not a function)
How do I get a key binding to result in inserting arbitrary text at the command line? In zsh I do this:
bindkey -s "^[m" 'myspecialscript '
In bash, is there an equivalent? None of the built-in ...
1
vote
3answers
140 views
How best to invoke arbitrary methods on arbitrary objects in javascript?
I would like to be able to call arbitrary methods on arbitrary objects. Something like:
function applyArbitraryMethod( method, args ) {
window[method].apply( this, args );
}
...
1
vote
1answer
741 views
iOS: Audio Units: setting arbitrary sample rate
Can I set any sample rate I want? What are the restrictions?
How about the hardware sample rate? And once that is set, what is the restriction on the internal sample rates passed between units?
...
1
vote
4answers
231 views
Collection of arbitrary types in VB.NET?
So I'm wondering if there is an answer in pure .NET for representing a collection of arbitrary data types. I know there's the old, late-bound, VB6 Collections, but I was looking for something like ...
1
vote
1answer
465 views
Change Node Display Size in Networkx
I am not using GraphViz because I am having problems with making it play nice with Networkx. I know this is weird, but I've tried many suggestions to fix this problem, but I just seem to have some of ...
0
votes
1answer
34 views
Raphael — object rotation at arbitrary position
I'm using Raphael_2.01 and would like to rotate an object at arbitrary position.
(WindowsXP, Firefox3.6)
example: http://uproda11.2ch-library.com/326446b6u/11326446.png
This rectangle (rect0) ...
0
votes
3answers
52 views
replace path with another path with sed
I have a file with following lines:
some /foo/foo/foo some
some=/foo/foo/foo some
some /foo/foo/foo/ some
some=/foo/foo/foo/ some
some "/foo/foo/foo" some
some="/foo/foo/foo" some
some ...
0
votes
1answer
60 views
Summation using MPIR in C#?
X-MPIR wrapper for C# can be found here:
http://www.alglib.net/x/xmpir/
I'm trying to compute (again) the summation
using C# and MPIR. I know that the summation is a recursive method, as is the ...
0
votes
1answer
38 views
Arbitrary query result in CakePhp
i'm developing an Api for Cakephp where i pass some query params from a controller to another. These query must be arbitrary and could be related to several different models but the interesting result ...
0
votes
1answer
93 views
How to compare arbitrary elements in Java PriorityQueue?
I have a PriorityQueue that has an element with a priority. Now I want to add the same element again with a different priority and keep only the one with higher priority. I thought of checking the new ...
0
votes
1answer
315 views
Circular rotation around an arbitrary axis
I am programming Starcraft 2 custom maps and got some proglems with math in 3D. Currently I am trying to create and rotate a point around an arbitrary axis, given by x,y and z (the xyz vector is ...
0
votes
1answer
75 views
How to declare fixed size 48 bit data type in Java?
I need to declare a fixed size data type with maximum 48 bits in Java. Can anybody help me with that? I tried using a Byte array, but since it is a single continuous number, that will be stored in the ...
0
votes
1answer
351 views
How to sort an array arbitrarily in cakephp
I have an array wich is dynamic array, and key and values are displaying ind order if they are set, I want to display keys of this array in my own order, What kind of condition must I write in this ...
0
votes
1answer
48 views
Creating a list similar to .ctors from multiple object files
I'm currently at a point where I need to link in several modules (basically ELF object files) to my main executable due to a limitation of our target (background: kernel, targeting the ARM ...
-1
votes
1answer
47 views
JavaScript arbitrary function [closed]
Possible Duplicate:
Passing arbitrary number of parameter to a function in javascript
How to create an arbitrary function in JavaScript? You know, like Math.min(x1,x2...xn). It can have ...