Hello, is it possible to be able to remove a series from a chart by clicking on it in the legend, or do I Have to create a separate control for that? Thanks.
Is it possible to execute a Java program in the background so the user can execute other commands in front of it?
For instance, here is how the console might look for said program:
$ myProgram (executes program)
Program Started! (output from myProgram)
$ (the user can enter another UNIX command while myProgram is still running)
Thanks in advance!
from an instance of Site with a ManyToMany relationship to Kiosk, i'd like to check if a Kiosk object is part of the relationship.
I could do
self.apps.get(id=app_id).exists() and check if True
or
self.apps.get(id=app_id) and catch the ObjectDoesNotExist error
or
self.apps.filter(id=app_id) and check if True
If I have to catch a possible ObjectDoesNotExist error, I may as well use the second one
I can do the second but doesnt seem super clean
can use the third one but using filter on a unique ID seems wrong to me
You can tell me to use whatever works and that'll be a valid answer ;-)
I want to be able to run expdp and impdp onto a machine by directly specifying the connection parameters instead of a tns name that resides in tnsnames.ora. Is this possible?
Hi all,
We are calling a .Net webservice from our oracle database using the sys.utl_http package and we have also tested with the sys.utl_dbws package, this works fine when there is no security on the .Net webservice.
However, we would like to use sys.utl_http or sys.utl_dbws to call a .Net webservice with
Kerberos- or NTLM authentication (we're currently struggling with this).
Any hints on how to solve this, is it possible?
Thanks//Niklas
I have a numpy array [1,2,3,4,5,6,7,8,9,10,11,12,13,14] and want to have an array structured like [[1,2,3,4], [2,3,4,5], [3,4,5,6], ..., [11,12,13,14]].
Sure this is possible by looping over the large array and adding arrays of length four to the new array, but I'm curious if there is some secret 'magic' Python method doing just this :)
google-app-engine-django/ claims to have an "App Engine compatible implementation of the Django authentication framework". Does this authentication work only with Google Accounts? Is it possible to register a user with a username/password and authenticate him/her with that username/password without that user having a Google account?
I would appreciate any pointers to how this could be done with google-app-engine-django without Google Accounts authentication.
I love WinSCP for Windows. What are the best equivalent softwares for linux?
I tried to use sshfs to mount the remote file system on my local machine, but it is not as user friendly as simply launching a GUI, plus it seems to require root access on the client machine, which is not very convenient.
Of course command line tools such as scp are possible, but I am looking for a simple GUI.
Thanks!
Im very much new to map reduce and i completed hadoop wordcount example.
In that example it produces unsorted file (with key value) of word counts. So is it possible to make it sorted according to the most number of word occurrences by combining another map reduce task to the earlier one.
Thanks in Advance
I am working on a simple abstract database class. In my usage of this class, I'll want to have some instance be a singleton. I was thinking of having a abstract class that is not a singleton, and then extend it into another abstract class that is a singleton. Is this possible? Recommended?
Is this possible ? if yes how ? I am creating a windows application, which makes multiple web queries. I want the interface to have a loading symbol, so that the user doesn't feel that the screen has frozen.
Thank you.
Hi all,
I am creating a very simple, very large Postgresql database. The database will have around 10 billion rows, which means I am looking at partitioning it into several tables. However, I can't find any information on how many partitions we should break it into.
I don't know what type of queries to expect as of yet, so it won't be possible to come up with a perfect partitioning scheme, but are there any rules of thumb for partition size?
Cheers,
Adrian.
Hi, does anyone know if it's possible to disable YouTube ratings/comments using the Python API? I know you can do it using the 'yt:accessControl' tag in the XML request but I have no idea how to build a request manually. Any help would be appreciated :)
How does IPEndPoint finds a free port when I do new IPEndPoint(IPAddress.Any, 0), for example?
Is it possible to find a free port from a range, without the GetActiveTcpConnections method? because it is slow - I need a faster way to do this.
Thanks.
declare function Error:toString($this as javaObject) as xs:string external;
the previous binds a return String() to xs:string. is it possible to return a collection and bind it to an xQuery Sequence, say the following
declare function Error:toList($this as javaObject) as squenceType external;
so that it can be run through a flwr?
I want to be able to draw using this as my stroke. How would I do this as efficient as possible, and on the fly drawing, I was thinking CGPatternRef, but I really don't know how to do that.
Edit:
It does not need to warp to the path. I just coultn't fix that issue in Illustrator.
Hi,
I've a cxf webservice with multiple endpoint. I've succesfully deploy it. The problem is all endpoint's WSDL appear in the same servlet URL. Please tell me whether it is possible to have multiple endpoint and one endpoint for each servlet so that i have webservice1 at webapp/service1 and webservice2 at webapp/service2.
Thank you.
is it possible for ccnet to say that the build has failed in the ccnet tray and the web site if a unit test fails for the project?
Anyone know of a tutorial for this?
What would happen if an ordinary .exe file is copied to explorer.exe? Will it be automatically running as long as explorer.exe is running? This seems like a major security whole...is it even possible? Does anti-virus protect against that sort of thing?
I am looking for a simple to use IoC container for GUI applications written in Java/Scala.
It should support Convention over Configuration, lifecycle management, configuration in code (preferably without any XML needed at all), and checking dependencies at compile-time as much as possible. Something similar to Autofac would be perfect.
Hi everybody,
I'm using Subsonic (simplerepository) and SQLite, and I have a class with an Int64 property marked as [SubSonicPrimaryKey]:
[SubSonicPrimaryKey]
public Int64 MyID;
which is transformed into:
[MyID] integer NOT NULL PRIMARY KEY AUTOINCREMENT
Is it possible to disable the AUTOINCREMENT feature?
if i wanna use the opengl interface in android ndk, then will it be possible to show
me a simple tutorial to let me master the android ndk?
i just wanna know how to operate in android ndk first!
thanks in advance!