Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
268 views

Learning incremental compilation design

There are a lot of books and articles about creating compilers which do all the compilation job at a time. And what about design of incremental compilers/parsers, which are used by IDEs? I'm familiar ...
12
votes
4answers
979 views

Incremental linearizing of git DAG

I'm the author of GitX. One of the features GitX has is the visualization of branches, as can be seen here. This visualization is currently done by reading commits which are emitted from git in the ...
8
votes
3answers
1k views

Can standard Sun javac do incremental compiling?

Recently I started to use Eclipse's java compiler, because it is significantly faster than standard javac. I was told that it's faster because it performs incremental compiling. But I'm still a bit ...
7
votes
2answers
1k views

Incremental PCA

Lately, I've been looking into an implementation of an incremental PCA algorithm in python - I couldn't find something that would meet my needs so I did some reading and implemented an algorithm I ...
6
votes
1answer
156 views

Incremental graph algorithms

There are many basic graph algorithms such as topological sort, strongly/weakly connected components, all-pairs/single-source shortest paths, reachability and so on. Incremental variants of these ...
5
votes
5answers
142 views

How do I dynamically reference incremented properties in C#?

I have properties called reel1, reel2, reel3, and reel4. How can I dynamically reference these properties by just passing an integer (1-4) to my method? Specifically, I am looking for how to get an ...
4
votes
1answer
46 views

What is the easiest way to create an incremental array with Php?

