Tagged Questions
The choose tag has no wiki summary.
10
votes
7answers
484 views
Choosing between Node.js and Erlang (when you know neither)
I've been programming desktop applications using C++ and Python for the last 10 years. For a side project, I now want to branch into web development. Aside from HTML and CSS, I don't know any of the ...
7
votes
6answers
351 views
Most efficient way of randomly choosing a set of distinct integers
I'm looking for the most efficient algorithm to randomly choose a set of n distinct integers, where all the integers are in some range [0..maxValue].
Constraints:
maxValue is larger than n, and ...
2
votes
2answers
110 views
Android: dynamically choosing a launch activity doesn't always work
I've read a few articles here (and other places) that describe how to dynamically choose which activity to show when launching an app. Below is my code:
AndroidManifest.xml
<activity ...
2
votes
2answers
63 views
XSLT Not Taking When Test Selection
I've been working on something for my boss, a website that displays the web-services of a ticketing system. The web-service spits out an XML file based on a query. My problem is, when I try to set ...
1
vote
1answer
92 views
Display XSLT variable in different colors depending on condition
I have an xslt file. In this file, I have an xsl choose statement. When certain conditions occur (for example, when the variable is either positive or negative), I want to display that xsl variable in ...
1
vote
2answers
140 views
Choose/2 multiple answers swi prolog
how can I define a choose/2 to give infinite answers
choose(List, Elt) :-
length(List, Length),
random(0, Length, Rand),
nth1(Rand, List, Elt).
my choose/2 gives only one answer
...
1
vote
2answers
112 views
Is there a module that allows me, to choose on the terminal with the up- and down-keys?
#!/usr/bin/env perl
use warnings;
use 5.12.0;
use Term::UI;
use Term::ReadLine;
my $term = Term::ReadLine->new( 'brand' );
my @choices = ( qw( blue red green black white ) );
my $reply = ...
0
votes
1answer
20 views
How to create a chooser for fragments in android
I have 3 Fragments say FragmentA, FragmentB and FragmentC.
I have a button on FragmentA.
I want a chooser to be opened as when click on the button of FragmentA which will all the user to choose from ...
0
votes
2answers
89 views
Which Database to choose
I wonder, which database would be the best for my usecase. Requirements are:
- about 500 - 1000 writes per second
- reads depend on the design and stuff, but i guess the number will be in the range of ...
0
votes
0answers
48 views
How do I make legacy COM component dll accessible in the VS 2010 Toolbox?
I have a legacy COM object which is activeX actually. I can successfully run AxImp.exe on it. Now, I want to host it on WPF UserControl in VS2010. So, I'm registering this activeX with regsvr32.exe ...
0
votes
0answers
73 views
Android: Choose a string in spinner
I have a textview and I'd like to let a spinner choose the string.
this is from the XML:
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content">
...
0
votes
0answers
47 views
Which Linux gfx lib (SDL, wx, pure X etc.) suits best for basic features incl. UTF8 font rendering?
I need to choose a Linux gfx library for our ticket machine.
It's an Intel Atom-powered ITX computer in a special house (also, there's ticket printer and other gadgets in the house) with 1G RAM and ...
0
votes
1answer
126 views
Which control to choose? WebControl or CompositeControl that is the question
I'm looking forward to create some customs controls like AutoCompletes, TagClouds and others. To use in my projects as tools without need to worry every time that i need one of them.
i saw in This ...
-1
votes
2answers
47 views
XSL condition statement
i have a problem with this statement :
<xsl:choose>
<xsl:when test="cars[@id='1']">
<xsl:choose>
<xsl:when test="cars[@id='1']='1'">true</xsl:when>
...
-2
votes
1answer
58 views
Which PHP framework to choose for a specific task? [closed]
There is a need to make a service that will interact with the DB a lot (mysql).
Users will log in, add records, delete them.
It is often written, that choosing a PHP framework must depend on the ...