Questions tagged [on-the-fly]

activities that happens or occur dynamically on the program runtime.

186 questions
0
votes
1 answer

PHP - Generate file on the fly for android devices

I have read some answers here but i cannot seem to make my php script to work. I generate a text or csv file (it depends what the user has chosen) from a form that it is submitted back to the same page. The script works fine on Chrome, IE, Mozilla…
Axel
  • 1
  • 1
0
votes
0 answers

Java encryption on-the-fly by virtual drive

I have made an encryption system and I'm looking for a way to add some way to integrate it with file system on windows(if possible also on linux). I don't want to rise a debate whether it is needed, that it already exists etc... I was hoping to find…
0
votes
4 answers

Microsoft DBMS on-the-fly aggregation

Some time ago i was reading an article about new MS DBMS technology. It's some kind of OLAP but on the fly. This technology can bind to data flows and then provide a real time aggregation. So the question is "what is it's name?". I need such a…
ILya
  • 2,552
  • 4
  • 25
  • 40
0
votes
2 answers

Compile Scala classes on the fly to implement webservices

I am struggling with how to dynamically add some webservices. I am using Scalatra for the webservice framework. I want to allow the developer to be able to change authentication, for example, so that rather than using hard-coded credentials,…
James Black
  • 40,548
  • 9
  • 79
  • 153
0
votes
1 answer

Performance: Generate flatten parent-child-list of IDs

I'm looking for a better way to generate a map of parent-child-relations; based on specific id-pattern. Its faster to ask for void 0 === cache[parent][child]; the expected result: { uuid_1: {uuid_2: {}} uuid_2: {uuid_3: {}, uuid_4:…
0
votes
1 answer

Polyfill for onload of script tag in

I'm trying to lazy load javascript into the head with this function: function bfLoadScripts(strPath) { var r = false; var scriptTag = document.createElement('script'); scriptTag.src = strPath; scriptTag.type = 'text/javascript'; …
Matthias Max
  • 555
  • 1
  • 7
  • 19
0
votes
1 answer

A simple javascript/jQuery minifier in PHP

I want to compress my JS and jQuery code using the following method:
decadenza
  • 1,612
  • 3
  • 13
  • 27
0
votes
2 answers

Why do I have to restart ios simulator to fetch new data/ How to fetch data on the fly

I am new in programming in ios and I'm creating this simple function of having a view controller add a data into the persistent store, and a table view controller will fetch those data and display them in rows. This data that I'm adding is a string…
0
votes
1 answer

How to create html file on the fly in .NET

I am interested to know that how can I create html file on the fly in .NET. I have a scenario in which the user request a page something like http://mydomain.com/country/123.html I want to create that html file on the fly, Bind the content of the…
Ammar Khan
  • 326
  • 1
  • 9
  • 27
0
votes
1 answer

Catalog entries: Updated html files or on-the-fly from database?

I've got a database site that will serve approximately 1,200 primary entries at launch, with the prospect of adding ~100 new entries per year. Each entry would be composed of ~20 basic values from the database, as well as a calculated average…
Drew
  • 5,970
  • 10
  • 42
  • 67
0
votes
0 answers

On-the-fly zip to browser from PHP, MySQL closes the connection within 60 seconds

Files as BLOB in MySQL Connection as root to MySQL from PHP set_time_limit(0);ignore_user_abort(FALSE); at start of PHP Script Using mysql_unbuffered_query from PHP Getting each row and sending it to browser zipped (on-the-fly to save RAM memory…
Jose Nobile
  • 2,915
  • 2
  • 21
  • 28
0
votes
2 answers

testing Java code generated during another test

I want to build a "toJavaCode()" on my model that would generated the required Java source code to generate that model (never mind the reasons or if it should or shouldn't be done, nor the compatibility issues that may occur). I'm at a loss at how…
Ran Biron
  • 6,091
  • 4
  • 33
  • 66
0
votes
1 answer

PHP Smart Image Resizer returns broken image

I'm using the Smart Image Resizer plugin to resize images. I've been testing on a local server for a while, and now when I uploaded to the server, the image doesn't pull up. There's really no code to post-has anyone ever had this problem, and if…
Caleb
  • 797
  • 2
  • 10
  • 29
0
votes
4 answers

jQuery: element on-the-fly

Here is the problematic part of my code, run inside .each(function(){ }); $('img','
'+ed.selection.getContent({format: 'html'})+'
').each(function(){ $img=$('').attr('src',$(this).attr('src')); …
Z. Zlatev
  • 4,318
  • 27
  • 34
0
votes
1 answer

Ajax Control Toolkit PopupControl: Get the ID of the PopupControl from the clicked button

Currently I'm working on a project that requires me to make a ASP.NET page that contains schedules. The whole page schedules a week in total. Every day is represented by a table (in an updatepanel) that has rows for hours and columns for…