Tagged Questions
The common tag has no wiki summary.
7
votes
4answers
2k views
How to find most common elements of a list?
Given the following list
['Jellicle', 'Cats', 'are', 'black', 'and', 'white,', 'Jellicle', 'Cats', 'are', 'rather', 'small;', 'Jellicle', 'Cats', 'are', 'merry', 'and', 'bright,', 'And', 'pleasant', ...
6
votes
2answers
907 views
Common elements in two lists
I have two arrayLists with 3 integer. I want to find a way to return the common elements of the two lists. Has anynody idea, how can I achieve this?
6
votes
9answers
461 views
multiple classes with same methods - best pattern
I have a few classes in my current project where validation of Email/Website addresses is necessary. The methods to do that are all the same.
I wondered what's the best way to implement this, so I ...
6
votes
4answers
169 views
What would be the safest way to store objects of classes derived from a common interface in a common container?
I'd like to manage a bunch of objects of classes derived from a shared interface class in a common container.
To illustrate the problem, let's say I'm building a game which will contain different ...
5
votes
1answer
145 views
Calculate number of descendants recursively
I have a table with navigation that joins back on its self using ParentId. I am trying to calculate how many descendents each record has, I know that I need to increment a counter in the recursion, ...
5
votes
2answers
729 views
Find common chars in array of strings, in the right order
I spent days working on a function to get common chars in an array of strings, in the right order, to create a wildcard.
Here is an example to explain my problem. I made about 3 functions, but I ...
3
votes
2answers
40 views
What is high-resolution perfomance counter?
In the Win32 API there is a function QueryPerformanceCounter that queries the value of a very high-resolution performance timer.
What is "high-resolution performance timer"? Is it supported by ...
3
votes
3answers
92 views
Is it possible insert image to a code comment?
My question is probably a insane idea, however, it's very valuable when I write code for educational purpose.
Especially when code is relevant to math and physics subject, images inserted in comment ...
3
votes
2answers
257 views
Lisp - Is it good for web programming/applications (interactive) ? The way ruby is ? The way php is?
Is Lisp good for web programming/applications (interactive), the way ruby and php are?
Things to take into consideration would be:
Ease of use
Deployability
Difficulty (especially for a beginner to ...
3
votes
2answers
168 views
Lisp Format Procedure Applied to Arrays
I need some help with the format function and arrays.
My objective is to print a 2 dimensional array of N·N integer values as N integers per line. For example:
#2A((1 2 3)
(4 5 6)
(7 ...
3
votes
1answer
533 views
Is there a better way to find lowest common ancestor in a binary search tree?
I know similar questions have been asked before, but I think my solution is far simpler. Especially compared to [http://en.wikipedia.org/wiki/Tarjan's_off-line_least_common_ancestors_algorithm].
...
3
votes
1answer
766 views
Git commit to common submodule (master branch)
I've two or more projects (let's call them ProjectFoo and ProjectBar) having some common code that I put in a submodule.
My understanding is that if I commit changes to a submodule from within ...
3
votes
5answers
694 views
Finding all points common to two circles
In Python, how would one find all integer points common to two circles?
For example, imagine a Venn diagram-like intersection of two (equally sized) circles, with center-points (x1,y1) and (x2,y2) ...
3
votes
4answers
2k views
Common elements between two lists not using sets in Python
I want count the same elements of two lists. Lists can have duplicate elements, so I can't convert this to sets and use & operator.
a=[2,2,1,1]
b=[1,1,3,3]
set(a) & set(b) work
a & b ...
3
votes
9answers
536 views
Will including unnecessary php files slow down website?
The question might prompt some people to say a definitive YES or NO almost immediately, but please read on...
I have a simple website where there are 30 php pages (each has some php server side code ...
3
votes
8answers
1k views
How to find common strings among two very large files?
I have two very large files (and neither of them would fit in memory). Each file has one string (which doesn't have spaces in it and is either 99/100/101 characters long) on each line.
Update: The ...
2
votes
1answer
26 views
Get DOM element's name as <li> instead of [object HTMLLIElement]
I'm fetching <li> element like:
document.getElementById('cities-drop').children[0].toString()
result is: [object HTMLLIElement]
Is it possible with pure JS get result as:
li
or
...
2
votes
1answer
40 views
Android and Eclipse. Must I include service code in my app? Multiple apps are using the same service
I'm a relative novice to Android progamming and have already asked some basic questions about services ...
2
votes
1answer
45 views
ANTLR3 common values in 2 different domain values
I need to define a language-parser for the following search criteria:
CRITERIA_1=<values-set-#1> AND/OR CRITERIA_2=<values-set-#2>;
Where <values-set-#1> can have values from 1-50 ...
2
votes
3answers
179 views
PHP: Find common repeating string?
I have this situation in PHP. I have an array that has these keys for example, wires-1, wires-2, wires-3. I need a function or way for my program to read these keys, and find that the common word is ...
2
votes
1answer
199 views
How do I compile this legacy FORTRAN 77 code with *.h files?
I have a collection of .F and .H files that makeup a FORTRAN code. I'm running into trouble tyring to compile the .H files. The .H files contain a bunch of common blocks. An example of one of the ...
2
votes
3answers
178 views
Dictionaries in Python
I have a dictionary that has a place name as a key and as the value it has several lists of words, eg, 1 entry looks like:
{'myPlaceName': [u'silly', u'i', u'wish!', u'lol', [u'the', u'lotto'], [, ...
2
votes
3answers
60 views
Is it common practice to maintain a 'Available Accommodations' table in a reservation system?
I'm maintaining a reservation's system for a holiday park. I was wondering if it is common practice to keep a Available Accommodations table which could look like this:
Acc AvailableFrom ...
2
votes
1answer
66 views
Source code directories: “common” and “include”?
I've noticed that some sources have common and/or include as sub-folders. I am talking about C/C++ sources in particular. What are they supposed to contain?
2
votes
1answer
133 views
Is there a name for this type of algorithm?
I have a 2 dimensional array forming a table:
[color][number][shape ]
-------------------------
[black][10 ][square ]
[black][10 ][circle ]
[red ][05 ][triangle]
[red ][04 ...
2
votes
10answers
3k views
how to get variable names at runtime?
The use case is this:
public void testMethod(String para1, String para2, String para3){
if(para1==null){
System.out.println("para1 cannot be null");
}
if(para2)...
}
As the check ...
1
vote
2answers
29 views
What is happening here? Please explain/give detail as much as you can
http://www.google.se/search?Key1=Value1&Key2=Value2
Can i get some technical idea about this link??
I am aware of these.
The first "http://" describes the server using,
"www.google.se" is the ...
1
vote
2answers
37 views
where to place common jars in tomcat v6.0 server, which will accessible by all the apps deployed?
in tomcat 5 we used to place the commonly used jar in {HOME}/common/lib folder but in tomcat 6.0 the common folder has been removed. can somebody please tell me where to place the jars which will be ...
1
vote
2answers
118 views
Flash games should I use MP3 or WAV file format?
I'm developping a flash game and I'm wondering what audio format is more suitable (MP3 or WAV)?
I understand that MP3 is much smaller but it has worst audio quality when is compared to WAV files.
...
1
vote
1answer
59 views
MVC generic repository common dataColumn
I have a generic repository that I use for common things such as FetchAllData, GetbyID and so on... Anyway, I want to include a Deactivate(T Entity) method so that instead of deleting data I will just ...
1
vote
1answer
187 views
Common library for WP7 and Windows Project
Good day.
I try to build Windows And WP7 Applications, using one WCF service. For greater convenience i want to define all my contracts and interfaces in one common library. But, since WP7 project ...
1
vote
1answer
55 views
Why I can't set the common variable a property to be private or public?
In TCL's Itcl package there is a way to define a class and static members for that class using common keyword. But I have never seen that common variable was declared as private or public? Can we do ...
1
vote
4answers
159 views
Compare equal length lists to find positions that share the same element
I want to compare a list of lists that have the same length, but differ in their content. My script should return only the positions that share exactly the same element (in all lists).
For example:
l ...
1
vote
2answers
109 views
Android XML Common Elements between pages? Frames?
I am skinning an app and I was wondering if there was a way to keep common elements the same between XML layouts without copying the same code around all the time.
For instance, I have a header and ...
1
vote
1answer
139 views
android create common libraries
how do we create common libraries in android that can be used across applications? I want to write some classes which are accessible by all applications. Thanks in advance.
1
vote
1answer
39 views
Merge data from three tables
I have three tables, tbA, tbB & tbC with 2 cols. i would like to merge the three tables and group them by mID and produce a formated ourput like this...
mID,mAreaA,mAreaB,mAreaC
Structure of ...
1
vote
1answer
41 views
How to implement a common background UIView for rest of other views?
In my iPad application I have a menu view in the left side and content view in the right side and a tab bar in the top which has 5 different tabs. Now I want to show different views in the menu view ...
1
vote
2answers
328 views
print list of symbols in clojure
I was trying to print out a list of symbols and I was wondering if I
could remove the quotes.
(def process-print-list
(fn [a-list]
(cond (empty? a-list) 'false
(list? a-list) (let [a a-list] ...
1
vote
6answers
431 views
Getting the most common color of a image
I'd like to get the most common color from an image. I use Java and I want to have the most predominant color. Are there any cbir java library to make this?
Thanks
1
vote
1answer
93 views
Common shared CSS JS files in a directory shared between similar sites?
Backgournd info:
I have a ISS6 webserver hosting multiple websites. I have about 15 domains that could be considered "sister" sites that share styles, layouts, etc but they still will have their own ...
1
vote
1answer
79 views
Shared data in base class in asp.net
I have a set of aspx pages which are made of up usercontrols. Each usercontrol inherits from a base class. In that base class I want to put some common data objects (via EF) that I need access to in ...
1
vote
1answer
2k views
Common bottom layout in all the tabs of TabHost in Android?
I have a TabHost with 4-5 tabs. I want to have a similar bottom for all the tabs. Is there any way we can add a bottom to all the tabs? Or do I need to place the xml code in every layout file.
...
1
vote
3answers
219 views
How can I get the common ancestor directory for two or more files in Cocoa/Obj-C?
I have a bunch of files, either NSStrings or NSURLs (it doesn't matter; they are, for the most part, interchangeable), and I need a way to find the common ancestor directory. Does anyone know how to ...
1
vote
2answers
37 views
SOAP - Why do I need to query for the original values for an update?
I'm taking over a project and wanted to understand if this is common practice using SOAP. The process that is currently in place I have to query all the values before I do an update cause I need to ...
1
vote
1answer
119 views
Leopard Console logs for common files reference
I am using plugins for one of my Mac OS X(desktop) application. These plugins refer to a common file that contains base class implementation of both the plugins.
When the application refers to this ...
1
vote
3answers
1k views
ant common targets are not recognized by eclipse
I have added all common targets like (init,clean,getivy etc) in ./common/common.xml and added import file="${basedir}/common/common.xml" in build.xml.
When i build the project, its working fine. ...
1
vote
1answer
454 views
How to manage Tomcat 6 libraries into subfolders under %TOMCAT_HOME%/lib?
I use Tomcat 6.0.20 and JDK 1.6.0.13.
How can I load libraries from sub-folders of "%TOMCAT_HOME%/lib/" without taking the .jars out of sub-folders and putting them straight into ...
1
vote
6answers
1k views
Zend Framework a common file to put functions in that can be accessed from a view
I need to have a place to put some common functions that various view scripts will use such as creating some html by passing it a variable. I know about using helpers, but I want to be able to put ...
1
vote
2answers
756 views
.NET SOAP Common types
Is there a way when creating web services to specify the types to use? Specifically, I want to be able to use the same type on both the client and server to reduce duplication of code.
Over ...
0
votes
1answer
20 views
jQuery to validation of common phrases
So, I have this web form with validation as such:
jQuery("#firstname").validate({
expression: "if (VAL) return true; else return false;",
message: "<br /> First name please."
});
...