The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
12 views

Pikachoose sliding in both directions

So I am using pikachoose for my website and saw that there's a sliding option in transitions for a sliding effect to the side. I have two buttons of course; Previous and Next; but the slider is only ...
1
vote
1answer
34 views

How to add icon set to resources and then allow user to choose from icons in “choose icon” dialog? (for a task in a list)

In my Android app I would like to allow a user to pick an icon from an icon set (either from my own icon set available in resources, or from external icon apps). He would click on choose icon (or on ...
0
votes
0answers
36 views

Creating a countdown timer

How would I create a countdown timer that allows the user to choose the time he/she wants the time to be count down from? ...
1
vote
1answer
74 views

open the “open”-dialogbox from cmd

I want to know if I can open the "open"-dialogbox from the cmd, so I can use that to choose the right file to open. (I already know how to open the file directly from the cmd, but thats not what I ...
1
vote
0answers
54 views

Generating all increasing sequences of specific length from an integer interval

I want to generate all the possible sequences of a specific length from a integer interval. (np.arange(start,end)) If it was only sub-multisets of a set of a specific length I could go for: ...
0
votes
1answer
97 views

Is there a Java gui code to choose from different frames?

I mean I have a frame with a button w/ action listener and 4 different frames. When I click the button it will randomly open one of those 4 frames. For example is I have frame 1,2,3,4. If I click my ...
0
votes
4answers
74 views

Choose a file starting with a given string in Python

in a directory I have a lot of files, named more or less like this: 001_MN_DX_1_M_32 001_MN_SX_1_M_33 012_BC_2_F_23 ... ... In Python, I have to write a code that selects from the directory a file ...
0
votes
0answers
45 views

How to choose a database engine?

There is a lot of questions asking for which databases engine is the most reliable for a particular use, but there is nothing explaining objectively why we should use this or that database. I'm ...
0
votes
5answers
189 views

How to choose a random number in Java?

I must choose a number from given numbers in java randomly. How to do this? I have only this 5 numbers. 1000,2000,3000,4000,5000; Now I have to select any one number from this set of numbers ...
1
vote
1answer
41 views

with xslt how do I use choose/when to remove elements from document

Here is my example document <a > <b flag='foo'> <c/> <d/> </b> </a> I am looking to remove the "c" element only when the flag attribute on b is 'bar'. Ie if ...
1
vote
1answer
245 views

With XSLT, how can I use this if-test with an array, when search element is returned by a template call inside the for loop?

I think this simple example might ask the question a lot more clearly. I have an input file with multiple products. There are different types of product (2 types with 2 product IDs is fine enough ...
0
votes
1answer
101 views

xsl choose in concat

I have the following data: XML <team> <rectx>30</rectx> <diadata> <bestAnd>-350</bestAnd> </diadata> <diadata> ...
2
votes
2answers
115 views

PHP XSL Conditional Statement (CHOOSE, WHEN, IF, OTHERWISE) Causes 500 Internal Server Error

Here's the problem. I am taking returned XML data that is returned from a web application and processing it into HTML through XSLT for the user to see. This works flawlessly on my local WAMP server ...
1
vote
0answers
70 views

Which pixel format to choose as “internal”?

I am writing a video analytics program which will grab frames from V4L / files / etc, than do some analysis using OpenCV(not only) and save result in separate images / video files. I need to choose ...
2
votes
1answer
1k views

JSP global variable

I have this code <%! public String class_name = ""; %> <c:choose> <c:when test="${WCParam.categoryId != null}"> <% class_name = "my_account_custom"; %> ...
0
votes
1answer
192 views

Applescript, reading data from file into list to use with choose

I have a text file with three lines Line one Line two Line three And run the following bit of applescript on the file : set dbs to {read file thePath using delimiter " "} --set dbs to {"Line one", ...
1
vote
0answers
513 views

Why should I choose Zend over Yii? [closed]

I'm little familiar with Yii framework and have already impressed with built in tools such as Gii and OR mapping. But many say Zend is is a great framework which I'm not familiar with at all, for ...
0
votes
0answers
35 views

How do I emulate Google Maps' “Choose Start Point” in an Android app with Google Maps API?

Specifically, how do I recreate the "Point on Map" option, and is there a way to limit it to pre-determined points?
1
vote
2answers
131 views

numpy.choose 32 choice limitation

Low and behold, I ran into a regression in numpy.choose after upgrading to 1.5.1. Past versions (and numeric) supported an, as far as I could tell, unlimited number of potential choices. The "new" ...
0
votes
1answer
180 views

Crystal Report - Certain Subreport Information

I'm working in Crystal Reports trying to access certain address information from a subreport. I have a list of client reports in the main report, and in the subreport I have a bunch of mailing labels. ...
0
votes
0answers
317 views

Primefaces 3.2 fileUpload choose button is always active

I am using Primefaces 3.2. The problem I've got is that in the fileUpload component which is in the advanced mode the choose button is always active, even behind a dialog or calendar. When some ...
2
votes
1answer
682 views

How to choose the test DB cakePHP testing

I am using the cake bake command to create my fixture and Test models. I have done it successfully with one of my models but i am having troubles with another one. I dont know why, it tries to work ...
0
votes
2answers
109 views

How to select the last column of numbers from a table created by FoldList in Mathematica

I am new to Mathematica and I am having difficulties with one thing. I have this Table that generates 10 000 times 13 numbers (12 numbers + 1 that is a starting number). I need to create a Histogram ...
-2
votes
1answer
155 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 ...
3
votes
2answers
684 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 ...
0
votes
2answers
123 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 ...
13
votes
7answers
3k 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 ...
0
votes
0answers
118 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 ...
1
vote
1answer
193 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 ...
0
votes
1answer
304 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
vote
2answers
352 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
141 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 = ...
7
votes
6answers
926 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 ...