The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
13 views

xsl increment counter conditional

I am trying to increment a counter when a condition is met, for example if a final_score is over 30, count = 1. so if 3 scores are over 30 the final_score should be 3. To get the scores i need to add ...
2
votes
1answer
24 views

Jackrabbit repository incremental backup

I'm using Jackrabbit v2.2.x. I want to know if is there a way to take incremental backup of a jackrabbit repository? I mean, just the delta (difference) based on date or something else. Actually the ...
0
votes
0answers
33 views

Incremental Online Backup failed with NullPointerException on 1.9RC2

I was testing your enterprise server 1.9.RC2 but found incremental online backup failed and message as follows: I can do a full backup on a different directory and also successfully do a ...
2
votes
2answers
51 views

Renaming a new folder file to the next incremental number with powershell script

I would really appreciate your help with this I should first mention that I have been unable to find any specific solutions and I am very new to programming with powershell, hence my request I wish ...
0
votes
0answers
17 views

Backup daily for MySQL, MariaDB or PostgreSQL [migrated]

Good day: I wonder if there is a program with which I can create daily backups with these requirements: The first time, make a full backup. The second time, only the changes since the last backup, ...
1
vote
1answer
23 views

Can't create an auto_increment primary key, when there is a foreign key which is auto_inc in origin

I've got 2 tables: INCIDENCIES: CREATE TABLE incidencies ( id_inc INT(7) ZEROFILL NOT NULL auto_increment PRIMARY KEY, empresa VARCHAR(40), maquina VARCHAR(20), ...
1
vote
1answer
46 views

How to add item transform to VS2012 .proj msbuild file

Based off this answer describing an item transform to convert image files from jpg to png, I made an item transform that converts .docx file to .pdf. When I call it from my projectname.proj build ...
-1
votes
5answers
47 views

How to store variable once program has terminated

I have a counter that increments every time the user enters a specific word. How do I store the variables value once the program has terminated so that it can be used when the user launches the ...
1
vote
1answer
38 views

Incremental table names

I'm currently trying to find some information with a query that will automatically update on a website every 24 hours - this involves a number of columns in a daily backup table that I need to pull ...
0
votes
0answers
34 views

Ctrl-I in Visual Studio 2010

The Ctrl-I "incremental search" feature is great in the sense that it avoids showing the Find dialog box (which obscures your screen). However, Ctrl-F does have an advantage in that it centres the ...
0
votes
0answers
17 views

zrm Incremental backup restore failed

I am restoring zrm incremental backup on remote machine giving me following error. BackupSet1:restore:INFO: restoring using command mysql --password="*****" --host="x.x.x.x" -e "source ...
2
votes
1answer
68 views

Plotting incrementally in R and not resetting

What options (and package) would you use to incrementally plot the results of a calculation? Imagine I want to plot the results of a computation that lasts for a very long time and I don't want to ...
0
votes
1answer
122 views

ASP.Net incremental page load call Javascript

I'm using the incremental page load pattern found here. I have a primary page that loads and displays a spinning wheel indicator, and calls another secondary page. That page displays HTML in the ...
0
votes
0answers
45 views

Fann C compilation using Visual Studio 2010

I am user of neural network, and I am looking for incremental back-propagation neural network for regression. I have tried batch back-propagation with Matlab, but the results are poor. Is it possible ...
1
vote
1answer
206 views

Batch script - Copy a folder and its content several times, then rename them

I'm looking for a simple batch script for windows 7 to copy a folder and its content from a destination, and paste it to another destination, x times, with incremental names. Example: Given a folder ...
0
votes
1answer
110 views

Transact SQL - Inserting All Dates With A Specified Gap In Minutes

