4
votes
2answers
97 views
Is it possible to match with decomposed sequences in F#?
I seem to remember an older version of F# allowing structural decomposition when matching sequences just like lists. Is there a way to use the list syntax while keeping the sequen …
1
vote
3answers
102 views
Sequential Guid Generator C#
Is there any way to get the functionality of the Sql Server 2005+ Sequential Guid generator without inserting records to read it back on round trip or invoking a native win dll cal …
1
vote
2answers
62 views
R: 0-1 sequence without spaces?
Spaces are redundant when reporting a binary sequence. This code
x <- '1 0 0 0 0 0 1 1 0 1 0 1 1 0 '
y<-gsub(' +', '', x)
does the job so I can copy and paste from R. How …
0
votes
1answer
30 views
Hibernate does not generate identifier when using Oracle sequence
I have the following mapping
@Entity
@SequenceGenerator(name="sacpSequenceGenerator", sequenceName="SACP_SEQ")
public class Sacp {
private Integer id;
@Id
@Generate …
0
votes
3answers
46 views
How to make a sequence diagram for this?
A group diary and time management system is intended to support the timetabling of
meetings and appointments across a group of coworkers. When an appointment is to be
made that inv …
2
votes
2answers
27 views
Is it possible to have complexType and elements inside but without the sequence part
I hava a xml doc (and complex element) that is similar to this example:
<xs:element name="employee">
<xs:complexType>
<xs:sequence>
<xs:element name="fi …
1
vote
4answers
62 views
Pseudorandom Sequence Generator not just a number generator.
I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.
And here's wh …
5
votes
8answers
244 views
How to design table that can be re-sequenced?
I need to make a design decision about database. The requirment is that one database table has an *AUTO_INCREMENT PRIMARY KEY* field called id. By default, each row is shown to use …
1
vote
2answers
94 views
Transform this Clojure call into a lazy sequence
I'm working with a messaging toolkit (it happens to be Spread but I don't know that the details matter). Receiving messages from this toolkit requires some boilerplate:
Create a …
0
votes
1answer
32 views
How to use @GeneratedValue in a non pk field
Hello,
I would like to know how we could use a sequence in JPA. We have a non-pk field which value must come from a sequence in DB. How could I update that value updating the enti …
0
votes
2answers
62 views
Geometric sequence puzzler
The following problem has been puzzling me for a couple of days (nb: this is not homework).
There exists two geometric sequences that sum to 9. The value of their second term (t2) …
0
votes
3answers
44 views
iPhone Syncing a time sequence with music
Hey
I'm using AVAudioPlayer to play music in my iPhone app.
In a class that I wrote I have an array that contains random ascending integers. (2, 4, 9, 17, 18, 20,...)
These inte …
3
votes
3answers
80 views
MySQL: Add sequence column based on another field
Hi all,
I'm working on some legacy code/database, and need to add a field to the database which will record a sequence number related to that (foreign) id.
Example table data (cu …
0
votes
1answer
21 views
SCORM 2004 Sequencing… what am i doing wrong (Passed automaticaly in LMS)
Dear friends... help me please... see my manifest above..
I believe it's correct but still enter to the course in LMS and the items mod01, mod02 and mod03 show "passed" and the se …
3
votes
4answers
128 views
C# - Append Number To File Being Saved
I have created a screenshot program and all is working great. The only problem is, I am not sure how I can make it so the screenshots are saved with appending numbers.
Example: …
