The on-the-fly tag has no wiki summary.
1
vote
1answer
70 views
Compress on the fly a directory in tar.gz format using PHP
I want to compress (on the fly) a directory in tar.gz format using PHP. I know it can be done with exec or using this code (using ZIP format) but my host doesn't support exec and hasn't installed the ...
-1
votes
1answer
40 views
MySql Pages on the Fly
Problem solved
The answer was
$query = "SELECT manager FROM tablename WHERE manager='$manager'";
Subtle difference, but removing the dots before and after $manager was the answer.
Credit to ...
0
votes
1answer
36 views
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) ...
0
votes
2answers
35 views
Use unset result without defining a new array in php
I am trying to create a dynamic link, in this way:
Take an array
Search for the key of one element
Delete this element
Implode the array elements to a string
Show the string as a parameter in the ...
1
vote
2answers
67 views
How do you create apps on the fly?
There are hundreds of sites now which allow you to create apps for iOS & Android on the fly. Am completely lost on how they are able to achieve this online. Are there any services which help ...
0
votes
1answer
34 views
Is on-the-fly compiling in WinRt possible?
For a project I need to compile code on-the-fly in a WinRt-application. Almost nothing I can find on that subject. I've seen the CodeDom-namespace has sadly enough only one class, which I fear means a ...
0
votes
1answer
81 views
JQuery datetimepicker change min/maxDate results in infinite loop
Hy all,
I'm using the datetimepicker from http://trentrichardson.com/examples/timepicker/
The problem is that i've got an start and end input field. I don't want that an user can pick an end ...
1
vote
2answers
159 views
Refresh slidejs
I'm using slidejs from http://www.slidesjs.com/ and I wanted to refresh the list of images, because I need to add and remove images on the fly.
Is there any way to do this? I've tried to use the ...
0
votes
0answers
38 views
Datagridview virtual mode with WCF Data Service results
I have a WCF Data service that implements server-side paging. I have a client application that utilizes a datagridview which is meant to display the aggregated results. The WCF data service is ...
-1
votes
1answer
38 views
File content parsing on the fly with python [closed]
Is there an efficient way of parsing a certain file's content while it is being written?
My idea of doing it is in general lines (this is not a python code of course):
While(1):
Openfile(file);
...
0
votes
1answer
62 views
How to create cross-module, on-thy-fly variable name in python?
What I am trying to do, is creating a module, with a class; and a function, which is an interface of that class; and a variable name on-the-fly in this function, which is pointing to an instance of ...
0
votes
1answer
47 views
Checkbox and label created on the fly
When I create a checkbox and a label "on the fly" with jQuery, it works fine respect to its functionality (that is: if I click the label, the checkbox is checked), but the default visual appearance ...
0
votes
0answers
95 views
Making tabs on the fly using jQuery, but need help to remember the tabs per user basis
I am making tabs on the fly using http://jqueryui.com/tabs/#manipulation . I am also customizing the default behavior of the jQuery Dialog the tabs uses. I have a div and I put the html contained in ...
0
votes
1answer
31 views
Creating links, and creating content for the links, on the fly, php
I have a index.php, it calls a function post_themes_front(), the function gets all the "posts" from the SQL database and creates all the content, including the links. Example: picture A links to ...
2
votes
2answers
100 views
ActionScript 3 - compose function dynamically
I'm looking the AS3 equivalent of the following JavaScript code:
var funcName = "foo();"
var fHandler = new Function("a",funcName + "return a + 1");
fHandler // now equals a function like ...
7
votes
3answers
276 views
Reduce list on the fly in Haskell
Assume I have a function f which accepts some input and produce a number. Within the function f, a list is created according the input, which is then reduced (e.g. using foldl' g) to produce the final ...
0
votes
0answers
38 views
How to: create executable from inside the c# program with variable content? [duplicate]
Here's the example of problem: I make an addition to SQL DB, and want my program at the moment, when I got positive response - to create an executable, which deletes entry based on it's GUID.
Is it ...
0
votes
0answers
88 views
How to recompile python code on the fly during pydev debug in eclipse
I am assuming that this question can be generic to pydev, but I have only used pydev in eclipse so I am not sure...
In the past, I have accidentally done this and I would like to learn how to do it ...
0
votes
0answers
64 views
cURL in PHP uploading a file created on-the-fly
I've a function that post a file:
function post_file($url, $file_path){
$data['Filedata'] = "@".$file_path;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, ...
1
vote
1answer
290 views
Change btRigidBody's position/orientation on-the-fly in Bullet Physics
I know it breaks physics laws, but although there are often practical reasons to change instantaneously the position and orientation of a body in a game, most physic simulation libraries won't allow ...
0
votes
0answers
99 views
why does not eclipse PDT syntax checker underline undefined function? Missing on-the-fly code analysis in PDT?
I am using Juno - created a PHP project and having PHP perspective.
<?php
undefined_function();
?>
when I run this code i got this: Call to undefined function: undefined_function()
However, ...
4
votes
3answers
271 views
Best way to deal with image thumbnails on news web site (custom CMS based on codeigniter)?
I’ve been thinking a while about the best solution and as much as I read I get more and more confused. There are a lot of different libraries and helpers (most of them are outdated or for CI 1.x) and ...
0
votes
1answer
159 views
Creating multiple select list options on the fly and reducing is subsequent select lists
I have been trying to solve the following problem for the last week or so, and after many searches around the internet, and on here, haven't found an exact solution for what I am trying to achieve.
...
2
votes
2answers
179 views
Updating Simulink Block on the fly?
Is there any way to change the parameters of a block in Simulink on the fly? The model is compiled and running on a xPC-Target. I do have a subsystem (actually a lot of subsystems) and would like to ...
2
votes
1answer
137 views
how can I generate a lexer and parser on the fly (at runtime)?
I did find an answer to my question: Barts answer is exactly why I need, but it does not function (see below).
Please can some one either give me a working example or show me the where I am going ...
1
vote
1answer
136 views
Extract Tuple values on the fly
Is there a way how I can extract values from a Tuple on the fly?
Let's assume the tuple:
val x = ("1", 2, "3")
and the method:
def doFoo(value1: String, value2: Int, value3: String)={}
How can ...
0
votes
2answers
122 views
Download img created on the fly
I create img element with a jquery plugin.
I would like to be able to click a button element and dowload the img element.
Is it possible without HTML5?
I do not store the image, cause it is ...
1
vote
2answers
75 views
jQuery: Update jQuery-version on the fly via $.getScript
If you are in an environment that starts out with jQuery 1.7.x, are there any risks to run $.getScript and load the latest version of jQuery (1.8.3)?
Will it overwrite the updated functions correctly ...
0
votes
0answers
205 views
Kerning on the fly [closed]
Do anyone know any algorithm which would calculate automatically kerning of characters based on glyph shapes when user types text?
I don't mean trivial calculation of advance widths or similar, I ...
0
votes
1answer
212 views
Using Jquery tools, set slider limit max on the fly [closed]
I am using JQuery tools for creating a slider. Basically, I have two sliders
<input id="slider1" type="range" name="test1" min="0" max="50" step="1" value="0" />
<input id="slider2" ...
0
votes
0answers
103 views
Use SharpZip to zip xml files from stream and make it available for download in ASP.NET
I have an ASP.NET Web Forms application. Once the user clicks on a download link, I need to create several XML files on the fly, zip them and prompt the user with a download dialog.
I already made ...
0
votes
2answers
215 views
Create a Zip file on the fly and make it available for download in ASP.NET [closed]
I have an ASP.NET Web Forms application. Once the user clicks on a download link, I need to create several XMLs file on the fly, zip them and prompt the user with a download dialog.
I already made ...
1
vote
2answers
358 views
How to create and download an XML without storing it on the server
I have an ASP.NET Web Forms application. I would like to create a download link to make available to the user the possibility to download an XML file. However the file does not have to be stored on ...
0
votes
0answers
89 views
How to resize /usr to give more space to /var on the fly in FreeBSD [closed]
I have this current disk usage on my FreeBSD.
# df -h /usr /var
Filesystem Size Used Avail Capacity Mounted on
/dev/ad6s1f 440G 3.8G 401G 1% /usr
/dev/ad6s1d 5.8G 5.3G ...
0
votes
3answers
641 views
encrypting and/or decrypting large files (AES) on a memory and storage constrained system, with “catastrophe recovery”
I have a fairly generic question, so please pardon if it is a bit vague.
So, let's a assume a file of 1GB, that needs to be encrypted and later decrypted on a given system.
Problem is that the ...
7
votes
3answers
124 views
modify a running python program
I launched a python program with many nested loops, and the program will take days. I just realized that one of the loops values is wrong and makes a infinite loop.
I don't want to restart the ...
1
vote
1answer
163 views
How can I change change class behaviour on-the-fly?
I am trying to edit a class file and make it available to the JVM at runtime.
Is that possible, how can I do it?
For example:
main() {
for (int i=0;i<10;i++) {
NewClass.method();
...
8
votes
1answer
812 views
Hot swap debugging with Android
2 questions:
1) Is there any special setting/configuration required to enable hot swap debugging on Android?
Example case:
Add breakpoint just after entering activity's onCreate method.
Add new ...
0
votes
2answers
68 views
Programmatically setting a field inside a model in CakePHP
I'm trying to set a field on the fly inside a model, so it will get returned in my with any read action. I looked into virtual fields, but they're not quite right, since they basically execute SQL ...
1
vote
2answers
54 views
how should I handle an event for an element that has not yet been loaded when the page is loaded
I'm kind of a noob in jquery, so i'm sorry if the question is a little obvious.
I wondered how should I handle an element which is created using the .html() jquery method, so
there is no way to ...
1
vote
1answer
239 views
Android decrypt and play mp4 at runtime
i'm working on an app which shows a series of mp4 files. To make sure people don't just copy them from the sdcard where they are stored, we want to encrypt them (using DES at the moment). Most of the ...
1
vote
1answer
265 views
AVCaptureSession and AudioQueue
I'm newbbie in Objective-C and iOS and I need your help. I would like to take my microphone audio input and redirect it directly inside the speaker output (without passing through a file).
I'm here ...
2
votes
2answers
1k views
Deflate (ZIP) compressing on the fly in Java using InputStream and OutputStream abstraction only. Possible?
I'm currently trying to write a custom streams proxy (let's call it in that way) that can change the content from the given input stream and produce a modified, if necessary, output. This requirement ...
0
votes
0answers
95 views
Randomize a numerical range output to RS-232 with speed control
I have a USB device that is "seen" as a COM Port. It has eight channels, each require a single character to turn ON/OFF. It's a [DLP-IO8][1] for reference.
1-8 turns ON each channel
Q-I turns OFF ...
1
vote
2answers
368 views
PHP on the fly ZIP downloads as blank
It seems I successfully create an on-the-fly zip archive (filesize and file_exists both return the expected values) but when I attempt to actually download it, I receive an empty ZIP file.
Curiously ...
0
votes
3answers
99 views
Copy a function on the fly PHP
I'm working on a project which requires a function to be copied & executed on the fly and variables in it needs to be replaced on the fly too.
A simple example will be like this:
function ...
1
vote
1answer
66 views
How to stamp a file before download with IIS
My IIS ASP.NET-based website allows users to download a file. I'm trying to figure out a good way to stamp an ID into the file before/as the user downloads it so each user could potentially have a ...
0
votes
1answer
301 views
android decrypt image on the fly
I'm trying to decrypt images on the fly in my application. I'm downloading them over internet and than I want to decrypt them and show 'em as backgrounds or in imageview. So my problem is that I can't ...
-2
votes
5answers
133 views
How to create a method out of the text file?
I have a text (.txt) file that contains Java code! I want to create a method that includes this Java code and then call that method through the program.
Can anybody suggest a way to do this?
0
votes
1answer
1k views
Fixed header with shadow image on scroll with scrollable content area
I have a header and content area and it will be like a normal site. But whenever you scroll the page, a shadow image will appear in the bottom of the header (header height will be approx. 200px.). ...

