0
votes
4answers
53 views
How do I upload data to Google App Engine periodically?
I'm writing an aggregation application which scrapes data from a couple of web sources and displays that data with a novel interface. The sites from which I'm scraping update every …
2
votes
3answers
49 views
Auto run unit test cases in Python
We have a python based web application along with its unit test cases. Our need is to automate the process of running unit test cases. They should run either after every checking O …
0
votes
1answer
18 views
Choosing a Windows Automation script language. Autoit vs Autohotkey.
I need to choose a windows automation program. Which one do you recommend? AutoIt, AutoHotkey, others?
I have read http://paperlined.org/apps/autohotkey/autoit_and_autohotkey.html …
0
votes
5answers
64 views
How can I replace a class with another class from another module in a lot of files without a lot of manual editing?
Basically, I have a lot of Python classes (representing our database schema) that look something like this:
from foo import xyz, b, c
class bar(object):
x = xyz()
y = b() …
1
vote
1answer
25 views
How to implement an automatic update detection model
Our software is not ever officially installed on Windows, and currently has an update model like this:
Connect to Internet
Click an Update Button
Connect to server-side program
S …
2
votes
5answers
53 views
Website QA Software
Is there any software that anyone can recommend that we run nightly to check for 404's and/or any other types of errors that might affect our production site?
0
votes
2answers
24 views
deleting rows containing listed numbers in excel
i have a list of numbers in a excel sheet . i.e . one collumn about 20 rows of numbers. lets say its called list A
then i have some multi row multi collumn excel sheet2 in which c …
2
votes
12answers
114 views
How to decide when to script something rather than do it manually?
Sometimes I find myself needing to do something that could be automated or could be manual. E.g. I just ran a particular script 8 times, making a small change in between each run. …
2
votes
4answers
87 views
Controlling rsync with Python?
I've been wanting to write a python script that would run several instances of rsync in sequence for backing up data to a different computer.
At the moment I just have this text f …
0
votes
1answer
22 views
removing some rows based on criteria - solving this by pivot tables
i have an excel data . the 3rd collumn contains phone numbers . i have to delete rows whose phone numbers have less than 10 digits . as the data is very large and not even one mist …
7
votes
17answers
552 views
To be a lazy developer or not to be a lazy developer?
Am I a lazy developer?
Is it being lazy to use automated tools, such as code generators and such?
Now, I could, if I had to, create all the data layers and entities I needed, but …
0
votes
2answers
22 views
Automatically compile any Java class when the file is dropped in a directory
I look at a lot of small Java programs. It would be convenient if I could set up a directory (or directory structure) on my Mac where any time I add a .java file, javac automatical …
1
vote
1answer
16 views
Automation for Generating Reports
We are using Stata to combine and analyze data for all of our agencies in a district each month. I'd like to somehow create reports of the data analysis automatically for these mo …
0
votes
1answer
21 views
“Class does not support automation” error when using own class from JScript
Hello,
I have a project which exposes object model to use by different types of clients. Written in .Net 3.5 it exposes classes to COM. Problem is while all seems to work from tes …
1
vote
3answers
56 views
Makefile to archive/link together auto-generated source files
Basically, I have a file 'blah.txt'. That files gets parsed by a 'compiler' and from it will generate N output .c files. I want a makefile that will from that .txt file generate th …
