Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
9answers
3k views

Removing items from a collection in java while iterating over it

I want to be able to remove multiple elements from a set while I am iterating over it. Initially I hoped that iterators were smart enough for the naive solution below to work. Set<SomeClass> ...
8
votes
3answers
3k views

How to execute an Ant task only when source files have been modified?

There must be an easy way to do this. I build a Flex app using ant that depends on a SWC library, which works fine except that it rebuilds the library whether it needs to or not. How do I tell ant ...
7
votes
2answers
402 views

Is it possible to create themes for android mobile

I have googled and gone through some of the posts, im not clear about creating the themes for the android phone. I just want to create the themes for the android mobile. Not necessary to be an app.As ...
7
votes
5answers
396 views

How can I determine when a file was most recently renamed?

I have a program that compares files in two folders. I want to detect if a file has been renamed, determine the newest file (most recently renamed), and update the name on the old file to match. To ...
6
votes
2answers
2k views

TFS : show modification (new and edited files) since a given date

How can I ask TFS to show me only modified files (new and edited files) in a workspace (or in a folder) since a given date. Is it possible? or do I have to go myself through all the history and build ...
4
votes
6answers
3k views

How to recursively find and list the latest modified files in a directory with subdirectories and times?

Operating system: Linux Filesystem type: ext3 Preferred solution: bash (script/oneliner), ruby, python I have several directories with several subdirectories and files in them. I need to make a ...
4
votes
3answers
325 views

Is there a Delphi option to 'lock' the design (layout) of a form against accidental changes?

After years of Delphi development I now have hundreds of forms shared throughout our Applications. Compilation ranges from Delphi 7 through to XE, thus one form might be opened in any IDE. The ...
3
votes
3answers
83 views

C# custom Iterator implementation - prevent collection modification during foreach loop

I created a custom collection that implements IEnumerable(T) and a custom IEnumerator(T). I also added an Add() method to the custom collection which looks like this: public void Add(T item) { ...
3
votes
3answers
188 views

Ada 95: Modifying output of dictionary program

I've found this dictionary by William Whitaker on the Internet and I like its parsing capabilities. But the output doesn't fit for me. The issue (challenge for me): Given an input form such as ...
3
votes
2answers
173 views

How can one overcome a concurrent modification exception in a GUI mediator?

FYI I have adopted the mediator pattern for my GUI in Swing on Java. Unfortunately, a concurrent modification exception is always thrown if user input requires a new window. It's because my code ...
3
votes
2answers
548 views

Using the Eclipse AST

I have recently come into the need of modifying some Java code (adding methods, changing the signatures of some fields and removing methods) and I think that all of this can be accomplished though the ...
3
votes
1answer
214 views

Paypal Subscription Modification

I was hoping someone could help regarding modifying a subscription price. I have a social networking site In which you originally could subscribe to a standard or premium account which varied in what ...
3
votes
2answers
342 views

Modify XML node but keep the XML file format intact

How may I modify a XML file without any change like attributes ordering, tag expansion and encoding? (My preference is DOM API)
2
votes
2answers
116 views

Prove that the running time of quick sort after modification = O(Nk)

this is a homework question, and I'm not that at finding the complixity but I'm trying my best! Three-way partitioning is a modification of quicksort that partitions elements into groups smaller ...
2
votes
4answers
60 views

Sorting only one column of a file

I have a file like this /device/000:004:00.7/vmkname = "vmnic8" /device/000:005:00.0/vmkname = "vmnic0" /device/000:005:00.1/vmkname = "vmnic4" /device/000:005:00.2/vmkname = "vmnic10" ...
2
votes
3answers
74 views

Best way to enumerate collection when elements may be deleted during enumeration

There is a typical collection of some class objects e.g. string for a simplicity IList<string> collection = new List<string>(); During the program flow some function needs to operate on ...
2
votes
1answer
171 views

Watching a property for changes

I need a function similar to gobject.io_add_watch but for a variable. For example it needs to watch the variable stop initialized to stop = False and when stop is changed to True it must call a ...
2
votes
5answers
828 views

add header(copyright) information to existing source files

I want to add our company's copyright information to all of our EXISTING source code files. The project is developed in Eclipse. so, for new files I can modify the settings as suggested here. But ...
2
votes
1answer
631 views

Django in Aptana: Have to restart server for changes in python code to take affect

Unless I'm going crazy, I didn't have to do this as of a few days ago. For example, changes to HTML files do not require a server restart to take affect, but when I do simple modifications to, say, my ...
2
votes
1answer
73 views

Is the ASP.NET session data changed?

List<Foo> fooList = Session["foo"] as List<Foo>; fooList.Add(bar); Does the call to Add() change the data that's in the session? Put another way: when I next pull "foo" from the ...
2
votes
6answers
601 views

What is the easiest way to track a change in a folder in Java?

I have a set of source folders. I use a Java class to build the distribution file out of these folders. I'd like to write another little class in Java which runs every half a second, checks if any of ...
2
votes
2answers
1k views

how to modify items in a Generic List using foreach?

I have the following Generic List which is populated with a list of string: List<string> mylist =new List<string>(); myList.add("string1"); myList.add("string2"); Say I want to ...
2
votes
8answers
531 views

How can I write a program that can detect by itself that it has been changed?

I need to write a small program that can detect that it has been changed. Please give me a suggestion! Thank you.
2
votes
4answers
823 views

c++ modify resources at runtime

Is it possible to edit resources for an executable at runtime programmatically? If so, how? If not, is there another program that can easily be used to modify resources? Thanks, Derek.
1
vote
1answer
26 views

“Read More” WordPress Plugin Modification?

I have this WP Plugin that I want to edit, but I just can't figure it out. What this plugin does is it will put a "Read More..." link for each post of the blog page after the first image and the first ...
1
vote
1answer
62 views

A* Search Modification

The Wikipedia listing for A* search states: In other words, the closed set can be omitted (yielding a tree search algorithm) if a solution is guaranteed to exist, or if the algorithm is adapted so ...
1
vote
2answers
81 views

Modifying a Bundle Manifest at run time

Is it possible (and if so, safe) to modify the MANIFEST of a bundle anytime during it's lifecycle (i.e. presumably only between INSTALLED and RESOLVED). I guess another way to ask the question would ...
1
vote
3answers
134 views

how to check in java, if contents of an imagefolder has changed

I have a folder containing image files.I need to check if any changes have been made to the contents of this folder.For the moment ,I am just checking if the names of files in this folder have ...
1
vote
1answer
222 views

how to achieve linux's inotify-tools shell methods on osx

To monitor a file in linux, I can use inotify-tools like this #!/bin/bash # with inotify-tools installed, watch for modification of file passed as first param while inotifywait -e modify $1; do ...
1
vote
2answers
113 views

Modification of the AST-tree of the GCC compiler

It is needed to gather the necessary information about the translation unit using the plugin for GCC and to modify AST on its base. I've already understood how to gather information. But I haven't ...
1
vote
1answer
89 views

Batch file string modification

If I had the following code: set alpha=abcdefghijklmnopqrstuvwxyz What would I have to do to %alpha% in order to result in only a, b, c, . . ., z?
1
vote
0answers
24 views

Modify all localizations of a nib file at once

I have a LoginViewController With username/password entry, a facebook login button and now I want to add a Google login button to all localizations. Is it possible to do all this only once and not for ...
1
vote
2answers
219 views

Tortoise SVN slow on show modifications

I used to see the list of modified files in less than a few seconds using "check for modifications" command in Tortoise SVN. But things have suddenly changed and now it's taking something like 1 or 2 ...
1
vote
1answer
136 views

IPB simple hook creating

i have some expirience with creating modifications for many forums but i creating plugin for IPB first time. I want to see example like: how to create plugin which will add some text in header ...
1
vote
3answers
157 views

Change a link on page using jQuery

I need a small help replacing the url in a given page. I am using athis board which uses some external content and it comes with some links like : "To learn more about this, visit our FAQ Page." My ...
1
vote
1answer
91 views

C# object modification

I think this is really a very lame question, but I guess on SO I will receive the answer faster than by googling it myself :) Let's say I have some class with a constructor: public class TestClass { ...
1
vote
4answers
304 views

