The same tag has no wiki summary.
0
votes
2answers
12 views
sql union same parameters for two where = how to change it to one parameter
I have this query
select last_name, job_id, department_name, country_name, hire_date
, sysdate, salary
from employees e
, departments d
, locations l
, countries c
where ...
0
votes
1answer
14 views
Same database, same table, same query, but different where clause
I am a very basic user, so be easy on me. Here's my problem, I am trying to get a count of the same column, but with different clauses. I would like 2 queries from the same database/table joined ...
1
vote
1answer
71 views
How to set TextView to other random TextView in same class?
I would like to have a TextView in my Android App be set to another TextView in the same class randomly. I tried this:
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pop ...
0
votes
1answer
95 views
Passing inserted value in a form textbox to display it in the same page in PHP
I have a HTML form with 6 textboxes that the user needs to fill and before register those values I'd like that the user Preview-them in the same webpage.
It's like a preview of the values inserted ...
0
votes
1answer
13 views
Check if div content already exists in another div?
I am creating a quiz in which I don't want the same question to pop up twice. If that happens, I want the page to update. So every time a question comes, the correct answer of the question will be put ...
0
votes
1answer
56 views
Twitter bootstrap modal shows the same content each time I call it
I have a link to modal a lot of times. In this modal I can choose data from drop down list. But each time I call it, it shows the data of drop down list I chose the first time.
Here is how I call ...
0
votes
0answers
17 views
Android: set same View size for all smartphones (Canvas)
I am new to Android development and my question is:
Is it possible to set the same size of the view for all devices when I am drawing with canvas?
I do not know or use the xml scripting for my app.
...
0
votes
1answer
23 views
SQL left and right parts list from a single list (All parts listed)
I have a part list for example:
PartNo, Side, LotNo, BatchNo
Side is either 'Left' or 'Right'. The LotNo and BatchNo for a left and right will match. If a part doesn't have a match, I need to ...
0
votes
0answers
11 views
How to multiply the values in the three dictionary having the same key?
I am facing problem to multiply the P_loc,P_dateloc,P_timeloc saved in the 3 dictionary(counts_loc,counts_dateloc,counts_timeloc) having the same key but diff values.
Below is my coding:
Dictionary ...
1
vote
0answers
51 views
Merge three csv files with same headers in Python
I have multiple CSVs; however, I'm having difficulty merging them as they all have the same headers. Here's an example.
CSV 1:
ID,COUNT
1,3037
2,394
3,141
5,352
7,31
CSV 2:
ID, COUNT
1,375
...
0
votes
1answer
52 views
Having the extra same layout across all devices. How?
I want to make a game with exact the same Layout across all devices. I'm familiar with dp, wrap_content and fill_parent. But they don't produce the EXACT same Layout.
Is there a way to make the width ...
5
votes
3answers
74 views
Creating new objects repeatedly on same variable
I suppose this is a very silly question but I've been looking around and couldn't find answers on the following questions. Really appreciate answers shedding light on this.
1) What happens to the ...
1
vote
0answers
17 views
Multiboot server with 5 OS all the same key? [closed]
i am a newbie when it comes to ssh, but everything i wanted to do was easy to find via google. Now i have a problem which i can't seem to find on google, or i am bad at it.
The thing is i did setup ...
0
votes
1answer
47 views
Multiple Lines in the Same Plot in R
Sorry if this is a repeat question but I couldn't figure it out from the other posts as I'm still learning R. I want to place the 3 stochastic lines on the plot but when I run my code it only plots ...
0
votes
3answers
15 views
Why does only the first div respond to function?
I'm creating an online quiz which will consist of three different answering alternatives in three divs called #useralt. All the divs will have the same id but different content. The div with the ...
0
votes
1answer
61 views
All objects in arraylist have the same value
Okay, so all I want to do is create a simple java program that has an arraylist full of objects, in this case bouncing balls, that can be added to in game. The way I want it to work is, you start the ...
1
vote
2answers
80 views
Return matching values, exclude the ones that aren't matching, remove duplicates MYSQL
I have a problem that I can't seem to solve. I have a table that tracks userID's and app ID's. The table looks like this:
Library:
ID userID appID
1 1 11122 ...
0
votes
1answer
57 views
Error --> Integers can only be combined with integers of the same class, or scalar doubles
I have the following two matrices:
fuzzySet
255 7 7
255 7 7
255 7 7
membershipMatrix
2.881749158360024e-04 0.999999819474077 0.904200609951489
0.0336048930092375 0.517034652401936 ...
1
vote
1answer
101 views
ruby on rails - delayed jobs with different process id updating the same column
I discovered the problem, it had nothing to do with locks.
It seems that in production, i had a jobs:work running permanently, that was called i dont know how!! so all the jobs proccessed by that ...
1
vote
1answer
115 views
informix insert trigger: update value on same table but different record
Is there any way I can get an insert trigger to update a value on the same table in a different record to the one being inserted? Informix does not seem to allow me to do this as I understand it ...
0
votes
1answer
128 views
Android SAX Parser - Same tag names on several levels
I've been looking for a solution in order to parse my xml that has same tag names on several levels. Here is a XML sample of what I have to work on (the sections are not static):
<xml>
...
0
votes
1answer
193 views
Use SQL Server to get all the data from XML nodes named the same
I have an XML file where the nodes that I need the data from are all named the same. I understand how to access the first (or second record) so the following query only gives me the second author ...
0
votes
2answers
61 views
How to “document.write();” on the same page?
Basically, I have made a form which allows you to input 2 numbers, and when you press the 'Add' button, the program writes the answer onto the screen, the only thing is when the answer is written, it ...
0
votes
2answers
230 views
Multiple android-menudrawer in same activity
I am curreny using the menudrawer from https://github.com/SimonVT/android-menudrawer.
When i try to display the menu from the top & bottom, with the apropiate gestures, i get only one response. ...
1
vote
1answer
97 views
301 Redirect URL with Trailing Slash to “Sub directory” with same name
The company I work for recently took over a site that is built in WordPress, apparently Google has indexed several pages with a trailing / that coupled with the fact that the previous company ...
0
votes
0answers
77 views
Error using imsubtract : X and Y must have the same size and class or Y must be a scalar double
i have generated a sobel operator applied image and a 1x2 operator applied image and i have analyzed their gradient magnitude and direction. now i am trying to subtract these 2 images with ...
1
vote
2answers
48 views
comparision within same array in matlab
Consider a 2 dimensional array arr,
col1 col2 col3
row1 12 1 6
row2 30 21 10
row3 91 39 40
row4 76 1 70
row5 30 ...
1
vote
0answers
143 views
Silverlight 5 Hyperlink Change style BasedOn same base style but different foreground
I am trying to set a different style to a hyperlink control. The new style is BasedOn the same base style as the previous style which was set to the control and Foreground property has been overridden ...
0
votes
2answers
133 views
Display Same classes with diffrerent images in Random order using jQuery
This is my HTML
<div id="abc">
<div class="asd">image1</div>
<div class="asd">image2</div>
<div class="asd">image3</div>
<div ...
0
votes
3answers
127 views
Replacing same fragment doesn't show anything
I'm trying to decide and show a fragment in activity's onResume method, but in case a previously added fragment is chosen again, then the activity goes blank.
Sample code (with one fragment):
...
0
votes
2answers
47 views
Way To See If 3 Dimensional Edges Are The Same?
Currently I'm trying to detect the silhouette edge of a 3d object. I know that you must first determine weather a face is looking at a position then find the edges that are shared between front and ...
0
votes
2answers
159 views
How to call private method by other methods?
I am confused of calling a private method by another method(public) belonging to the same class.Once i have been told i gotta create an object of that class and then call the private method via this ...
1
vote
1answer
39 views
Make copy more simple when source and dest dir are the same
I want to backup a file in some-other sub-director differs from my current directory like this
cp /aaa/bbb/ccc/ddd/eeee/file.sh /aaa/bbb/ccc/ddd/eeee/file.sh.old
as you see both source and dest dir ...
0
votes
1answer
69 views
Process query and bring result on the same page jsp
Process query and bring result on the same page jsp
i have created a signup page which includes label and textbox and register
on click of register button i have insert query(insert into sql db) which ...
0
votes
1answer
93 views
How do I change the content but not the tab with Spry Tabbed Pannels?
I have a site that consists mainly of Spry Tabbed Pannels.
Right now I have it working where you click on a different tab and the content changes with the change of tab. But now I have links inside ...
1
vote
2answers
340 views
Python client sockets connecting on the same server socket port
I am working for the first time on sockets with python.
I need to connect more than a client socket to the same server socket.
To do this I used the the following code:
import socket
import time
...
3
votes
2answers
235 views
Run multiple cassandra nodes (a cluster) from the same machine?
How can I run 3 cassandra nodes (actually a cluster) from my Ubuntu? I don't want to create 3 instances of VMWare/VirtualBox but instead, configure each cassandra node to listen to a different port. ...
0
votes
1answer
38 views
Combining sheets “1” thru “31” into “ALL” sheet in same workbook
I currently have a workbook set up to open multiple txt files in excel, filter all the data and import only what i need from it. Each import goes into a different excel sheet "1", "2", "3", .... ...
0
votes
1answer
80 views
filter 2 items of the same category (jquery)
This is what i want to ask a question about:
http://berckmans-designs.nl/filternew/index1.php
I made this filter system with some help from here but the problem is: I can't select 2 items from the ...
0
votes
2answers
58 views
Check if entries in a cell are in a cell arrary
Suppose I have a cell
A = {[3,0], [2,1]}
and a cell array
B = {[4,-1],[3,0];
[-1,4],[-3,5];
[3,0],[2,1];
[2,1],[-1,4]}.
I want to find the indices where both the first ...
0
votes
2answers
657 views
Select same column name in microsft sql server from multiple tables
If it's possible to write a query with select
SELECT * from table1, table 2, table 3 ...
where table1.column name like table2.column name like table3.column name
We don't know the name of our ...
1
vote
3answers
81 views
How to avoid referencing the same index in an array (Java)?
I am having problems with my arrays in Java. I am using arrays in classes as class fields, which are all static since I do not instantiate the class. I call an array like so (btw this is an array of ...
0
votes
4answers
39 views
Modify .left height depending on .right height
I created a test HTML Document
<!DOCTYPE html>
<html>
<head>
<style>
html {
background-color:#ff8700
}
#header {
width:99%;
height:70px;
margin-top:-10px;
...
0
votes
1answer
78 views
Is it possible to add the same ImageView multiple times to a screen?
I am using a RelativeLayout for my whole screen. The images on the screen appear and disappear almost randomly, and it often happens that the same image is displayed multiple times. However, when this ...
1
vote
4answers
450 views
running different jre versions on the same machine
I was wondering if there would be any implications (slowed performance, crashes and so on),
running a java 1.4 application and a java 1.6 application on the same machine
0
votes
1answer
41 views
Find the same file
Consider 1000 files in the folder.Now i want to find the same file in that folder.
I tired it by byte by byte comparison but it took long time to finish.
This is the code
fs1=new ...
0
votes
1answer
223 views
CListCtrl force LVN_ITEMCHANGED notification clicking on the same item
I have a CListCtrl that which parent handles item changing with
ON_NOTIFY(LVN_ITEMCHANGED, IDC_LIST_CTRL, OnItemchangedListCtrl)
Everything works great, except when I click on the same already ...
2
votes
4answers
250 views
jQuery select all with the same class with simple code?
I want to make a div, or to be more precise, an "aside" element which has an id or class to appear when another element that has the same class is clicked... I know that there is the standard class ...
1
vote
2answers
160 views
AWK command to change epoch time to date and list epoch on same line
So right now I have:
echo -n "Enter Path (or File if in directory) to Convert: " ; read FILE ; cat $FILE | awk '{print strftime("%c",$1)} {print}'
This prints the following, when a file or path is ...
1
vote
1answer
63 views
Want to make my SELECT query simple when querying 2 or more tables with identical format
I have 2 identical tables that have the same format but populated with different data.
I want to do a SELECT query with group by and order by but do not want to use a UNION since it makes my query ...




