0
votes
2answers
30 views
Is there a svn:keyword for “modification count” of a versioned file in subversion
The $Revision$ in CVS shows the version of a file, which based on modification count.
This is very convienient, as the modification count can be used as "Build Number", and for e …
0
votes
2answers
8 views
Showing 10 recent (same month/year?) items from a category (Wordpress)
I'd like to display 10 recent posts (probably from the current month or year) from the "featured" category in random order, i.e, rotate posts on each refresh/pageload.
I'd like to …
0
votes
3answers
55 views
Manipulating the content of an email message
Hi,
I am looking for a solution that will enable me to connect to a mailbox, obtain an email, apply specific modifications to the email body (for example, change the content), and …
5
votes
9answers
278 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 …
0
votes
1answer
39 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
…
0
votes
3answers
41 views
Porting LGPL library and selling platform-specific glue code
I want to port LGPL library to another platform. This would introduce some changes to the library itself (mostly #ifdefed pieces of code) and also would require me to write additio …
0
votes
2answers
83 views
Choosing forum software based on modifiability
I am aware that this question will be judged as a non-programming question but I would like to point out that my software decision is very largely based on the programming standpoi …
0
votes
0answers
147 views
How to Modify a restricted registry key under HKCU in Vista programatically?
I want to modify a restricted registry key in Vista under HKCU hive programatically. Can anybody help me out in this regard?
1
vote
6answers
196 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 secon …
1
vote
4answers
528 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. …
1
vote
4answers
457 views
Sharepoint Workflow Modification is not disabled
Hi Everybody,
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 …
0
votes
2answers
253 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") …
0
votes
1answer
58 views
Referencing controller methods in my index page in a scaffold-ed rails app
Hi, rails newbie here. I've started making a value based to-do list.
So far I've scaffolded my app like this:
dir> rails --database=mysql test1
dir> cd test1
test> ruby …
0
votes
2answers
226 views
TFS : show modification (new and edited files) since a given date.
Hi;
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 …
1
vote
5answers
188 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!