I just would like to know what is the easiest way to create an incremental array? $myarray = array('test1', 'test2', 'test3', 'test4, 'test5', 'test6', 'test7', 'test8'); Of course I can use a ...
4
votes
2answers
76 views

Easiest way to perform incremental merge in mercurial

I have a project, that have branched sometime. Both branches have had a lot of commits since the split, and I want to merge them into one. Simply merging the two heads is not enough because it has too ...
4
votes
2answers
896 views

Best method for postgres incremental backup

I am currently using pg_dump piped to gzip piped to split. But the problem with this is that alle output files are always changed. So checksum-based backup always copies all data. Are there any other ...
4
votes
1answer
223 views

Is incremental building possible in combination with Continuous Integration?

We use TeamCity with subversion and MSBuild and we have a problem with the continuous build that is triggered by Subversion commits. The continuous build is set-up to do incremental builds (the ...
3
votes
4answers
209 views

incremental array in ruby, 0..40, [10, 20, 30, 40]

How can I offset this array so it only outputs every ten numbers? (0...40) [10,20,30,40]
3
votes
2answers
485 views

Incremental loading of images

In my app I need to download a lot of images for data in a ListView. I do lazy loading and it works rather fast, but still there is a 1-3 secs delay before the first image shows up. My research in the ...
3
votes
1answer
749 views

Solr Incremental backup on real-time system with heavy index

I implement search engine with solr that import minimal 2 million doc per day. User must can search on imported doc ASAP (near real-time). I using 2 dedicated Windows x64 with tomcat 6 (Solr shard ...
3
votes
1answer
184 views

Best way to support wildcard search a large dictionary?

I am working on a project to search in a large dictionary (100k~1m words). The dictionary items look like {key,value,freq}. Myy task is the development of an incremental search algoritm to support ...
3
votes
6answers
953 views

How to create an Incremental loading webpage

I'm writing a page dealing with a large amount of data. It would last forever until my resultant page loaded (nearly infinite) because the data returned is so large. Therefore, I need to implement an ...
3
votes
8answers
827 views

Incremental deployment of java web applications

We have following problem. Developers frequently need to make small changes to our web applications. When I say small, I mean things like correcting the spelling on a web page or similar. Generating ...
3
votes
5answers
851 views

Progressive rendering of a webpage in Internet Explorer 7

I'm trying to improve the user perception of page load time of some web pages. These web pages take about 5 seconds to complete loading and rendering. The overall time is fine; but on clicking a link ...
2
votes
1answer
44 views

How can I backup a MongoDB GridFS database the easiest way?

Like the title says, I have a MongoDB GridFS database with a whole range of file types (e.g., text, pdf, xls), and I want to backup this database the easiest way. Replication is not an option. ...
2
votes
1answer
85 views

MongoDB: get number of records in table before given entry / get record absolute ID

I know the _id (ObjectID) of some entry; is there any way to get its relative position from the table start / number of records before it, without writing any code? *(the stuff was required for ...
2
votes
2answers
114 views

How to sum incrementaly in Oracle 8?

I need to do an incremental sum in Oracle. My situation is the following: RecordID Value 1 1 2 2 3 5 4 10 And I need to get something like this: ...
2
votes
2answers
303 views

emacs style highlighting for incremental search in vim

In Vim, is there a way to enable on-the-fly highlighting for all matches when searching? If I enable incsearch and type "/something" it will highlight the first match only. If I enable hlsearch and ...
2
votes
1answer
94 views

Mercurial/Hg: Is there any way to clone a repository from the web incrementally?

I'm on dialup in lousy place (yes, it still happens in 2011), and trying to clone a huge repository. It starts without problem, but every time the dialup disconnects (which is unavoidable, it seems), ...
2
votes
3answers
220 views

Can you do parallel incremental building on a list of projects?

Is it possible to take a list of projects and parallel build them only if they aren't up to date? <Target Name="DependenciesLevel7" DependsOnTargets="DependenciesLevel6"> <Message Text="5 ...
2
votes
0answers
130 views

How to perform incremental tar backup of FAT filesystem

I use tar --listed-incremental=... to perform incremental backups on my computer, and for the most part it works like a charm. However, it doesn't seem to play well with my old FAT partition. It ...
2
votes
3answers
434 views

How to use jQuery to add a new row to a table, and assgin an incrementing id to it

I have an existing HTML table, part of a form where the user enters GPS points. The user also has the option to upload GPS data points. I'd like to have a button the user can press where some ...
2
votes
5answers
1k views

Backup MySQL database

I have a MySQL Database of about 1.7GB. I usually back it up using mysqldump and this takes about 2 minutes. However, I would like to know the answers to the following questions: 1) Does mysqldump ...
2
votes
3answers
727 views

Build Incrementally in VS 2005

We have a 50 projects solution in VS 2005. Is any way to get incremental build if nothing was changed? It is kind of doing it now, but it executes all prebuild and post build events for each ...
1
vote
1answer
27 views

Programming toolchain supporting “Incremental computing” (maybe even C/C++)

I'd like to write algorithms, that prepare results for big data sets. Than, when each dataset changes, incrementally update all affected outputs. It's called : Incremental computing. Are there ...
1
vote
1answer
40 views

suggestions of books about incremental data clustering [closed]

Does anyone have a suggestion of any relatively recent and good book about data clustering ? I'm more specifically looking for incremental clustering. Thanks.
1
vote
0answers
44 views

Incremental Variable for Groups of SharePoint List Items

I am having issues visualizing and implementing an incremental variable for groups of list items as they are added to a custom SharePoint 2010 list. Essentially, I want to give users the ability to ...
1
vote
3answers
87 views

Incremental Assignment (Basic C)

I have been working with C++ for many years, but just realized something fishy about incremental assignment. I have this snippet a = 4; b = 2; c = 0; c = c + a > b; printf("a: %d\tb: ...
1
vote
2answers
107 views

Need Arithmetic Progression Formula

I'm having trouble trying to figure out arithmetic progressions. I'm looking for a formula with an output that increases by 100 more than it's last increase... like this: 100, 300, 600, 1000, 1500 So ...
1
vote
2answers
88 views

Eclipse makes incremental build do not using pom file properly

I have quite non-standard web app configuration: my web.xml file is located not in the WEB-INF folder, but is copied by maven from some another place (please don't ask why). For that I'm using ...
1
vote
2answers
112 views

How does MSBuild check whether a target is up to date or not?

MSBuild emits following message for up to date targets: Skipping target "MyTarget" because all output files are up-to-date with respect to the input files. How actual check is performed?
1
vote
1answer
69 views

svn --incremental: How to use it and what it does?

I've been looking at SVN manuals but unable to find out simple usage examples or explanations of the "--incremental" option for "svn log" and "svn st". I'm writing an open-source SVN GUI front-end so ...
1
vote
2answers
72 views

How to manipulate with incremental names of fields?

How to manipulate with incremental names of fields? For example: myBitmapField1 myBitmapField2 myBitmapField3 ... Is a way to add them to FieldManager in a way like this or similar: int i = 0; ...
1
vote
1answer
67 views

how to add a number onto a variable name and cycle upward: x1 x2 x3 etc in jQuery

i need to change a variable name each time a piece of code loops, and increment it by one. i'm not sure how to append it onto the variable name, so in my example each time it loops ( once for each ...
1
vote
4answers
97 views

Are there any incremental (interactive) shell utils? I.e. “online” sort, wc etc

Are there there versions (drop-in replacements) of the standard shell utils that displays (partial) results updated on-the-fly (perhaps to stderr)? Say I want to do this: du ~/* -s | sort -rn | ...
1
vote
4answers
78 views

Drawing lines at increasing angles

I'm not very good at math or geometry, but I want to draw some line segments at increasing angles. What I want to draw is something like when you hold your hand up and spread your fingers apart: lines ...
1
vote
1answer
195 views

can I make/build VB6 (aka classic Visual Basic) exe file in incremental, fast manner?

I probably am not the first one to observe that VB6 "run with full compile" is fast and nice (hence obviously an incremental, compile what is needed process) whereas the Make exe takes a long time. ...
1
vote
0answers
128 views

Need to modify dbmaintain script to handle mysql syntax change

We use dbmaintain to help automate sql table maintenance in our web service project. I just ran into a tricky issue where an upgrade to version 5.5.8 of mysql resulted in a syntax change that broke ...
1
vote
1answer
435 views

Incremental update of docs in solr

I have a table called as EMP with ID and Name as fields and it has 2 records. I have formed the xml doc as <add> <doc> <field name="ID">1</field> <field ...
1
vote
5answers
377 views

Track changes to SQL query in real time

Here is my situation: 1) User A must monitor the results of an sql query Q. 2) User B can modify data that may change the results of Q 3) running Q on the entire database is slow What I would like ...
1
vote
3answers
204 views

incremental SQL query

My application has a fixed set of SQL queries. These queries are run in polling mode, ever 10 seconds. Because of the size of the database (> 100 GB), and the design (uber normalized), I am running ...
1
vote
1answer
924 views

Mysql incremental Backup

Can anyone help me to take incremental backup in mysql. i had some idea about that but it is not cleared in my mind , please give solutions in steps Thanks in advance!!! Riddhi
1
vote
1answer
641 views

Linq to SQL: Varbinary(Max) incremental reads

In SQLServer 2008 stored procedures, SUBSTRING can be used to return only part of a varbinary(MAX) column at a time from a query. Is a similar feature available when using LINQ To SQL via C# directly ...
1
vote
1answer
90 views

create an auto-incrementing result column in oracle

I'm trying to produce the following results: emp_no, book_no, book_id Where emp_no and book_id are the actual columns on the table, but book_no is a value that is incremental, for example: ...
0
votes
4answers
45 views

Incremental JSON Parsing in C#

I am trying to parse the JSON incrementally, i.e. based on a condition. Below is my json message and I am currently using JavaScriptSerializer to deserialize the message. string json = @"{"id":2, ...
0
votes
2answers
59 views

MonoTouch: How to save a huge PDF downloaded from an URL incrementally?

I need to download a huge PDF file from an URL in my MonoTouch iPhone/iPad newsstand app. The PDF is too big to fit in memory, so I need to save it incrementally with NSData. My idea is the ...
0
votes
1answer
36 views

is there a way to generate “incremental” patch set in gerrit using git?

Firstly, I have one pacthset1 for commitA, then I push the pacth set to gerrit for review. Then, I made some additional new changes by amending commitA, how could I separate these new changes from ...

1 2