Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
11answers
1k views

Defining a class while a Java application is running

In Java, is it possible to create a class definition on the fly while an application is running, and then create an object of that class? For example, a running application would read in a text file ...
8
votes
7answers
2k views

Serving Images with on-the-fly resize

my company has recently started to get problems with the image handling for our websites. We have several websites (adult entertainment) that display images like dvd covers, snapshots and similar. We ...
5
votes
2answers
189 views

Zip on-the-fly compression library in C for streaming

Is there a library for creating zip files (the zip file format not gzip or any other compression format) on-the-fly (so I can start sending the file while it is compressing) for very large files (4 Gb ...
5
votes
2answers
99 views

Java - let user write own code, then compile it, then use it within same runtime

I need to perform following steps: Let user write own code - no problem, it's just one interface to implement and I save a file Compile it - no problem, I used ToolProvider.getSystemJavaCompiler() ...
5
votes
1answer
202 views

Creating subdomains on the fly

When one signs up for Blogger or WordPress, one gets very own subdomain that works instantly. How can do like that given I have my own VPS/VDS/Dedicated server?
5
votes
4answers
1k views

Operator as and generic classes

I'm writing .NET On-the-Fly compiler for CLR scripting and want execution method make generic acceptable: object Execute() { return type.InvokeMember(..); } T Execute<T>() { return ...
4
votes
2answers
164 views

Generating output in a running haskell program

Coming from (SWI) Prolog I find it very difficult to have Haskell give output on the fly. The simplest example, I'd like Haskell to print something on every iteration: fac 0 = 1 fac n = fac ( n-1 ...
4
votes
4answers
503 views

Delphi TStringList wrapper to implement on-the-fly compression

I have an application for storing many strings in a TStringList. The strings will be largely similar to one another and it occurs to me that one could compress them on the fly - i.e. store a given ...
3
votes
1answer
178 views

How to build Twisted servers which are able to do hot code swap in Python?

I've developed a set of audio streaming server, all of them are using Twisted, and they are in Python, of course. They work, but a problem keeps troubling me, when I found some bugs there in the ...
3
votes
1answer
213 views

Possible to refresh Django connections on the fly?

Is it possible to add a new database connection to Django on the fly? I have an application that uses multiple databases (django 1.2.1), and while running, it's allowed to create new databases. I'd ...
3
votes
4answers
234 views

Adding new functionality to an application using on-the-fly class generation

Is it possible to generate subclasses at runtime or while an application is running? If so, how is this achieved and what precautions should be taken to prevent a rogue object wreaking havoc inside an ...
3
votes
1answer
925 views

php create file and send as attachment without actually creating the file

I know how to read a file on the server and attach it to an email in PHP, but I wanted to know if I could attach a file that is created by my script but not created on the server (kinda like a temp ...
3
votes
5answers
5k views

JQuery live or something similar with .change()?

I want to do this: http://docs.jquery.com/Events/live#typefn Only .live() doesn't support the change event- any ideas for work arounds? Need to bind a function to some on-the-fly DOM elements, but ...
2
votes
2answers
73 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 ...
2
votes
0answers
49 views

Rails: On-the-fly Destroy cascade?

I know that destroy cascade will work if proper relationships are setup in the models, but I want to know whether there is a way to destroy cascade on-the-fly, without needing to have everything ...
2
votes
3answers
96 views

How to change function parameters during runtime?

I'm a beginner and use Python 2.7. I want to make the definitions parameters to be changeable so I can controll the pause and string output on the fly. Is this possible? I've read some thread stuff ...
2
votes
2answers
199 views

Fast on-the-fly image decompression

I need to work with a good amount of 4-bit images. However, it's got to be for J2ME devices, which means great lack of memory. So, could you propose a compression algorithm that could decompress on ...
2
votes
3answers
662 views

Third party library to convert image into pdf and eps format on the fly?

I have an upcoming .NET project that would require conversion from image (bitmap) into .pdf and .eps format. We would prefer to use third party library tool to do this rather than spending the time to ...
2
votes
5answers
626 views

How do I transparently compress/decompress a file as a program writes to/reads from it?

I have a program that reads and writes very large text files. However, because of the format of these files (they are ASCII representations of what should have been binary data), these files are ...
1
vote
2answers
59 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 ...
1
vote
1answer
20 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 ...
1
vote
2answers
220 views

Dojo vs JQuery programmatic widget creation

I recently experimented with Dojo and figured that given a single dom node in the markup, I can construct the whole UI tree in an object oriented manner i.e., programmatically and not having to worry ...
1
vote
1answer
284 views

Grails create downloadable file on the fly

Briefly: I can make a file, save it in the file system and then make a page with a link to that file, but what if I want a page with links to many files which may not all need to be generated? So my ...
1
vote
2answers
187 views

How can I extend the IntelliJ IDEA CE code evaluation feature?

I'm using IntelliJ IDEA Community Edition 10 to develop a Java SE project. My app takes a long time to start, so my preferred way of debugging the code is Launch -> Stop at a breakpoint -> Open the ...
1
vote
2answers
55 views

adding filtering functionality on-the-fly in c++

I have the following (simplified) architecture: client(s) --> bouncer --> server The clients send commands to the server. The 'bouncer' performs sanity and other checks on the commands issued by the ...
1
vote
2answers
120 views

Compile a Java program on the server right before a User downloads the program

I did a quick search and could not find anything on this topic. I am not even sure if this is possible, but I am curious. Is it possible to compile a Java program on a server right before a user ...
1
vote
2answers
150 views

PHP code debugger on the fly

i have a website on my localhost, a quite complicated one with many links is there a program that can debug for example, what happens when i click one link?or i login, etc and show me each function ...
1
vote
3answers
219 views

Create array without declaring it first - Ruby

I'm sorry if this question is a dumb one, but I must ask. In PHP, we can create a array without declaring it first, althought it isn't considered good pratice. Exercising my newly-knowledge of Ruby, I ...
1
vote
3answers
429 views

Creating buttons for textbox and assigning click functions on the fly in JQuery

I have the following code to create two buttons (one on the left one on the right) for each texbox on the page. Idea is to make an increment/decrement textbox. Code works fine with one textbox but ...
1
vote
1answer
241 views

Load assembly and change source, is it possible and how?

I'm writing .NET On-the-Fly compiler for CLR scripting and want to implement next idea: there is a template file with C# code, I want to read it, create an assembly, load it and amplify source ...
1
vote
3answers
2k views

JQuery - making code execute for each new DOM object instantiated

I'm wondering if this is possible in JQuery. I have some Javascript code that creates DOM objects on the fly, in response to user actions. Some of those DOM objects are in a specific structure - the ...
0
votes
0answers
29 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 for reference. 1-8 turns ON each channel Q-I turns OFF each ...
0
votes
3answers
55 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 ...
0
votes
1answer
54 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 ...
0
votes
0answers
101 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.). ...
0
votes
0answers
19 views

Is there any easy way to validate code snippets on the fly?

I am building a small code sharing website. Where-in users of the site will submit code snippets. Is there any robust or easy way I can validate code snippets written in a decent number of ...
0
votes
1answer
80 views

How to you change the value of android:summary on-the-fly using coding?

I have the following in a settings.xml file: <PreferenceCategory android:title="@string/chiming_activity_time_category_title"> <Preference ...
0
votes
2answers
214 views

C# Adding Strings to encrypted zip file “on the fly”

I have this problem: I have an application which harvests some information which is necessary to be stored on disk but I don't want to other see/access it so easily (due the safety I don't want to ...
0
votes
1answer
166 views

c# load on-the-fly generated partial class assembly

I would like to override a virtual base class function on the fly and use this overriden method in application. If I write a basic example class: partial Class myBase { public myBase() {} ...
0
votes
2answers
99 views

is it possible to take a large number of files & tar/gzip and stream them on-the-fly?

I have a large number of files which I need to backup, problem is there isn't enough disk space to create a tar file of them and then upload it offsite. Is there a way of using python, php or perl to ...
0
votes
1answer
115 views

Is there any .NET library for converting video streams?

I want to convert video formats on the fly. Is there any library in .NET for converting common video formats to each other on the fly (i.e. reading a network stream)
0
votes
1answer
58 views

on-the-fly disk encryption software with process access

I'm looking for an on-the-fly disk encryption software that provides real-time disk encryption only for one authenticated process. I mean one process can access encrypted folder and at the same time ...
0
votes
1answer
311 views

Processing an InputStream to OutputStream on the fly through a HttpServlet

I'm trying to process a large text file through a HttpServlet (tomcat). As this file can be large and the process should be very fast, I don't want to upload the file on the server and I've used the ...
0
votes
1answer
191 views

Replace text as you type in CKEditor

Is it possible to automatically replace some text with some other directly while typing in CKEditor? Either via plugin, setting or by adding some custom code? Examples would be to directly replace ...
0
votes
1answer
71 views

On-the-fly mirroring of web site for mobile use

I would like to create a mobile version of a website. I do not have write access to the source website. The source website is well formatted in HTML and most adaptations for mobile viewing should be ...
0
votes
1answer
828 views

create xml on the fly from a string android

This is correct program and now running fine :) thank you sir I am new to Android. I have a String that contains XML format data (its an XML document) that servers returns to me. I want to parse ...
0
votes
1answer
278 views

On-the-fly video streaming over http?

I'm building an application that will serve up video files to users on a variety of different platforms. As such, I need the ability to set up a server that will serve up video files that might need ...
0
votes
3answers
829 views

How to add helper or component on-the-fly with the controller action method

i don't want to add it as below cause i needed them only once in certain action method (so do not useless load the memory) class UsersController extends AppController { var $name = 'Users'; ...
0
votes
1answer
600 views

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 ...
0
votes
1answer
94 views

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?

1 2