activities that happens or occur dynamically on the program runtime.
Questions tagged [on-the-fly]
186 questions
0
votes
1 answer
Yii framework....Calculate total on fly
I'm newbie in Yii framework and start learning on small web project so I got stuck on this position as how to solve it.
I have a 'Order_form' where a user has confirm his order and if want to change the 'Qty' so only this can change then bydoing…

Khan
- 13
- 1
- 5
0
votes
1 answer
Generating RSS feed on the fly, from a list of links?
How might one dynamically generate a temporary RSS feed, on the fly, from a list of links that point to videos, for example?

Benjamin Allison
- 2,134
- 3
- 30
- 55
0
votes
2 answers
Create several dictionaries on the fly in a for-loop and reference them outside of the loop
I want to create a few dictionaries: Dict1, Dict2, Dict3, ..., Dict15 within a for-loop.
dictstr = 'dict'
for ii in range(1,16):
dictstrtemp = dictstr
b = str(ii)
dictstrtemp += b #--> "dictii" created; where ii is 1, 2, ..., 15
…

Idontcare
- 11
- 5
0
votes
1 answer
Meteor Autoform Select2 add on the fly
I want to be able to add a tag on the fly to a tags collection, using autoform and select2, similar to this example from select2.
https://select2.github.io/examples.html#tags
I have already created a tags collection which I can add to it from it's…

deadDev
- 1
- 3
0
votes
1 answer
How to get the value of content that gets hidden or autogenerated?
This question comes after solving my last question, I'd like to get some values out of the hidden forms but when I try to retrieve them only empty strings come by, I've considered just using arrays to store the information as it is introduced but…

Tsundoku
- 9,104
- 29
- 93
- 127
0
votes
1 answer
How to create choices on the fly using autocomplete-light in django
I am able to get auto-complete working.
django-version : 1.8
But i also want to create choices on the fly, and these choices should be saved in Tag model.
According to my understanding, remote.js is to be used.
Hence I have added the below snippet…

dreamer
- 901
- 2
- 15
- 38
0
votes
1 answer
Cordova on the fly update
Yes I know it is possible to do. But i can't see any solid example since it is very useful for Cordova Apps. There isn't any plugin so far. If something goes wrong with newer update from the site of www/ folder. I would like to update automatically.…

engincancan
- 2,442
- 2
- 28
- 43
0
votes
1 answer
ZF2 How to get unloaded config file in controller?
The cenario
My application is divided by many agencies, each one with it's own database and database configuration file.
Before logging in, the user needs to send me an agency-id. In that request ZF2 load a non-agency db configutarion file (with…

Edson Horacio Junior
- 3,033
- 2
- 29
- 50
0
votes
0 answers
PHP. when parsing code to resize images on the fly
I've been told that using this code to resize images on the fly will help speed it up, however i get this error when parsing.
0
votes
0 answers
Calculate predictions continuously (without cron task)
I have an R model, which predicts user ratings and writes them to database. The question is - what is an optimal way to update these predictions using new incoming data? Now I have a cron task that updates ratings every night, but we need more…

RInatM
- 1,208
- 1
- 17
- 39
0
votes
1 answer
Extjs 4.2.1 - Draggable/Undraggable windows on the fly
In my application, I have 4 windows on the screen and all the windows are draggable.
My need is that, all the windows should be made draggable/undraggable on a click of a button(toggle).
I set draggable true/false on the fly. But, the property is…

Gugan
- 1,625
- 2
- 27
- 65
0
votes
1 answer
R: Add columns to a data frame on the fly
new at R and programming in general over here. I have several binary matrices of presence/absence data for species (columns) and plots (rows). I'm trying to use them in several dissimilarity indices which requires that they all have the same…

eddie helderop
- 3
- 2
0
votes
0 answers
Android navigation online drawer update of itmes
I'm stuck at the point where I need to update items of the navigation drawer on the fly/online.
My navigation drawer is based on this tutorial
http://www.tutecentral.com/android-custom-navigation-drawer/
I want to update one item of the drawer…

Berton
- 93
- 2
- 9
0
votes
1 answer
Is there a way to generate two different text files on the fly with php?
Thanks to this topic I'm able to generate one single text file and download it on the fly. But I would like to generate two separated text files. My code seems like this:
$status = //math
if(status)
header("Content-type:…

Victor Oliveira
- 3,293
- 7
- 47
- 77
0
votes
2 answers
Embedding a Bitmap in ASP.NET's WebResource
I am generating a System.Drawing.Bitmap on the fly in an ASP.NET Custom Web Server Control, and then I want to serve this bitmap as part of the WebResource, because I do not want to save it on the hosting computer.
Is there a way to instruct ASP.NET…

Andreas Grech
- 105,982
- 98
- 297
- 360