I have a table of suitable rooms DECLARE @tblSuitableRooms TABLE ( RoomID BIGINT PRIMARY KEY NOT NULL, StartTime DATETIME NULL, EndTime DATETIME NULL, RoomStartTime DATETIME NULL, ...
2
votes
3answers
61 views

JavaScript incrementing by 0.5 - how?

I have a problem incrementing a number by 0.5. I've used "+=" operator but instead of incrementing my number, this adds "0.5" value in the end of number. The example is this: <script> ...
0
votes
0answers
71 views

rsync remove old backup on remote PC

Good day I use this script to backup my home PC to remote PC #!/bin/bash #Todays date in ISO-8601 format: DAY0=`date -I` #Yesterdays date in ISO-8601 format: DAY1=`date -I -d "1 day ago"` #The ...
0
votes
1answer
24 views

dump incremental file location

How does dump create the incremental backup? It seems I should use the same file name when I create a level 1 dump: Full backup: dump -0aLuf /mnt/bkup/backup.dump / and then for the incremental ...
1
vote
1answer
50 views

Git incremental sync of 2 repositories on different networks

In my setup, I have a Git repository that I work on. On another network (with no access to my main network), I have another Git repository that is read only that I want to keep synced up with the main ...
0
votes
2answers
159 views

Netbeans autobuild & deploy using ANT

I know this question has been asked before ( Can NetBeans auto-build java free-form (Ant) projects? ), but it was never answered. What i am looking for is a way to build & deploy my netbeans ...
0
votes
0answers
113 views

Incremental training of SOM network in MATLAB

I would like to train an SOM network incrementally. After each training, I save the network to a .mat file and load it next time when I generate some new data to train it again. I write something like ...
0
votes
1answer
139 views

SSIS: “Incremental” import?

I have to implement a processus that load three different database, transform data and load it's results into a new SQL database. I thought to SSIS(Integration services of SQL server). It would be ...
3
votes
3answers
250 views

Java - Incrementing through IP addresses in String format

I'm new to java and i'm trying to find a way of incrementing through an user input IP address range. For example from 192.168.0.1 to 192.168.0.255. However the way my application works at the moment ...
0
votes
0answers
37 views

Edit Distance taking into account string start

I've been looking at edit distances for matching surnames. Given that most the time the users will start typing the surname correctly, which algorithms most suit for this purpose? In other words, I'm ...
1
vote
0answers
65 views

The best incremental hash function for hash table

Which incremental hash function is the best for a generic hash table implementation ? I need to search a message, for example "ABC", in the hash table. If the message is in the hash table, then ...
2
votes
1answer
29 views

“Copying” third party databases into central mySQL and keeping mySQL up to date

I have a question which is what i believe to be quite complicated and would like to see what experts like yourselves think about my solution. Problem: I am collecting data from a number of third ...
0
votes
1answer
107 views

CouchDB Update Handler Won't Add Correctly

First of all I have read CouchDB Document Update Handlers (in-place updates) and have adopted the code in the answer to that question. I have an update handler that takes a query string amount and is ...
1
vote
0answers
62 views

synchronizing only updates to already existing remote files using Rsync does appear to work [closed]

I created a file using following command @server1: dd if=/etc/passwd of=sparse bs=512 seek=1 This created a file sparse with 512 bytes of initial sparse space in the file and contents from ...
4
votes
1answer
127 views

Incremental Pattern (RegEx) matching in Java?

Is there a way or an efficient library that allows for incremental regular expression matching in Java? What I mean by that is, I would like to have an OutputStream that I can send a couple bytes at ...
1
vote
0answers
266 views

Sqoop's incremental type lastmodified does not do incremental import

I’m using Sqoop v1.4.2 to do incremental imports with jobs. The jobs are: --create job_1 -- import --connect <CONNECT_STRING> --username <UNAME> --password <PASSWORD> -m ...
0
votes
1answer
92 views

incremental drawing

I'm new to Android and Java in general, although I'm quite experienced in C/C++ I'm trying to incrementally draw a waveform on a canvas in a separate thread, i.e. in each loop of the thread draw only ...
1
vote
1answer
155 views

How can the delay before displaying meteor collections be best addressed?

Before displaying the items from a collection, meteor seems to do some processing that leaves the client window without updates. You can see this live if you surf to http://madewith.meteor.com on a ...
0
votes
2answers
207 views

Java substring increments [duplicate]

Possible Duplicate: Java substring manipulation I'm new to java and am trying to print an incremental substring. What I mean by this is that the user inputs a string, and the string is ...
0
votes
1answer
85 views

Incremental hierarchical structure of representatives

I have an incremental clustering algorithm following this scheme: Let x a new data-point, and c the centroid that is closest from x if( distance(x, c) > threshold ) x becomes a new cluster ...
0
votes
0answers
51 views

How to maintain incremental obfuscation?

We are using Zelix to obfuscate different components of a large Java software. Until now we were excluding many parts from name obfuscation in order to avoid any type of incremental obfuscation ...
0
votes
2answers
89 views

How and who defines the APIs in agile enviroment?

I am pretty new to agile programming - with no practical experience. In the not agile Waterfall model its pretty clear to me. But i am puzzled how (and who does it) to define APIs which are always ...
0
votes
1answer
118 views

jquery .post event firing incrementally

I'm trying to make a comments-system on my site. I manage the ajax part and the comment is submitted from the form to the called php-file which then stores the data in mysql db. After storing the data ...
3
votes
2answers
158 views

Scala^Z3: Delete previous assertion

I want to use Scala^Z3 for incremental solving. In each iteration I want to a) add some part of the formula b) add an assertion The formula should be preserved for every following iteration, but I ...
3
votes
0answers
420 views

