|
I have seen a demo of F# and DirectX.
User selects a part of F# code and sends it to F# interactive. It between, the form's thread is working: the form shows dynamic content and responds to clicks.
Can I conclude that for existing C# winforms project ...
Started by modosansreves on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I debug my code in different containers like MS Office, IE, Windows.
To write the host of your code.
|
|
I'd like to write a script that interacts with my DB using a Django app's model. However, I would like to be able to run this script from the command line or via cron. What all do I need to import to allow this?
Started by Corey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
'] = 'myproject.settings'
Now you should be able to access the models:
from myproject.models import MyModel all_my just type:
./manage.py runscript path/to/my/script.py
django-command-extensions also has commands.
|
|
My network has a kerberos server for username/password authentication. Machines that run my application have functioning kerberos clients, so users can use kinit, etc.
How do I interact with the server programatically, from my own custom applications?...
Started by John McAleely on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is your kerberos provider Windows or something else?
On Windows, Kerberos is a native protocol supported... .
GSSAPI is indeed the recommended approach, but the precise details will depend on your language environment and whether you need interop with Windows .
|
Ask your Facebook Friends
|
Perhaps if I make the my documentation better I could spend less time supporting developers and more time developing myself:
I develop a critical platform used by 10 other developers and 50 end users. The developers are of mixed ability ranging from domain...
Started by Salim Fadhley on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Perhaps a wiki?
If you just wanted to have a flowchart/stat-machine thing where the user moves from the start point to a set of possible solutions by answering questions, then you could probably implement this as a set of wiki pages, where the possible... .
|
|
Hello,
I am trying to embed an interactive form in my WebDynpro application. I succeeded on displaying the form, but I cannot make it interactive.
The form actually has only one interactive element, which is a URL launch button. I unfortunately cannot...
Started by Thomas Debouverie on
, 12 posts
by 4 people.
Answer Snippets (Read the full thread at sap):
So finally.
As well redo my entire form, as I have made extensive use of the DDIC base functionalities.
|
|
Code I'm working on collects performance data (eg CPU usage) from the operating system. I'm wondering if I should bother to attempt to unit test this code. It seems that to unit test code, you need to design code that is isolated into units. My code is...
Started by Scott Langham on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In other words are the any parts of you app that can work in isolation? If not, then theres not really anything... .
Do you have any business logic? Calculations? or are you just grabbing and displaying data?
Unit testing is useful for, well, testing units .
|
|
I am trying to find a better way to integrate IRB with my normal ruby devleopment. Currently I rarely use IRB with my code. I only use it to verify syntax or to try something small.
I know I can load my own code into ruby as a
require 'mycode'
but this...
Started by Mutewinter on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't tend to use irb directly.
I just use rdebug to debug any of my ruby or RoR code.
|
|
In my company there is a proxy that requires credentials.
I use Windows XP and I want to apply an indirection layer in my tcp/ip stack that makes this completely transparent.
For example it would be nice a software that I can configure with my company...
Started by Ricibald on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
I highly doubt that this is really what you are looking for; most of your network traffic--including... .
What kind of proxy does your company use? If you don't know, just tell me how you configure it in your browser .
You can use Squid as a transparent proxy.
|
|
I'm building a Rails web app and was wondering what is the best way to get a list of products that Amazon would return based on a search term?
For example, if I sent amazon the term "iphone", I'd get a list of iphones back from Amazon.
Does anyone know...
Started by Johnny Tee on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
From C:/Documents and Settings/kumar/My Documents/Aptana Studio Workspace/amazon_test/lib/amazon/aws.rb:169:in get_page' from C:/Documents and Settings/kumar/My Documents/Aptana Studio Workspace/amazon_test/lib/amazon/aws/search.rb:305:....
|
|
How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?
Started by ibz on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
Line as a console:
$ perl -e 'print "JAPH\n"'
Then I can use my bash history to get back old commands/perl while (<>) { chomp; my $result = eval; print "$_ = $result\n"; }
Whatever you type.
|