16
votes
9answers
5k views
How to call external command in Python
I want to be able to call external command in Python.
Thanks for your help!
7
votes
6answers
238 views
always try-catch external resource calls?
Should I always wrap external resource calls in a try-catch? (ie. calls to a database or file system) Is there a best practice for error handling when calling external resources? …
3
votes
1answer
563 views
Externalizing Grails Datasource configuration
Grails 1.x allows using external configuration files by setting the grails.config.locations directive. Is there a similar approach available for externalizing the database configur …
3
votes
2answers
111 views
Integrating external applications with my applications
I have 2 desktop applications that I wish to integrate with external applications. One of the applications is extended with plugins which are developed by me, to provide specific f …
3
votes
1answer
263 views
Declaring external functions depending on whether they exist
Hi.
I would like to declare an external function from the kernel32.dll library whose name is GetTickCount64. As far as I know, it is defined only in Vista and in later Windows ver …
3
votes
3answers
252 views
External editor in Visual Studio 2008
Is there any way to set up external editor integration for VS2008?
By this I mean when I double-click on a .CPP file in the Solution Explorer, it should open in the external edito …
2
votes
4answers
70 views
Visual Studio 2008 on an External Hard Drive?
My laptop had an install error with Vista Ultimate and now it does not let me run Visual Studio. I was able to install Visual Studio 2008 on my HP TouchSmart without a problem and …
2
votes
3answers
117 views
Loading Hibernate property from an external source (HashMap)
I have a Message object associated with a User object (user_from and user_to). I persist the Message instances into a database using Hibernate (with JPA annotations) and the user_i …
2
votes
3answers
177 views
Gradient servers as external files in SVG
Hi,
the fill property in SVG accepts an url to point to a gradient/pattern element, an instance of a so-called 'paint server'.
The Question: Is it possible in any browser (that i …
2
votes
3answers
361 views
Receiving complex javascript values through external interface
I'm trying to receive and potentially send complex values through TWebBrowser (using TEmbeddedWB) with the provided external object.
For example; in javascript I would try to use t …
2
votes
1answer
524 views
Oracle External Tables: Advanced Flat File Layout
I wish to create an external table in an Oracle database, retrieving its data from a flat file on the server. The format of this file is non-trivial. Each line in this file can be …
2
votes
1answer
424 views
What version of GNU GCC supports the TR1 extern templates?
What is the earliest GNU GCC (g++) version to support the TR1 extern templates? For example, is it already supported in version 4.0?
2
votes
7answers
281 views
How to read an external page’s title?
I think it's possible with jQuery, but any ASP.NET serverside code is good for my situation too.
With jQuery I can load a page to for example a div, and filter the div for <tit …
2
votes
2answers
646 views
jquery document ready in external script
My page has an outside script that contains some jQuery. Most of it runs fine except this bit:
$(document).ready(function(){
alert('x');
});
That bit of code works …
2
votes
4answers
3k views
Eclipse: How to build an executable jar with external jar?
Hi all,
I am trying to build an executable jar program which depends on external jar downloaded. In my project, I included them in the build path and can be run and debug within e …
