0
votes
1answer
18 views
Python importing modules differently when run interactively/non-interactively
One of my Python scripts runs in interactive mode but fails when run from the command line. The difference is that when run from the command line, it imports modules from a bad .eg …
2
votes
2answers
79 views
Python: Read password from stdin
Scenario: An interactive CLI Python program, that is in need for a password. That means also, there's no GUI solution possible.
In bash I could get a password read in without re-p …
2
votes
1answer
68 views
git rebase interactive: squash merge commits together
Hi,
I wanted to have a simple solution to squash two merge commits together during an interactive rebase.
My repository looks like:
X --- Y --------- M1 -------- M2 (my-featu …
0
votes
1answer
37 views
Making a Background Service Somewhat Like Apple’s Spotlight in VIsual Studio C#
I am about to start working on application that runs in the background waiting for a certain user input somewhat like apple's spotlight. Basically the user will give the service a …
2
votes
2answers
82 views
What is scala -i command-line option supposed to do ?
I'm finding the scala '-i' command line option quite useful for running some scala code and then dumping me into an interactive shell so I can prod/inspect the things it defined.
…
0
votes
2answers
74 views
Define an emacs command that calls another emacs command (preserving interactive stuff)
How can I define an emacs command X that does something and then calls another emacs command Y and also copying the interactive interface of the command Y too?
I want to define an …
1
vote
1answer
64 views
How to wrap a CLI program in Python (keeping the interactivity)?
Hello everybody,
I'd like to write a wrapper for an interactive CLI Program (the Asterisk CLI).
Basically, I need to keep the interaction with the CLI (including tab-completion) b …
4
votes
10answers
318 views
Is there a good interactive 3D graph library out there?
I'm looking for a library that will layout and display graphs (i.e. network diagrams, not charts) in 3D, with some interactivity like selecting and dragging nodes, rotating the dis …
11
votes
8answers
406 views
What are the available interactive languages that run in tiny memory?
I am looking for general purpose programming languages that
have an interactive (live coding) prompt
work in 32 KB of RAM by itself or 8 KB when the compiler is hosted on a separ …
1
vote
5answers
277 views
C++ interpreter / console / snippet compiler
Hi,
I am looking for a program where I can enter a C++ code snippet
in one window, press a button, and get output in another window.
Compilation should somehow be hidden behind th …
20
votes
20answers
891 views
A Programming Presentation for eight year olds
I have been given the opportunity to give a small presentation to a group of young children about what I do as a software developer.
I have a few ideas kicking around for how to m …
2
votes
5answers
120 views
Python Drop into REPL
Is there a way to programmatically force a Python script to drop into a REPL at an arbitrary point in its execution, even if the script was launched from the command line?
Edit: I …
0
votes
1answer
34 views
Access an instance from Terminal
Can't figure this out. In Terminal, I import a module which instantiates a class, which I haven't figured out how to access. Of course, I can always instantiate in Terminal:
Serv …
1
vote
8answers
168 views
list of methods for python shell?
You'd have already found out by my usage of terminology that I'm a python n00b.
straight forward question:
How can i see a list of methods for a particular object in an interacti …
2
votes
3answers
155 views
python: find out if running in shell or not (e.g. sun grid engine queue)
is there a way to find out from within a python program if it was started in a terminal or e.g. in a batch engine like sun grid engine?
the idea is to decide on printing some prog …