Incremental publishing on Eclipse Juno and GlassFish 3.1.2.2

After updating my Eclipse to Juno and latest GlassFish to 3.1.2.2 I've lost the option to incremental deploy applications from the servers tab (I see the server there and deploys and runs my Java EE ...
2
votes
2answers
937 views

Tornado Async HTTP returning results incrementally

From what I understand from tornado.gen module docs is that tornado.gen.Task comprises of tornado.gen.Callback and tornado.gen.Wait with each Callback/Wait pair associated with unique keys ... ...
3
votes
3answers
7k views

Difference between agile and iterative and incremental development

What are the difference between Agile and iterative and incremental development? Is Agile considered as iterative and incremental? Some info shown the Agile is the latest of iterative and incremental. ...
1
vote
1answer
50 views

How can I solve this autoncremental var case in XQUERY 1.0 FLOWR?

Pseudocode would be something like: let $myNode as node() := $node for $subpath in tokenize($path,'/') $myNode := $myNode/*[name()=$subpath] (: Here is the invalid line :) I know there is a ...
0
votes
1answer
93 views

Incremental hashing of sets

What is a good way to incrementally hash sets of elements? This has to happen so that elements can be added and removed in any order, and still equal sets have the same hash. The intent is to be able ...
2
votes
2answers
85 views

Setting up an incremental development enviroment for c++ game engine

Suppose I have written a game engine in c++. It was functions such as adPlayer(Vec3f position, Model playerModel), addExplosion(Vec3f position, Size explosionSize). Now, those functions can be called ...
1
vote
2answers
161 views

increment a variable based on loop count

I have a PHP function where an undefined number of images in a directory are being output to the browser. The images are being read in to an object. The issue I'm having is how the images are ...
3
votes
1answer
558 views

Real time, auto updating, incremental plot in R

Hi i'm trying to make a dynamic plot, sort of like auto updating, incremental, possibly real time. I want to accomplish something like this http://www.youtube.com/watch?v=s7qMxpDUS3c This is what I ...
0
votes
1answer
92 views

Modifying pagination offsets in Links on page

I want to create updated URL when Next 1000 button is clicked on the current page. i.e incrementing number by 1000 every time Next 1000 is clicked. e.g: If the current URL is ...
2
votes
1answer
610 views

Creating incremental backup with tar - --listed-incremental -g

I have problem with the tar linux program. I would like to create a incremental backup. I use following tar command for the first full backup: tar --create --gzip ...
0
votes
1answer
199 views

Rapid Application Development?

I'm studying for an exam on Thursday, and in the notes there is a differentiation between incremental development and prototyping. RAD in the notes is said to be an incremental methodology, but ...

1 2 3