Questions tagged [varying]
55 questions
0
votes
2 answers
Android: how do I create a listview screen with different content for each row
I'm looking to create a listview screen similar to the Sound Setting screen (in the built in Settings app, see image below), i.e I want some rows to have text + checkboxes, other rows to have text + "pop up" buttons, some rows should have text only…

peter3
- 1,074
- 13
- 22
0
votes
1 answer
Django - User Model for Dating site - Admin -Staff/Agency+ other users
I'm trying to make my first django app (a dating site) that consist of varying user models.
Users need to have fields like location,language,religion, height, preferences, family details horoscope etc.
Staff/Agency - users added by Admin from the…

art
- 1,358
- 1
- 10
- 24
0
votes
0 answers
PL/SQL update procedure not working with Varying IN list in WHERE clause
I created pl/sql procedure where the arguments are given indirectly through a string. But the update is not making changes in the table as it should. The code I am using is :
declare
ih…

user3201928
- 378
- 1
- 6
- 23
0
votes
1 answer
OpenGL - GLSL assigning to varying variable breaks the vertex positioning
I did a project in OpenGL version 3.2 once where I used a "sampler2DArray" to store multiple images with the same dimensions and rendered them using textured points.
Now I am trying to port that project to my gnu/linux computer. This computer only…

wefwefa3
- 3,872
- 2
- 29
- 51
0
votes
1 answer
Create a form input for varying sized list?
I have a form that has a drop down for up to 10 items:

kicksforlaughs
- 3
- 3
0
votes
3 answers
How can you output a varying argument in Python?
I am writing a function in Python.
So lets say I have 3 arguments in this function:
Function (arg1, arg2, arg3)
arg1 = arg2 * arg3
When the function is called, it is as such:
function(arg1=var1, arg2=var2, arg3=var3)
Now the thing is, these…

CodeHard_or_HardCode
- 267
- 1
- 5
- 15
0
votes
0 answers
Varying heights with different divs and screens
I've been searching for answers for some time, and I believe the answers might be here to be found, just that I'm not skilled enough to put all the knowledge together to fit my exact case. Here's the thing:
I have a page with a centered header and…

Mimla
- 1
0
votes
2 answers
Matlab matrix with different Row Sizes
I would like to create a matrix that has different row sizes but I'm not sure where to start.
I have a function that produces time signatures of 5000 photons. Not all those photons will produce meaningful time signatures. That function discards…

alvarezcl
- 579
- 6
- 22
0
votes
1 answer
default values/modifiers in postgres?
I've problem with default modifiers on postgres 8.4. (I think version is its not important)
I've debian ubuntu. When Im creating migrations on rails AR:
class CreateUserMails < ActiveRecord::Migration
def self.up
create_table :user_mails…

grissom
- 1
- 2
-1
votes
2 answers
What is faster - varying or manual interpolation in fragment shader?
What is faster - letting a varying to interpolate texture coordinates (and some other gradually changing coefficients) or calculating them manually in fragment shader?
One would think that the answer to this is obvious, but then I stumbled upon…

jayarjo
- 16,124
- 24
- 94
- 138