Tagged Questions
The self-contained tag has no wiki summary.
8
votes
2answers
113 views
Scientific Computing: Balancing Self-Contained-ness and Reuse?
I write scientific research code, specifically in bioinformatics. Of course, in science, results should be reproducible. People who are not involved in a project on a regular basis and don't ...
7
votes
2answers
1k views
Creating self-contained python applications
I'm trying to create a self-contained version of pisa (html to pdf converter, latest version), but I can't succeed due to several errors. I've tried py2exe, bb-freeze and cxfreeze.
This has to be in ...
6
votes
9answers
342 views
Recommended python library/framework for local web app?
I want to create a simple LOCAL web app in Python.
The web server and "back-end" code will run on the same system (initially, Windows system) as the UI. I doubt it matters, but the UI will be a ...
3
votes
1answer
109 views
Django equivalent to “rake rails:freeze:gems” and “rake gems:unpack”
Is there and equivalent in Django to Rails' freezing and unpacking mechanism to a vendor directory so that an application becomes self-contained?
3
votes
2answers
2k views
Jquery html() and self closing tags
While creating self contained elements with Jquery html() the following issue happens:
$('#someId').html('<li><input type="checkbox" /></li>')
will create
<li><input ...
3
votes
5answers
707 views
Creating a self-contained source release with Maven
Up until now we used Ant in my company. Whenever we wanted to send the application to the client we run a special Ant script that packaged all our source code with all jar libraries and Ant itself ...
1
vote
4answers
104 views
User Control that acts like a standard Window, only confined to a pane
I'm making a program to generate code for me, and I'm fashioning the UI after Game Maker due to how easy the interface is. It has a SplitContainer with Panel1 containing a TreeView and Panel2 ...
0
votes
2answers
61 views
Self Contained MVC Website
I once read about a .net framework which allowed for an exe to house an entire website and server, so deploy was as easy as killing the exe and launching the new one. I am looking for that framework ...
0
votes
0answers
243 views
Self contained PHP script to convert HTML to PDF
Does anyone know of a self-contained PHP script/library that converts HTML to PDF? By "self-contained" I mean that the PHP script/library should require no modifications to the server, such as ...
0
votes
1answer
895 views
Resize image and add an overlay image without using tables and without losing style in xml
I am building a system to create a "fake video embed" with thumbnails and play buttons over them. The images are coming from a service at a standard size, so have no choice but to resize them in HTML. ...