Idea: SVN monitor for pending commits?

I want to ask if somebody heard about a SVN monitoring tool for this case: in the past we used MS SourceSafe with checkout & lock mechanism to avoid merges. One benefit of this was the "release ...
1
vote
4answers
947 views

Windows network packet modification

I'm looking to write a small program which will intercept network packets (on the local machine) and modify them before they go out on the network. I need to be able to modify the headers as well, not ...
1
vote
2answers
252 views

Library to Perform Link-Layer Packet Modification

Is there a library out there that will allow me to perform link-layer packet modification for both incoming and outgoing packets? Basically I want to do some transformations to a packet (for eg. ...
1
vote
1answer
301 views

Concurrent modification whilst traversing a ruby Hash

Suppose you had this: def wipeProduct(hash, nameToDelete) hash.each do |i| key = i[0] productName = i[1].first hash.delete(key) if productName==nameToDelete end end I'm not sure ...
1
vote
5answers
352 views

Batch file which deletes a file which last modification was not today

I just wanna know: How can i delete 'log.txt' if the last modification was not today? With a batch file. I'm just talking here about 1 FILE!
1
vote
2answers
769 views

Sharepoint Workflow Modification is not disabled

I am working on a Sharepoint Server 2007 State machine Workflow. Until now I have a few states and a custom Association/InitiationForm which I created with InfoPath 2007. In Addition I have a few ...
0
votes
2answers
16 views

Find files in order of modification time

I have a certain shell script like this: for name in `find $1 -name $2 -type f -mmin +$3` do Filename=`basename "ls $name"` echo "$Filename">>$1/order.txt done find command returns N number of files ...
0
votes
1answer
27 views

Inverting text data in MySQL

I would like to invert the text of certain records depending on if ValueA is greater than ValueB. If ValueA is indeed greater than ValueB, then I want to invert the contents of the field Content. The ...
0
votes
1answer
182 views

Highcharts Example Modification

Below is a link to the Highcharts example I want to modify. I would like to have the right 2 y-Axes become one. Currently, each line on the graph corresponds with one y-Axis because they have ...
0
votes
2answers
107 views

C# foreach on IEnumerable vs. List - element modification persistent only for array - Why?

In C#, I have noticed that if I am running a foreach loop on a LINQ generated IEnumerable<T> collection and try to modify the contents of each T element, my modifications are not persistent. ...
0
votes
0answers
39 views

how to refresh workspace using API and java code

i have just added a new package to my project via code. now i need to access the files from this project. i cant access the files that i have added as the workspace is out of sync with the changes. so ...
0
votes
3answers
411 views

MVC 3 Reload current page with modified querystring values

Background: I have an MVC layout (master) view which uses @Html.RenderAction to display a dropdown in the left side navigation panel. This dropdown will be displayed on all the pages of the site. ...
0
votes
0answers
51 views

Atheros wifi router IAPP protocol modification

I want to modify an atheros WIFI router according to a modified IAPP protocol. Is there any way out?
0
votes
1answer
663 views

how to unsquashfs or mount a firmware image?

i want to extract my routers firmware, and modify it. so i used bitsum's firmware mod kit. it seems there is no error. i can get image_parts directory also there is rootfs.img (squashfs image) file. ...

1 2