Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
5k views

How to correctly use .NET2.0 serial port .BaseStream for async operation

I am attempting to use the .BaseStream property of the .NET2.0 SerialPort to do asynchronous reads and writes (BeginWrite/EndWrite, BeginRead/EndRead). I am having some success in this, but after a ...
5
votes
4answers
2k views

c++ multiply vector elements by a scalar value using STL

Hi I want to (multiply,add,etc) vector by scalar value for example myv1 * 3 , I know I can do a function with a forloop , but is there a way of doing this using STL function ? something like the ...
4
votes
2answers
1k views

How do i get the invoked operation name within a WCF Message Inspector

I'm doing a message inspector in WCF: public class LogMessageInspector : IDispatchMessageInspector, IClientMessageInspector which implements the method: public object AfterReceiveRequest(ref ...
3
votes
2answers
124 views

Stop current operation in Visual Studio

When using Visual Studio I often encounter situations when the IDE freezes while performing some operation. For instance, this frequently happens when I move next statement pointer (yellow arrow) ...
3
votes
8answers
2k views

How to create a file using javascript in Mozilla Firefox

I want to write a function in javascript which creates a file and write some content to it, iam working with firefox, can anybody help me in this case. Thanks...
3
votes
3answers
279 views

Best way of implementing a batch like operation in a RESTful architecture?

We have a predominantly RESTful architecture for our product. This enables us to nicely implement almost all of the required functionality, except this new requirement thats come in. I need to ...
3
votes
7answers
1k views

How do I convert a 2X2 matrix to 4X4 matrix in MATLAB?

I need some help in converting a 2X2 matrix to a 4X4 matrix in the following manner: A = [2 6; 8 4] should become: B = [2 2 6 6; 2 2 6 6; 8 8 4 4; 8 8 4 4] How would I do ...
2
votes
2answers
54 views

Shape inconsistence in my code based on numpy/scipy package

I have 2 matrices and a vector which I multiply by using the dot() function of numpy. print D.shape, A.shape, y.shape, type(D), type(A), type(y) # (236, 236) (236, 236) (236,) # <class ...
2
votes
1answer
39 views

How to operate elementwise on a matrix of type scipy.sparse.csr_matrix?

In numpy if you want to calculate the sinus of each entry of a matrix (elementise) then a = numpy.arange(0,27,3).reshape(3,3) numpy.sin(a) will get the job done! If you want the power let's say to ...
2
votes
2answers
55 views

Bitwise AND or similar operation on data-frame rows in R?

I have two data frames A and B, both of the same dimensions. The row and column labels are not guaranteed to be identically ordered between frames. Both frames contain values 0 and 1, with 1 ...
2
votes
2answers
80 views

Subtracting small data.frame from large data.frame by grouped a variable

