Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
4answers
9k views

Multiple Firefox Versions on Same PC

I develop various web apps, use CSS and JavaScript extensively, and need to be able to test them on both FF 3 as well as FF 3.5. Of course, installing 3.5 overwrites 3.0, so I was wondering if its ...
7
votes
4answers
85 views

Hash a Range of Values

I know that I can hash singular values as keys in a dict. For example, I can hash 5 as one of the keys in a dict. I am currently facing a problem that requires me to hash a range of values. ...
6
votes
13answers
1k views

Only one return statement per method, even in this scenario?

I like the idea of having only one return statement per method. What do you do in this situation though? public static string ChopText(string Text) { if (String.IsNullOrEmpty(Text)) { // ...
5
votes
3answers
152 views

C++, are multiple-inherited constructors called multiple times?

Are multiple-inherited constructors called multiple times? And in what order are constructors called? Does this depend on the order in the inheritance list? Here is an example (it's only for making ...
4
votes
2answers
122 views

Python multiple regular expression replace

I'm a python newbie. I've been searching days long, but found only some little bits of my conception. Python 2.7 on windows (I chose python because it's multiplatform and result can be portable on ...
4
votes
2answers
101 views

Uploading multiple files using html5 and php

I have a file upload form set up with the HTML5 multiple attribute. However, the form still only uploads a single file. Do i need to create some sort of a looping function in the php or is there ...
4
votes
5answers
75 views

jQuery, how to use multiple cached elements

For my project I'm using cached selectors to speed up, and see improvements: (to reduce searches inside the document) var sel1 = $('#selector1'); var sel2 = $('#selector2'); how can I use cached ...
4
votes
4answers
63 views

How do I handle two separate yet very similar code-bases with git /github?

What is the best method to handle two separate, but very similar code-bases in git and git-hub? Background I have a git repository for a small shell script project. It only has 2 or 3 files of code ...
4
votes
1answer
111 views

Download multiple files vs single one big file&unzip via socket

I need my client to download 30Mb worth of files. Following is the setup. They are comprised of 3000 small files. They are downloaded through tcp bsd socket. They are stored in client's DB as ...
4
votes
1answer
81 views

Repeatedly match a perl expression for a specific/multiple number of times?

For the given string example: <a><b><c><d><e><f><g> I'd like to write an expression that will repeatedly match the first 5 <(?)> tokens and put them in ...
4
votes
4answers
890 views

Two values from one input in python?

This is somewhat of a simple question and I hate to ask it here, but I can't seem the find the answer anywhere else: is it possible to get multiple values from the user in one line of Python? For ...
3
votes
0answers
34 views

single google account authtoken for Multiple Google Data API in Android

Hello android enthusiast, i'm struggling to find solution to this problem. I'm planning to access the user's Google Calendar and Google Documents,(using google-api-java-client-v1.6.0). I can access ...
3
votes
1answer
136 views

Multiple forms with Firemonkey showing multiple items in windows menu

I'm currently experimenting with Firemonkey and came across this. When having multiple forms in my application, I get the same amount of items in my windows menu bar for one application (see ...
3
votes
2answers
86 views

Android: how to prevent multiple instances of an activity to be launched from a widget?

Steps to reproduce the issue: the user launches my app (name of the root activity: "mainActivity") => instance A of mainActivity he presses the home button (mainActivity running in background) he ...
3
votes
2answers
106 views

MVC3 dropdown list that displays mutliple properties per item

I want to have a dropdownlist in my view that displays a patient's ID, First Name, and Last Name. With the code below, it displays each patient's First Name. How can I pass all three properties into ...
3
votes
1answer
49 views

Multiple counts in one query

This query doesn't work. Can someone help me please? $query = "SELECT COUNT(WHERE Name='george') AS george_total, COUNT(WHERE Name='michael') AS michael_total, COUNT(WHERE Name='mike') ...
3
votes
1answer
72 views

XPATH select random number of nodes AND have multiple conditions

I need to select a random number of product details from XML and have multiple conditions. The below selects 8 products, but they are not random - how to make this random? $randomProducts = ...
3
votes
2answers
150 views

Multiple markers error in Eclipse (Android app)

I am getting errors in a program that was sent to me from a different developer. In Eclipse, I get errors that say "Multiple markers at this line... must override a superclass method". The "quick ...
3
votes
2answers
91 views

Java Generics: how can i assign a method's return value which uses multiple inheritance

I have a method which returns a complex generic type (which implements multiple interfaces) protected abstract <BOB extends Stan & Jan<I>> BOB getStanAndJanItem(); This compiles ...
3
votes
4answers
115 views

C# How to check if a string contains any of the elements in an string array?

I'm trying to implement a simple search function. I have a string array which contains all words which was typed in from the user to search. And I have another string which contains data like User ...
3
votes
2answers
106 views

Rails 3 - Multiple database with joins condition

My environment: Ruby 1.9.2p290, Rails 3.0.9 and RubyGem 1.8.8 unfortunately I have an issue when come across multiple database. The situation is this: I have two model connect with two different ...
3
votes
2answers
36 views

Can I construct a php page to run a query check against 30 mysql databases?

I host at hostgator and have about 30 mysql databases (all different websites that sit on the same server). For the last year.. no problems and suddenly, the last 2 days, I've seen 5 - 10 of these ...
3
votes
2answers
334 views

How can i do multiple file upload using Drupal 7 Form API?

I'd like to upload multiple files using Form API. '#type' => 'file' provides upload only one file. $form['picture_upload'] = array( '#type' => 'file', '#title' => t(''), '#size' ...
3
votes
1answer
146 views

How to configure web.xml for multiple login in a Struts2 web application?

I would like to develop a small test multi-login application using Struts2 and JSP. Basically: The application should have welcome page (i.e. index.jsp) anyone can access. This welcome page would ...
3
votes
2answers
151 views

Capturing video from multiple usb cams and showing in a UI side by side using JAVA + Java applet

I have to make 2 applets which will run in a TOMCAT like server and when I access the webpage[HTML page] at a client side, I have 2 cameras attached to that client PC and I want to show the videos ...
2
votes
3answers
16 views

Count columns according to dates in SQL

I need help with a SQL statement. The goal is to count the amount of alarms of each date. My table looks something like this: |----DATE----|---COUNTER---|---ALARM_ID---| |2012-01-01 | 30 | ...
2
votes
1answer
56 views

delete multiple entries with AJAX

I'm stuck on a though one. I'm able to delete 1 entry at a time using AJAX. Now I've made the possibility to select entries using a checkbox and delete them all simultaneously, this works great ...
2
votes
4answers
67 views

Many buttons do similar tasks - is there a way to simplify actionPerformed?

I currently have a set of buttons which when pressed, update an element of an array with their value and then close the frame which contains them. Currently, their actions are set out like this: ... ...
2
votes
4answers
86 views

SQL Server: Multiple table joins with a WHERE clause

I'm using SQL Server and I'm having a difficult time trying to get the results from a SELECT query that I want. I've tried joining in different orders and using subqueries but nothing quite works the ...
2
votes
1answer
48 views

Multiple apk approach for a game

I'm planning to use the Multiple apk approach to my current project, since it has a big number of drawables for every density and the apk file is big right now. Are there any pitfalls in using this ...
2
votes
3answers
79 views

MySql, inner join query, must match multiple rows

I am making a MySQL query where I want to retrieve an ID but only if I find a match for it in all the rows which I specify in the query. Table: view_layout_rows ID owner rows ...
2
votes
3answers
109 views

How to get multiple values from a single variable? - PHP

I'm trying to build a friend system for my website and it is set up something like this: User's Table: id name Friendship Table: member1 member2 I have values like this, member1 is the user's id ...
2
votes
2answers
59 views

Starting multiple upstart instances automatically

We use PHP gearman workers to run various tasks in parallel. Everything works just fine, and I have silly little shell script to spin them up when I want them. Being a programmer (and therefore ...
2
votes
3answers
48 views

Can you assign multiple variables at once in PHP like you can with Java?

I want to create 5 variables of type array all at once. Is this possible? In Java I know you can, but can't find anything about PHP. I'd like to do something like this: $var1, $var2, $var3, $var4, ...
2
votes
2answers
71 views

Javascript VisualBasic's WITH equivalent?

Can't figure out how to set multiple object elements at a time? For example, how to write myobject.field1 = 12; myobject.field2 = 13; myobject.field3 = 14; myobject.field4 = 15; myobject.field5 = ...
2
votes
0answers
136 views

Multiple upload in Uploadify with rename - how to send scriptData? SOLVED

At first, sorry for my bad english. I am using Uploadify with image cropper to upload and choose your own thumb, but I need to do a multi upload, not single. Now I´m trying to send before each upload ...
2
votes
2answers
84 views

SML: function with multiple outputs

I´m a newbie in SML and I´d like to update my function so that it has two outputs: a list AND 1 or 0. The function was proposed here: SML: Remove the entry from the List. It returns an updated list ...
2
votes
1answer
39 views

send to many files from an applet to an servlet

I need to send X number of files to my servlet from an applet, which is the best way to do this? And I need to send before the files, a java object populated. I need to do it all in a single ...
2
votes
2answers
44 views

Including part of a php file?

I have an individual file for each page on my site, which contains a "page-specific head code" section and a "body" section. I have a master file that contains a "global head code" section, the page ...
2
votes
1answer
66 views

Single or multiple databases? (Rails 3)

I am reasonably new to Ruby on Rails so I am not sure how to implement this. My understanding is that rails is not designed with multiple databases in mind, although I could use establish_connection ...
2
votes
2answers
67 views

Read .jasper file from target/jasper

I am trying to use Jasper using the jasperreports-maven-plugin. So you create your .jrxml in a directory src/main/jasperreports and the plugin compiles it and creates a .jasper file in target/jasper. ...
2
votes
1answer
90 views

Structure for multiple JSF projects with shared code

I have two JSF projects that share a lot of code - java classes, xhtml files, tag libraries, css and javascript files etc. My dev environment/platform consists mainly of Eclipse, Ant, Perforce and ...
2
votes
4answers
71 views

C file pointers, multiple reads on stdin

I have an existing program where a message (for example, an email, or some other kind of message) will be coming into a program on stdin. I know stdin is a FILE* but I'm somewhat confused as to what ...
2
votes
3answers
184 views

How to import products with multiple descriptions into magento

I am importing products from a 3rd party database into my magento site. I have found a great tutorial online for doing this in PHP. However, the tutorial does not describe how to assign multiple ...
2
votes
2answers
59 views

How could I give jQuery plugin multiple pre-set default options?

Say, I have a jquery plugin with default options that can be overridden just like any plugin. What I want to do is add multiple default options that can be called via the options or somewhere in the ...
2
votes
2answers
68 views

How to program a timer that keeps track of multiple events in Java?

I work at a place where students take tests in rooms. Each student's exit time is noted on a board, and I must remember to get them when their time is up. So I would like to write a Java program that ...
2
votes
2answers
102 views

Java Map class that can contains two or more keys for one value

I'm looking for a Java Map Class that can contains two or more keys for one value. It almost like MultiKeyMap in apache common collections, but it can use only one of the keys to retrieve the value ...
2
votes
2answers
84 views

Can a sass @mixin accept an undefined number of arguments?

I'm trying to create a sass mixin for transitions. This is what I have so far. @mixin transition($var) -webkit-transition: $var transition: $var I want to be able to pass it multiple arguments ...
2
votes
1answer
48 views

Creating a multi-dimensial array from data in three tables in MySQL

I have three tables in my MySQL database and I'm looking to retrieve all the data from each of them and store it in a respective array. How can I do this without using three separate SQL queries, e.g. ...
2
votes
1answer
86 views

Drag select in JList

In the Swing JFileChooser you can select multiple files by clicking on the first file, holding down the mouse button and dragging. Is it possible to enable this method of selecting multiple files in ...

1 2 3 4 5 11