|
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... .
|
|
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.
|
|
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.
|
|
Where can I find an online interactive console for my favorite language/api?
Ruby Python? PHP? Perl? Scheme? Java? C?
Started by Nick Retallack on
, 7 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Skulpt is a Python implementation in JavaScript....
Google has an online interactive shell for Python .
Why made one for Ruby
Ruby Python You can play around with jsScheme for Scheme, but it's a toy and shouldn't replace a console-based interpreter .
|
|
In the bad old days of interactive console applications, Don Libes created a tool called Expect , which enabled you to write Tcl scripts that interacted with these applications, much as a user would. Expect had two tremendous benefits:
It was possible...
Started by Norman Ramsey on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This has allowed me to write pretty extensive user tests in which forms and inputs are driven and their results... .
You might be looking for Selenium
I've used Selenium RC in conjunction with Python to drive web page interactions programmatically.
|
|
My company have a web application product for distribution planning and scheduling. An important part of it is a gantt chart component where user can fine tune the schedules. Currently the gantt chart component is pure javascript+dhtml.
I am currently...
Started by bungrudi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi,
I would just like to update you on our....
ILog Elixir http://www-01.ibm.com/software/integration/visualization/elixir/about/?S%5FCMP=wspace
Strange, it wasn't owned by IBM before and it had a much better sales information when it wasn't owned by IBM .
|