Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
11answers
2k views

Which is better, return value or out parameter?

If we want to get a value from a method, we can use either return value, like this: public int GetValue(); or: public void GetValue(out int x); I don't really understand the differences between ...
12
votes
2answers
4k views

How is values() implemented for Java 6 enums?

In Java, you can create an enum as follows: public enum Letter { A, B, C, D, E, F, G; static { for(Letter letter : values()) { // do something with letter } } } ...
7
votes
5answers
6k views

Java enum valueOf() with multiple values?

I have a problem in Java using Enums. I have read the documentation about assigning value parameters to Enums. But, my question is what about multiple values, is it possible? This what I would like ...
6
votes
2answers
13k views

Getting rid of axis values in R Plot

i was just wondering if there was a way to get rid of axis values, either the x axis or y axis respectively, in an r-plot graph. I know that axes = false will get rid of the entire axis, but i would ...
5
votes
1answer
129 views

Can Clojure's STM's history of values be accessed?

Given that the STM holds a history of say 10 values of refs, agents etc, can those values be read ? The reason is, I'm updating a load of agents and I need to keep a history of values. If the STM is ...
5
votes
2answers
189 views

Serialization no null values

Lets say i have a class [Serializable()] public class Car { public string model; public int year; } I serialize that to disk named "car.xx". Then i add a property to my Car class so it ...
5
votes
4answers
272 views

python dictionary values sorting

I have 2 dictionaries, dict1 and dict2 which contain the same keys, but different values for the keys. What I want to do is for each dictionary, sort the values from largest to smallest, and then ...
5
votes
2answers
727 views

Processing multiple values for one single option using getopt/optparse?

My question: Is it possible to fetch multiple values for one option using getopt or optparse, as shown in the example below: ./hello_world -c arg1 arg2 arg3 -b arg4 arg5 arg6 arg7 Please note that ...
5
votes
2answers
2k views

XStream parse attributes and values at the same time

I have the following XML <search ver="3.0"> <loc id="ARBA0009" type="1">Buenos Aires, Argentina</loc> <loc id="BRXX1283" type="1">Buenos Aires, Brazil</loc> ...
5
votes
8answers
325 views

if($ext == ('zip' || 'png')) { echo “Is it possible ?” }

I'm currently writing sort of a download manager and I was asking myself if that was possible: if($ext == ('zip' || 'png')) { echo "Is it possible ?" } It returns true everytime, so I guess it's ...
5
votes
16answers
458 views

How have your coding values changed since graduating?

We all walked out of school with the stars in our eyes and little experience in "real-world" programming. How have your opinions on programming as a craft changed since you've gained more experience ...
5
votes
3answers
2k views

iterator adapter to iterate just the values in a map?

I'm just getting back into C++ after a couple of years of doing a lot of C#, and recently Objective C. One thing I've done before is to roll my own iterator adapter for std::map that will deref to ...
4
votes
2answers
39 views

oracle table_privileges values

Does anybody know the values that are given in the table_privileges? I already found out what "A" means. But I did not find out for what the "S" stands for. I think this isnt documented. It has ...
4
votes
5answers
128 views

Getting public fields (and their respective values) of an Instance in Scala/Java

PHP introduces a method that allows you to pick out all public values of an instance. Is there any way to do this in Scala? That is to fetch all values of all public fields of an instantiated class ...
4
votes
1answer
327 views

Is it possible to access a string-array item in Android?

snip-code from values/string.xml: <array name="categories"> <item name="today">Today</item> <item name="life">Life</item> <item ...
4
votes
1answer
161 views

Assigning and Passing Sessions Variables Between Subdomains

I am going to create a site that will have have multiple subdomains. For an example: shop.domain.com blog.domain.com news.domain.com account.domain.com I would like to know if session variables ...
4
votes
1answer
100 views

How can I display the most common value sequence in MySQL?

Lets say I have a table like this. A | B ----- 1 | 4 7 | 8 1 | 3 1 | 2 4 | 5 3 | 5 2 | 5 7 | 8 Even though 1 is the most common value in column A and 5 is the most common value in column B (which ...
4
votes
3answers
319 views

Jquery Validator - check input against a list of accepted values

I would normally just do this with a drop down list but the client has requested that it be a text input... Basically, I'd like to use Jquery validator to check that a user has entered 1 of 50 valid ...
4
votes
5answers
309 views

c# - Yes / No value of System

Is there a way I can get the Yes / No value of the System Language in the .Net framework? I don“t want to make language files for each language when I only need Yes & no... Thanks!
4
votes
2answers
2k views

How to sort an associative array by its values in Javascript?

If I have the associative array: array["sub2"] = 1; array["sub0"] = -1; array["sub1"] = 0; array["sub3"] = 1; array["sub4"] = 0; Then what is the most elegant way to sort (descending) by its values ...
4
votes
2answers
60 views

Returning values

I have a method like below public List<aspnet_Roles> GetAllRoles() { var rolesList = _dbProfile.aspnet_Roles.ToList(); return rolesList; } In this method first all the roles from ...
4
votes
2answers
214 views

Non-initialized vs null values of reference types

Is there a difference between reference type variable being non initialized or having null value? I read somewhere that non-init means null but on other place I read something else. Thanks!
4
votes
3answers
149 views

C++ function using a kind of bitwise: I'll get duplicated values?

this is my C++ function that uses a kind of bitwise: int genkey(const unsigned char a,const char b,const char c ) { int val=0; unsigned char *p= reinterpret_cast <unsigned char ...
4
votes
4answers
165 views

Scaling values in PHP

I cant get around on how to express this is PHP. I have 100 and 420 as my min and max value that I wish to obtain. Than lets suppose I have: 1000 4534 34566 123145 12312265 Now, how can I say: ...
4
votes
1answer
2k views

Display Django values() on Foreign Key in template as object instead of its id

I have a queryset in Django that calls Model.objects.values('item')... where 'item' is a Foreign Key. class Words(models.Model): word = models.CharField() class Frequency(models.Model): word = ...
3
votes
1answer
31 views

Django: SQL query with distinct on model function

Hi Stackoverflow people, in my current project, I have the following model structure: class Project(models.Model): student_id = models.ForeignKey(User) class_a = models.ForeignKey(ClassA) ...
3
votes
2answers
115 views

C# - custom triangle class, call for values

I'm trying to create a custom class to hold three vertex positions that define a triangle to draw and subdivide. The problem I'm running into is how to make sure I return the correct values. here's ...
3
votes
4answers
97 views

Converting from Array of Arrays to Single Array

How do I make this: array(2) { [0] => array(1) { ["bleh"] => int(109720) } [1] => array(1) { ["bleh"] => int(112439) } } into this most efficiently? array(2) { 0 ...
3
votes
2answers
107 views

Find mininum not used value in mysql table

I have a MySQL table like this: +--------+-------+ | Server | Port | +--------+-------+ | 1 | 27001 | | 2 | 27002 | | 4 | 27004 | +--------+-------+ How you can see - here was 27003 ...
3
votes
2answers
191 views

missing values - Hot Deck neighbour method

I'm having a problem with R code, rather, with missing values. Don't know actually, how to impute those values using simple Hot Deck method. Like, example, having these data. 1 10000123 111 ...
3
votes
1answer
109 views

My SQL: rewriting comma delimited data to a structured table

I have a table which consists of the headings Category and Subcategories Within the subcategories heading for each category I have a comma separated list of subcategories. I would like to rewrite the ...
3
votes
1answer
97 views

Replacing NA's with asterisks (*)

I have a data set which I read from my a .csv file. After some editing work, I now need to write it as a .txt file with (i) all quotes removed (ii) every NA in the whole file to be replaced by an ...
3
votes
2answers
229 views

Testing multiple TComboBox values at once

I'm a noob at Delphi but please help. I have 7 TComboBoxes on a form. Their values are assigned to them using a SQL query from the same table called Numbers. procedure TForm3.Button4Click(Sender: ...
3
votes
4answers
207 views

Java HashMap and underlying values() collection

I was wondering if the Collection view of the values contained in a HashMap is kept ordered when the HashMap changes. For example if I have a HashMap whose values() method returns L={a, b, c} What ...
3
votes
4answers
282 views

Extracting values from comma separated lists

When given a list of comma separated values like 3, asdf, *#, 1212.3, I would like to extract each of these values, not including the comma, so I would have a value list like [3, "asdf", "*#", 1212.3] ...
3
votes
1answer
223 views

Finding The Max of sum of elements in matrix in distinct rows and columns

I have a nxm matrix and I need to find the maximum of sum of its values in distinct rows and columns. For example considering the following Matrix: m1 m2 m3 n1 1 2 3 n2 4 5 6 n3 7 ...
3
votes
2answers
928 views

jQuery: form input values turns up undefined

Having problem with this bit of code qith jQuery. it should pick the values from current form and then submit them, but when I try to get them with jQuery they always turn up undefined. I know the SQL ...
3
votes
8answers
602 views

PHP - How to make/generate a graph image depending on values in a database?

How could I make an image graph from values in a database? The idea came from "Steam", which uses a graph to show how many users are online. How could I do the same thing? It seems like the graph is ...
3
votes
1answer
6k views

Pass value from another page to MainPage.xaml in Silverlight when using Navigation?

I have a Page in Silverlight which is Navigated from the MainPage.xaml, called OpenPage.xaml, I then want to pass a value back to the MainPage.xaml - this OpenPage.xaml is called using this: ...
3
votes
1answer
704 views

Count and group non-empty values in MySQL

I need to count the non-empty (by which I mean a string containing at least 1 character) rows grouped by a particular ID. Eg. my data might look like this: form_id mapping 1 'value_1' 1 ...
3
votes
2answers
3k views

Drupal - Set default value in hook_form_alter?

Trying to prepopulate some of my form fields, and am using hook_form_alter(). I've tried a couple of different ways, but in both cases, the fields still come up empty. I'm assuming that I need to ...
3
votes
5answers
3k views

How to keep the order of elements in hashtable

I have a hashtable . values() method returns values in some order different from the order in which i am inserted.How can i get the values in the same order as i inserted?Using LinkedHashmap is an ...
2
votes
3answers
88 views

Delphi Tchart x and y values in zoomed rectangle

I have a tchart series that contains 5000 points from a data base. I can zoom in on a particular section of the data with the mouse. I wish to copy only the x and y values that are visible in the ...
2
votes
2answers
73 views

how retrieve only selected checkbox values in action class in struts 1.3

i am new struts i am developing web application in which i have a requirement that i have to show records in tabular format i have made use of display tag in struts with every record i have a checkbox ...
2
votes
1answer
28 views

form values submit control

The trivial task became really time consuming for me. I am doing really basic user interface for web project(focus on business logic). If there is already exact answer to my question please redirect ...
2
votes
3answers
110 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
3answers
61 views

Jquery Get automatically values of all element inside a div

I have a main div and inside of this, there are a lot of input text and radio button. Like this: <div id="mainDiv"> <input type="text" name="text-1" /> <br/> <input ...
2
votes
2answers
67 views

Passing spinner values

I'm trying to code a way to pass the values from two spinners into another activity. I found examples using the putExtra method online but I'm having trouble implementing it myself (I think I'm just ...
2
votes
1answer
53 views

Joining values of columns?

I have a query that fetches the list of user IDs and their corresponding user names on a board but from another table also gets a column that has a value (a name) on the row corresponding to the user ...
2
votes
1answer
51 views

Accessing OpenCV 1.0 image pixel values and using them in FFTW

I am using an OpenCV 1.0 based calibration toolbox to which I am making small additions. My additions require the use of the FFTW library (OpenCV has DFT functions but they aren't to my liking). I ...

1 2 3 4 5 9