Tagged Questions
The automatic tag has no wiki summary.
46
votes
10answers
1k views
How much is too much with C++0x auto keyword
I've been using the new auto keyword available in the C++0x standard for complicated templated types which is what I believe it was designed for. But I'm also using it for things like:
auto foo = ...
23
votes
9answers
8k views
Automate Deployment for Web Applications?
My team is currently trying to automate the deployment of our .Net and PHP web applications. We want to streamline deployments, and to avoid the hassle and many of the headaches caused by doing it ...
16
votes
4answers
290 views
When auto is used against array, why it's converted to pointer and not reference?
See the below example:
int arr[10];
int *p = arr; // 1st valid choice
int (&r)[10] = arr; // 2nd valid choice
Now when we use auto against arr then, it chooses the 1st choice.
auto x = arr; // ...
16
votes
8answers
4k views
What is the single best open source automation tool for functional web testing
I wanted to check out a new open source tool for automated testing of a website. I prefer multi-browser support, even multi-platform.
14
votes
10answers
30k views
Creating a textarea with auto-resize
There was another thread about this, which I've tried. But there is one problem: the textarea doesn't shrink if you delete the content. I can't find any way to shrink it to the correct size - the ...
13
votes
5answers
6k views
I want my C# Windows Service to automatically update itself
Is there a framework that can be used to enable a C# Windows Service to automatically check for a newer version and upgrade itself? I can certainly write code to accomplish this, but I am looking for ...
12
votes
6answers
399 views
The new keyword “auto”; When should it be used to declare a variable type? [closed]
Possible Duplicate:
How much is too much with C++0x auto keyword
Have we (as a community) had enough experience to determine when and/or whether auto is being abused?
What I am really ...
12
votes
3answers
570 views
does `const auto` have any meaning?
I think the question is clear enough. Will the auto keyword auto-detect const-ness, or always return a non-const type, even if there are eg. two versions of a function (one that returns const and the ...
12
votes
5answers
15k views
How do I automatically update a Subversion working copy?
Does anybody know how I can automatically run svn update? If anybody has a script or something like that, could you show me an example?
11
votes
4answers
295 views
The relationship between auto and decltype
Is
auto x = initializer;
equivalent to
decltype(initializer) x = initializer;
or
decltype((initializer)) x = initializer;
or neither?
9
votes
5answers
149 views
java library to maintain database structure
My application is always developing, so ocasionally when the version upgrades some tables need to be created/altered/deleted, some data modified (generally some sql code needs to be executed). Is ...
9
votes
3answers
306 views
Argument type auto deduction and anonymous lambda functions
Lets say I have these lines of code;
std::vector<int> ints;
std::for_each(ints.begin(), ints.end(), [](int& val){ val = 7; });
However, I dont want to specify the argument type in my ...
9
votes
1answer
1k views
Auto compact the deleted space in mongodb?
The mongodb document says that
To compact this space, run db.repairDatabase() from the mongo shell (note this operation will block and is slow).
in ...
9
votes
8answers
840 views
Is there a way to run a process every day in a .Net web application without writing a windows service or SQL server jobs
We require that in a ASP.Net application, a .Net process should be invoked every day at a specified time automatically. This process needs to interact with the database (SQL Server 2005) and generate ...
9
votes
5answers
939 views
Tips on a tool to measure code quality?
I'm looking for a tool that can provide code quality metrics.
For instance it could report
very long functions (spaghetti code)
very complex classes (which could contain do-it-all code)
...
While ...
8
votes
3answers
313 views
can auto type deduction possibly cause conversion error?
I have a very simple parser rule (for AXE), like this:
auto space = axe::r_lit(' ');
auto spaces = space & space & space;
The last line compiles and works as expected in VC2010, but gives a ...
8
votes
1answer
213 views
auto storage class specifier in C++0x
Can auto keyword be used as a storage class specifier in C++0x?
Is the code legal in C++0x?
int main(){
auto int x;
}
8
votes
1answer
261 views
Is it possible to do the following with auto in C++0x?
Eric Lippert has written an article about Why no var on fields? in C#. I was curious, will we be able to do that in C++0x? ex.
struct mystruct_t
{
auto i = 0, d = 0.0, s = std::string("zero");
};
...
8
votes
4answers
135 views
Passing auto typed vars to function in D?
This doesn't work in D:
void doSomething(auto a, auto b){
// ...
}
I'm just curious, will this ever work? Or is this just technically impossible? (Or just plain stupid?)
In anyway, can this be ...
8
votes
6answers
282 views
Generate docs in automated build
Is there any way to generate project docs during automated builds?
I'd like to have a single set of source files (HTML?) with the user manual, and from them generate:
PDF document
CHM help
HTML ...
7
votes
4answers
4k views
Override and reset CSS style: auto or none don't work
I would like to override following CSS styling defined for all tables:
table {
font-size: 12px;
width: 100%;
min-width: 400px;
display:inline-table;
}
I have ...
7
votes
4answers
2k views
selenium WebDriver StaleElementReferenceException
i get this error when running my tests:
org.openqa.selenium.StaleElementReferenceException: Element is no longer attached to the DOM
any idea on how to solve the above exception?
this happen in my ...
6
votes
4answers
414 views
CSS: “display: auto;”?
The auto option that several CSS attributes give is really useful. However, there doesn't seem to be one for the display attribute. I would expect this to set the display attribute to the browser ...
6
votes
3answers
329 views
C++: Tool to reduce compile-time dependencies automatically
After reading about the pimpl idiom I was horrified!
Isn't there a tool out there that can inspect a .h/.cpp file and deduce what dependencies could be waivered?
6
votes
1answer
781 views
Get image slider to auto play
I am trying to get my own image slider to auto play with an interval of 4000 milliseconds. I've tried using setTimeOut but I cannot seem to get it to work. I would appreciate it if someone could help ...
6
votes
3answers
210 views
Automate Java installs on Unix
I'm currently working on self bootstrapping/configuring deployments for J2EE applications. My goal is to have the deployment install Java, App Server, and app deployment every time. Unfortunately I'm ...
6
votes
3answers
5k views
Remote deployment to Websphere 6.1.x using wsadmin
I am trying to remotely deploy a war file to a websphere application server. I understand this is possible to do using wsadmin, but I am a Websphere newb.
I know I can run wsadmin and connect using ...
6
votes
2answers
617 views
script to find pagerank of domain
how can I automate finding the pagerank of a domain? I came across this Python script but it no longer works. Seems Google doesn't like people automating this.
So, is there an alternative provider of ...
6
votes
10answers
1k views
web design PSD to html -> more direct ways?
At work I see one colleague designing a site in Photoshop/Fireworks, I see another taking this data, slicing it up and using Dreamweaver to rebuild the same from scratch.
It seems like too much ...
6
votes
6answers
586 views
auto c/c++
Has anyone ever seen the storage class auto explicitly in use in c/c++? If so, in what situation?
6
votes
4answers
4k views
Capistrano for Java?
I'm a big fan of Capistrano but I need to develop an automated deployment script for a Java-only shop. I've looked at Ant and Maven and they don't seem to be well geared towards remote administration ...
5
votes
1answer
52 views
Android binder generator fails
I have defined an AIDL file with my interface. Something like this:
interface IResPlugin {
int discoverType();
Map onClick( in int id, in Map state );
int getLayoutId(in int option);
int ...
5
votes
3answers
243 views
C++ cross platform build automation
I have a cross platform C++ project that targets and successfully compiles on Linux, OSX and Windows. I'm using GNU Make to handle the building on all platforms, gcc for compiling under Linux & ...
5
votes
1answer
433 views
UIAlertView disappears when app goes to background and come back to foreground
I am developing an iPhone application (iPhone with multi tasking support) in which I am displaying UIAlertView on error. When UIAlertView is about to get display my app is sent to background. Now, if ...
5
votes
1answer
142 views
How do I generate the following matrix and vector from the given input data in MATLAB?
Suppose I have the inputs data = [1 2 3 4 5 6 7 8 9 10]
and num = 4. I want to use these to generate the following:
i = [1 2 3 4 5 6; 2 3 4 5 6 7; 3 4 5 6 7 8; 4 5 6 7 8 9]
o = [5 6 7 8 9 10]
which ...
5
votes
1answer
2k views
Tool/framework for automated web app testing in Google Chrome browser?
Is an opensource/commercial tool/framework, available for automated web app testing in Google Chrome browser on Windows XP / Vista? ( An alpha/beta Tool is also OK)
Thanks
4
votes
4answers
209 views
Why can't auto be used as a template type parameter?
I've been playing around with C++0x's auto keyword and tried the following.
std::unique_ptr<auto> ptr(new int(0));
I tried compiling it with g++ 4.4.5 and got
error: invalid use of auto
...
4
votes
3answers
83 views
Linux: change OS source code OR automate launching a script
I'm a complete Linux newbie so please don't murder this thread with negative votes if my question is stupid.
Here's exactly what I want to do: have a script that, upon detecting that a new file has ...
4
votes
2answers
707 views
Android App auto-exit/timeout functionality
We've been working on a webapp for some time now which is designed to be accessed solely through our Android app. Obviously, the App itself is extremely lightweight -- mostly providing functionality ...
4
votes
2answers
267 views
Change all instances of object to iframe for IE using Jquery
I was wondering if it would be possible to use jquery to change all object tags on a site automatically to iframe for IE 8 and below. I would like this so that it can be xhtml 1.1 valid and not have ...
4
votes
2answers
119 views
Basics of automated tests?
Till now I've been testing my web (usually written in PHP) as well as desktop applications (normally Java or C#) manually. Now I read somewhere on the net about automated tests. I tried searching to ...
4
votes
3answers
344 views
Automatically update or delete record(s) after x time in coldfusion
I've searched all over the net for this. Hope that someone's got something.
How would a record in a database be updated automatically after x time n coldfusion?
I know how to manually do it by ...
4
votes
4answers
198 views
JS/php add for every minute
What i want to do is that every user gets 1 points every minute. Now i have the php code in the addpoints.php, and then i have tried myself with jQuery javascript:
function addpoints() {
var ...
4
votes
9answers
823 views
Programming language to automatically navigate website?
I've been programming for many years now, and I have just one question.
What programming language allows you to create programs which can automatically navigate websites and perform various actions? ...
4
votes
3answers
1k views
Is there any eclipse plugin which auto backup a Project every so and so minutes to an email a/c?
Is there any eclipse plugin which auto backup a Project every so and so minutes to an email a/c?
4
votes
13answers
835 views
Way to automatically see which functions can potentially return exception in c#
nothing more frustrating than to see your code crash in the debugger on a method which exceptionned and you didn't try/catch it.
Is there an easy way to scan through your sources and tag all ...
4
votes
4answers
673 views
How can I automate dpkg/apt-get?
I'm trying to create a script that automatically downloads packages for new servers. However, some things like 'mysql-server' can not installed automatically cause you need to configure them in the ...
4
votes
4answers
132 views
Is automatic upgrades a realistic feature to expect from enterprise Web applications?
Most of the work I do is with what could be considered enterprise Web applications. These projects have large budgets, longer timelines (from 3-12 months), and heavy customizations. Because as ...
3
votes
1answer
320 views
Android - How to start recording video automatically when calling the camera intent
The Android Dev has some easy code describing how to start the camcorder via Intents.
Now this is good if you just want to start up the camera and wait for the user to press the red "REC" button.
...
3
votes
5answers
104 views
Automatic casting
I have to write program that gets n number from user, and then calculates sum on this way: s = 1/1 + 1/2 + ... + 1/n.
I wrote this code:
import java.util.Scanner;
public class Test {
public ...