I have got a very large data set mdf <- data.frame (sn = 1:40, var = rep(1:10, 4), block = rep(1:4, each = 10), yld = c(1:40)) I have small data set blockdf <- data.frame(block = 1:4, ...
2
votes
1answer
72 views

Which is the best method to do pagination so that load on server is minimum

I have done a bit of research on pagination and from what i have read there are 2 contradictory solutions of doing it Load a small set of data from the database each time a user clicks next ...
2
votes
5answers
674 views

How to parse arithmetic operators from string?

Is it possible to assign an int variable a value that is a result of expression written in a string? E.g. I have a string "5 - 3" and the expected result is 2.
2
votes
1answer
207 views

Why can't I use Set:union() instead of Set.union?

I am learning Lua and I would rather use the colon (:) for methods. Unfortunately, it's not working everywhere. See my code: Set= {} local mt= {} function Set:new(m) local set= {} ...
2
votes
3answers
1k views

Operator associativity in C specifically prefix and postfix increment and decrement

In C operation associativity is as such for increment, decrement and assignment. 2. postfix ++ and -- 3. prefix ++ and -- 16. Direct assignment = The full list is found here Wikipedia ...
1
vote
1answer
29 views

Using bit operation to determine if a int is a power of 2

I once encountered a method of determining if a number x is a power of 2 by doing the following: X&(x-1) followed by a 0 test, if the result is 0 then it means there is only one 1 bit in the ...
1
vote
1answer
57 views

WSO2 - Using get-property() function in Property/Xquery Mediators

Our current service has 7 operations. when writing an outbound xquery "local entry" in wso2, we're trying to retrieve the name of the current operation being executed (how can this be so difficult?). ...
1
vote
5answers
90 views

php: performing math inside of an “echo”. also passing variable name to a function

I'm building a table (tho not using <table>) and populating it with data from mysql. I have the following code to build the "table": $NYC = // data from mysql, working fine $NYC_min = 300; ...
1
vote
3answers
74 views

MySQL: Performing an operation on different rows based on condition?

Say I have a query which returns the following result: | val | type | i | ---------------------- | 59 | 1 | 1 | | 40 | 2 | 2 | | 12 | 1 | 3 | | 3 | 2 | 4 | | 24 ...
1
vote
1answer
55 views

WCF Data Service Operation loses order of subEntities in Silverlight Client

I have a WCF DataSerice OPeration wich exposes Businesses and Customers. In the server side I sort each business's Customers by LastName, this way: List<Customers> orderedCustomers = ...
1
vote
1answer
32 views

Functionality and operation

I'm trying to do some analysis and when writing down a list of functionalities I realized I'm a bit fuzzy on the notion. What can you consider as functionalities like, say, on this Stackoverflow ...
1
vote
2answers
203 views

How to write small DSL parser with operator module in python

See below matrix data: A B C D E F G 1 89 92 18 7 90 35 60 2 62 60 90 91 38 30 50 3 59 91 98 81 67 88 70 4 20 28 31 9 91 6 18 5 80 27 66 1 33 ...
1
vote
8answers
249 views

Is a comparison an atomic operation?

Is the following comparison an atomic action? I.e., can it be reduced to a single CPU instruction? char flag = 2; for(;;) { if (!flag) // <-- this break; // sleep } Here's what ...
1
vote
4answers
93 views

C# Linq question

Does LINQ have a sequence operator, which allows to perform some action on every element without projecting it to a new sequence? This might see a bit awkward, but just for me to know :) Example: ...
1
vote
3answers
244 views

Operations on files collection and aggregate results report with non-blocking IO

I would like to perform some arbitrarily expensive work on an arbitrarily large set of files. I would like to report progress in real-time and then display results after all files have been processed. ...
1
vote
0answers
364 views

Larman's System Operation Contracts - CRUD example

I have some confusion with applying Larman's system operation contracts (OO Analysis from book Applying UML and Patterns) on CRUD-like operations. More precisely, I'm confused with postcondition part. ...
1
vote
4answers
165 views

Operations speed

I'm coding a game and it's very important to make speed calculations in render-code. How can I get the speed of some operations? For example, how to know whether multiplying is faster then sqrt, ...
1
vote
3answers
2k views

Writing to a .txt file in MATLAB (strings, matrices, cells)

I need to write data to a .txt file in MATLAB. I know how to write strings(fprintf) OR matrices (dlmwrite) but I need something that can do both of them. I'll give an example below: str = 'This is ...
1
vote
2answers
134 views

Why are Red_Black trees better than 2-3 trees?

Apart from red-blacks being easier to implement. All operations (insertion, deletion, lookup) seem to have a time complexity of O(log n), in both trees. Is there a certain difference between these ...
1
vote
1answer
134 views

WCF Security Exception caused by Directory.Delete()

I am encountering a strange issue: I call a WCF-Operation from my client. The operation deletes all files in a specified directory and finally deletes their parent directory too. ACtually, this ...
1
vote
2answers
322 views

Prolog: Recursive function redefinition

Is there a way to "recursively redefine" (don't know the technical term) prolog predicates? Consider these predicates: f(X,Y,A):-A is Y xor X. arity(f,2). now i want to automatically create 2 new ...
1
vote
2answers
203 views

Atomic bitfield operations on 80x86?

Does 80x86 have instructions for atomically testing and setting individual bits of a word?
1
vote
1answer
245 views

WCF Operation Logging

I'd like to log the performance of our WCF operations, in particular if an operation takes longer to execute than a given threshold it creates a warning in a log. We have started by implementing ...
0
votes
0answers
23 views

oData operation consumption with objective-C

I have a really simple WCF service operation GetCurrentBalance. It returns a decimal. I also have the odatagen generated entity files included in the project, which contains an implementation of the ...
0
votes
2answers
75 views

Ruby - Timestamp of yesterday to a certain time

I have the following issue: I want to get the timestamp of yesterday on a specific time. With what I've come up so far is: Time.local(Time.now.strftime("%Y"), Time.now.strftime("%m"), ...
0
votes
1answer
60 views

Matlab: subtract rows in a single matrix consecutively by iterative method

Let us assume there is a matrix [mXn]. for example: a=[2 9; 5 7; 8 25; 1 6; 3 9]. I would like to know how to subtract 1st row from 2nd row and so on till end where the difference between two row is ...
0
votes
3answers
44 views

Split java integer and get values

I have next problem, I have integer in java and bites from 0 to 29 is timestamp, the bits from 30 to 31 means level (possible values 0, 1, 2, 3). So my question is, how do I get the timestamp as long ...
0
votes
0answers
7 views

wsdl:operation customized attributes

how to define a schema for property like below My visual studio seems not recognize the msc:isInitiating attribute, msc is already defined.
0
votes
0answers
38 views

Unit test/Integration testing's Backend operation while doing a fake/mock test

I want to know how to see or check the intermediate unit test/integration test result, as the test progresses. I mean - Say If I have a unit/Integration test name > [TestMethod] public void ...
0
votes
2answers
92 views

Replace all occurences of a string within a file

I have a string test.cgi@action=<action-name> <action-name> can be any string I would like to replace the above string with <action-name>.html for all the occurences within a file. ...
0
votes
1answer
154 views

Android Cancel long operation (Asynctask,thread…?)

I tried AsyncTask, Thread and Handler but i don't get it. The method readXML() takes about 1-2 minutes and i only need a way to cancel this operation. All the solutions I've found were for short time ...
0
votes
1answer
134 views

Impossible to use chown even if I am logged as a root

I am currently using debian 6 squeeze. I would like to change the owner of a floder in my usb key. So I did : chown -R www-data /media/USB/myfolder/myfile I got this message : chown: changing ...
0
votes
4answers
75 views

Python: One-liner to perform an operation upon elements in a 2d array (list of lists)?

I have a list of lists, each containing a different number of strings. I'd like to (efficiently) convert these all to ints, but am feeling kind of dense, since I can't get it to work out for the life ...
0
votes
1answer
213 views

Validating a Self Tracking Entity (EF) through WCF

I'm having trouble defining what my OperationContract should be when adding / updating an entity. I want to send an entity (or list of entities) to the ObjectContext via the WCF Service (which will ...
0
votes
3answers
167 views

PHP Addition Subtraction Operation, Not Accurate Result

<?php echo 199.8 + 0.9 -200.7; //expect 0, result 2.8421709430404E-14 ? ?> Tested on PHP Version 5.3.2-1 ubuntu4.7
0
votes
0answers
135 views

Nested NSOperation - notify parent thread

I have a problem with nested NSOperations. I do not know how to notify parent operation -> how to perform selector on parent thread. Well I think I know, but it does not work. During my operation ...
0
votes
0answers
10 views

find objects from the application via Object graph navigation language and execute some methods of it

Can it possible to find out the objects which are dependent on current object and even execute the methods of those objects, even execute those methods of dependent objects which are using current ...
0
votes
1answer
237 views

Audit Trail Item List 2 BusComp not showing Associate or Disassociate Operations. ver 8.0 +

Our implementation: We have added Auditing using the Audit Trail functionality, to a Bus Comp to monitor a M:M relationship between itself and a child (with the use of an intersection table.) as per ...
0
votes
1answer
126 views

unable to insert in sqlite database for iphone when app is terminated and started again

-(void)checkAndCreateDatabase{ NSLog(@"hello"); databaseName = @"EMAP234.sql"; NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); ...
0
votes
2answers
74 views

Do i need to use a method or can I simply pass an operation when it is changed?

Is it possible for me to pass the operation string back from when a +, - or * operation occurs so that it saves it as operation and then I can move on to when I press = or is this simply impossible? ...

1 2