The sequential tag has no wiki summary.
4
votes
3answers
108 views
C# Libraries for timed actions
do you know of any C# libraries that allow you to sequence a series of actions, ie. each action executing when the previous has finished, or better yet, after a specific time interval has occurred.
...
4
votes
5answers
381 views
Efficiency of Algorithm
This is a direct quote from the textbook, Invitation to Computer Science by G.Michael Scneider and Judith L.Gersting.
At the end of Section 3.4.2, we talked about the tradeoff between using ...
4
votes
4answers
780 views
Sequential Guid in Java
Considering the post I've made about the sequential guid performance on Microsoft.NET framework (see ...
3
votes
2answers
83 views
Timing Confusion In Java
For a project I worked on, I was tasked with timing the search times for two different search algorithms: binary search and sequential search. For each algorithm, I was supposed to record the time ...
3
votes
5answers
206 views
returning the max of a list
I am trying to return the max of a list.
I have the following code
list_max([]) ->
[];
list_max([H|T]) ->
list_max(H, T).
list_max(Temp, []) ->
Temp;
list_max(Temp, [H|T]) when ...
3
votes
2answers
105 views
how to show sequential results inside textfield
dear all.I want to use only one textfield for different results. what should I do if I want after pressing a few times a checkbox or another checkbox the results will appear sequentially in the ...
3
votes
2answers
431 views
Fire a jquery loop to iterate before animation callback is complete?
I am trying to make a sequential animation, where a loop iterates through a list of elements .post's and fades them in slow. The difficult part is having it so that the next iteration begins fading in ...
3
votes
9answers
789 views
java -> System.gc(); Does this call opens a new Thread or not?
For example I such a code
...
get some memory and lose all the pointers to that memory so that System.gc(); can collect it.
call System.gc();
do some other tasks;
Here does the "do some other ...
2
votes
4answers
109 views
Plotting data sequentially from emacs using Common Lisp and Gnuplot
Assume that I have some array of data (a vector to be specific).
Can I plot it element by element sequentially using Gnuplot such that it seems as if it is a real life signal that is being traced ...
2
votes
1answer
41 views
D Flip Flop in VHDL
I'm trying to implement a D Flip Flop in VHDL, using a D Latch I wrote.
But there seems to be an error with the clock, and I can't figure out what that is.
Here is the code for my D Latch.
Library ...
2
votes
3answers
84 views
How do I call a function twice or more times consecutively in python?
Is there a short way to call a function twice or more consecutively in python? For example:
do()
do()
do()
maybe like :
3*do()
2
votes
1answer
123 views
How to read hadoop sequential file?
I have a sequential file which is the output of hadoop map-reduce job.
In this file data is written in key value pairs ,and value itself is a map.
I want to read the value as a MAP object so that i ...
2
votes
2answers
46 views
Vhdl vector boundry check
type dmemSpace is array(0 to 1023) of std_logic_vector(31 downto 0);
signal dataMem : dmemSpace := (
400 => X"00000000",
404 => X"00001000",
408 => X"FFFFEFFF",
others => ...
2
votes
4answers
416 views
Ruby, run linux commands one by one, by SSH and LOG everything
I want to write code in Ruby witch net::ssh that run commands one by one on remote linux machine and log everything (called command, stdout and stderr on linux machine).
So I write function:
def ...
2
votes
3answers
2k views
fade in list items sequentially with jQuery
I'm building a portfolio page that has a list of different projects (in an unordered list). On page load I want to have each "li" to fade in, one after another. I have achieved this like so:
var ...
2
votes
2answers
249 views
Sequentially number rows by keyed group in SQL?
Is there a way in SQL to sequentially add a row number by key group?
Assume a table with arbitrary (CODE,NAME) tuples. Example table:
CODE NAME
---- ----
A Apple
A Angel
A Arizona
B ...
2
votes
1answer
210 views
Creating a sequential file
I'm trying to create a sequential file but it doesn't seem to be working. Can anyone explain how to get this to work in MS Visual Studio 2010?
#include <iostream>
#include <string>
...
2
votes
1answer
324 views
How to run these functions one after the other?
How can I have these functions run one after the other, so each one finished before the next starts?
$(window).unbind();
$('.buyersseclink').removeClass('buyersseclinkon');
...
2
votes
4answers
270 views
Trouble with a sequential search algorithm
Also why does this give me an error because I used bool?
I need to use this sequential search algorithm, but I am not really sure how. I need to use it with an array. Can someone point me in the ...
2
votes
2answers
899 views
Sequential (comb) GUIDs for Oracle
We are in the process of switching from the C# Guid.NewGuid() random-ish guid generator to the sequential guid algorithm suggested in this post. While this seems to work well for MS SQL Server, I am ...
2
votes
2answers
453 views
Resharper Unit Test Runner executes unit tests sequentially or in parallel?
I would like to know if Resharper Unit Test runner runs unit tests sequentially or in parallell (each on its own thread).
I am using MBUnit test framework.
Thanks.
2
votes
2answers
147 views
SQL Server 2000, Do queries executed sequentially?
I am not sure if my question is related with the tool for executing the queries. (I am using Query Analyser, Access and AQT generally).
For example I have two queries.
SELECT * FROM Table1
SELECT * ...
1
vote
1answer
32 views
Synchronous service calls in Android
I'm working on application whose main responsibility is to contact remote server and display the data provided.
Service is Soap based. For that I use ksoap library, but let's cut to the case.
I've ...
1
vote
2answers
73 views
BizTalk NSoftware SFTP - Read first file only when second file received
I have a scenario where client drop an XML and a .FINISHED file. Client create the .FINISHED file once it’s finishes writing XML file. Both file have same name. As you can see, I can’t start reading ...
1
vote
1answer
32 views
How hector/cassandra handles sequential operations?
Using a hector Mutator I update some row over N sequential operation. Is there a guaranty, that changes happens in the order they where added to Mutator?
The simplest example, if I delete some row ...
1
vote
1answer
76 views
What are some examples of a sequential-decision tasks?
I ask this because I'm currently learning about Neural Networks as a subset of the machine learning algorithms
Just trying to get some intuition on what sort of problems out there are categorized as ...
1
vote
2answers
69 views
Artificial Intelligence: If there is such a thing as a “sequential-decision” task, what does a “non-sequential decision” task look like?
I have heard that neural networks are very good when implementing solutions to sequential-decision tasks. However, I assume that the qualifier "sequential" exists because there must likewise be a ...
1
vote
2answers
63 views
Sequential CSS3 animation
I'm wondering if it is possible to fade in a list of items sequentially using CSS3 only?
HTML would be something like this:
<ul>
<li>item 1</li>
<li>item ...
1
vote
1answer
162 views
Node.js synchronous HTTP client requests at timed intervals
I am a newcomer to node.js and what I would like to do is write a bot which fetches market prices every 0.5s and store them in an array. I.e. call something like the following but for it all to happen ...
1
vote
2answers
206 views
Determine sequential numbers in a list (Python)
I'm trying to find the most pythonic way to find out if numbers in a list are sequential. To give some background, I have a list of numbers gathered that exist in a folder, and I need to find out ...
1
vote
1answer
164 views
Android how to animate objects sequentially
I want to animate some multiple objects sequentially. As in, one animation should happen right after the previous animation stops.
I was using TranslateAnimations but it appears that all animations ...
1
vote
4answers
63 views
Cleanest way of working out next variable name based on sequential order?
Hope my title explains it ok! Here's more detail:
I'm creating an array which stores keys & their values. Eg.
test1 = hello
test2 = world
test3 = foo
What is the cleanest way of working out ...
1
vote
7answers
703 views
How to wait for one jquery animation to finish before the next one begins?
I have the following jQuery:
$("#div1").animate({ width: '160' }, 200).animate({ width: 'toggle' }, 300 );
$("#div2").animate({ width: 'toggle' }, 300).animate({ width: '150' }, 200);
My issue is ...
1
vote
1answer
120 views
How can I generate sequence diagrams from a big Java Project
I am just looking for a open-source software or plug-ins implemented for NetBeans or eclipse to generate sequential diagram for a big project. I know there are some software doing this issue such as ...
1
vote
1answer
102 views
Parallelizing a series of independent sequential lines of code
What is the best way to execute multiple lines of code in parallel if they are not dependent of each other? (I'm using OpenMP)
Pseudo code:
database->connect()
openfile("stuff.txt")
...
1
vote
3answers
175 views
JQuery start 2 callbacks after keyup
I have a problem with my code. In particular I want call sequentially 2 callback after keyup event.
$('myDiv').keyup(function(){
function1
function2
});
Is it possible waiting the loading of ...
1
vote
5answers
67 views
Conditional Concurrency (Mixing Concurrency with Sequentiality)
Greetings Overflowers,
I'm working with C# .Net 4.
I want to give priority to specific parts of my code to utilize concurrency while other parts can also do the same only if there is room (free ...
1
vote
1answer
278 views
Working with sequential numbers in SQL Server 2005 without cursors
I'm currently working on a project that needs to have a process that assigns "control numbers" to some records. This also needs to be able to be run at a later date and include records without a ...
1
vote
1answer
75 views
How do I add sequential access to my video stream?
I'm streaming .flv videos from my SQL Server with the code below. But from what I understand the whole video will be loaded into memory before being played. What I would like to do is add ...
1
vote
1answer
228 views
Will Team Foundation Build Server execute UnitTests sequentially or in parallel
We use TFS 2010 and Automated builds.
We also make use of MSTests.
I would like some concrete information about the build server's test execution method.
Will the test engine (on build server) run ...
1
vote
4answers
307 views
C++ Sequential search not finding the last element
So I have an input file. It consists of 40 numbers. The first 20 numbers are input into an array (I've checked this, they're actually there). I then close and re-open the input file. I compare the ...
1
vote
1answer
278 views
how to excecute Jquery functions in a linear fashion? (sequentially)
I am not sure how to describe this. I have a couple of divs on a page, something like:
<div id="Content">
<div id="SubContent" class="LoremIpsum">
some lorem ipsum text here
...
1
vote
2answers
182 views
sequential download using PHP and/or Jquery
Is it possible to create a web based script that would allow a user to sequentially download multiple files without causing the user to accept each forced download?
Potential Process:
User selects ...
1
vote
1answer
102 views
How do I create variables in sequence in common Lisp?
I have the following code inside a function that is reading in a file which is a map. I get an error that *numrows* is an illegal dimension. I think this is because lisp is processing these variables ...
1
vote
1answer
242 views
Android - Sequential audio playback?
Tried both soundpool and mediaplayer but cant quite manage to get sound files to play back correctly in sequence without overlap.. Need to be able to playback three randomly selected audio files in ...
1
vote
4answers
1k views
Trying to fadein divs in a sequence, over time, using JQuery
I'm trying to figure out how to make 4 images fade in sequentially when the page loads.
The following is my (amateurish) code:
Here is the HTML:
<div id="outercorners">
<img ...
1
vote
1answer
131 views
SQL Server “Group By” for an interesting case
I have a table like that
ID ORDER TEAM TIME
IL-1 1 A_Team 11
IL-1 2 A_Team 3
IL-1 3 B_Team 2
IL-1 4 A_Team 1
IL-1 5 A_Team 1
IL-2 1 ...
1
vote
3answers
209 views
Switching to sequential (comb) guids - what about existing data?
We have a database with 500+ tables, in which almost all the tables have a clustered PK that is of datatype guid (uniqueidentifier).
We are in the process of testing a switch from "normal" "random" ...
1
vote
1answer
112 views
Concurrent Generation of Sequential Keys
I'm working on a project which generates a very large number of sequential text strings, in a very tight loop. My application makes heavy use of SIMD instruction set extensions like SSE and MMX, in ...
1
vote
2answers
649 views
Sequential workflow console application template missing in VS2010 Ultimate Beta2
I am using VS2010 ultimate Beta2 and under Visual C# -> Workflow -> I don't see the Sequential workflow console application or state machine console application
Could someone please advise why these ...