Questions tagged [indexed]
151 questions
0
votes
2 answers
Preset number picker for android
This is my first post on stackoverflow, so feel free let me know if I'm doing anything wrong.
I'm working on making an android app. For one of my menu activity's I need some sort of widget that will allow the user to pick a number from a predefined…

dkniffin
- 1,295
- 16
- 25
0
votes
1 answer
Indexed_search extension where is the div "tx-indexedsearch-whatis" created?
I want to modify the content which is marked into the div with the class "tx-indexedsearch-whatis". I searched for this div in the standard template file and I did not find it. I guess the mark code is somewhere in a .php file or in a typoscript…

Tomkay
- 5,120
- 21
- 60
- 92
0
votes
1 answer
indexed flat-files
We have a batch analytical SQL job – run once daily – that reads data from 2 source tables held in a powerful RDBMS. The source tables are huge (>100TB) but has less than 10 fields combined.
The question I have is can the 2 source tables be held in…

user1065024
- 1
- 2
0
votes
1 answer
Yahoo indexed pages script
I'm using following script:

grigione
- 697
- 2
- 11
- 37
0
votes
0 answers
How to annotate multi field index in apache geode spring boot application
I am developing a Spring Boot Client cache application (spring-geode-starter version 1.7.5) with a region name say 'Element' having 5 fields (say, id, code1,stDate,endDate,code2). Now I have OQL , i.e. a single select statement from the 4 fields…

shibendra chakraborty
- 91
- 1
- 1
- 5
0
votes
1 answer
How to find Indexed Color mode PNGs in python
How do I get a list of all the Indexed Color mode PNGs that are present in a given folder that contains a lot of other files (which are all images, but they all have different Color Modes) using Python?
Previously tried code:
from PIL import…

Francesco Calderone
- 35
- 5
0
votes
1 answer
Using an integer indexed list of strings with Arduino
I do have a list of string status messages. Each status message has an individual integer status code assinged to it, like this:
{0, "INITIAL STATE"},
{12, "ERROR INVERTER COMMUNICATION"},
{42, "INITIAL CHARGE"},
{158, "MAINTENANCE CHARGE"},
...
In…

MacSass
- 9
- 3
0
votes
0 answers
Any indexed color mapping features in CSS?
When creating graphics in GIMP I often make several versions of graphics (like game characters with different outfits) using indexed color mode in the .png file where I develop the images so I can change the appearance of the graphics by just…

Billy
- 61
- 1
- 2
0
votes
1 answer
want to get json file data from particular index in laravel blade file
I am new to php laravel kindly help me out to solve this proble.
This is json file api
"meals": [
{
"idMeal": "52771",
"strMeal": "Spicy Arrabiata Penne",
"strDrinkAlternate": null,
"strCategory": "Vegetarian",
…

Timothy
- 69
- 7
0
votes
4 answers
in Bash: how to echo alphabet in multiple lines from A to E then in a new line from F to J and so on
I have tried
declare -a arr=( {A..Y} )
for j in {06..10}; do
echo -n "$j "
for (( i=0; i<25; i++ )); do
if [ $i -eq 4 ]; then
echo -n "${arr[$i]}${arr[$i]}"
break
…
0
votes
1 answer
Assembler HCS12 how does register with index work with TST-instruction?
Hello this is my test code:
LDX #$2000
LDY #$1000
LDD #$0000
la: ADDD #1
MOVB 1, X+, 1, Y+
TST -1, X <-- what do I check here?
BNE la
My question is what do I…

kanat0x61
- 15
- 2
0
votes
1 answer
if condition for array index
foreach($results as $result) :
$featured_image=wp_get_attachment_url(get_post_thumbnail_id($result->ID));?>

Osama Zubair
- 33
- 4
0
votes
1 answer
How to improve the performance of indexed search in typo3?
I have used typo3 indexed search. I have many pages around 50000. Indexed search become too slow.
When i search for the word, it takes more time. How to improve the performance of front end search.

Sivakumar
- 1,089
- 1
- 13
- 24
0
votes
1 answer
R Nonliner Least Squares (nls) function: Using indexed vectors as inputs?
I am trying to run the nls function in R using indexed vectors as inputs, however I am getting an error:
> a=c(1,2,3,4,5,6,7,8,9,10)
> b=c(6,7,9,11,14,18,23,30,38,50) #make some example data
>
> nls(b[1:6]~s+k*2^(a[1:6]/d),start=list(s=2,k=3,d=2.5))…

Andy
- 15
- 1
- 4
0
votes
1 answer
Would like to delete a document after 30 min , stuck at the moment
I am using the indexed expire after second ,everything seems fine for me ,but nothing happens after 30 seconds is there more I should do or am I doing something wrong
public class ConfirmationToken {
@Id
private String tokenid;
private…
user16071339