Tagged Questions
The interactive tag has no wiki summary.
33
votes
5answers
11k views
How do I combine the first two commits of a Git repository?
Suppose you have a history containing the three commits A, B and C:
A-B-C
I would like to combine the two commits A and B to one commit AB:
AB-C
I tried
git rebase -i A
which opens up my ...
23
votes
2answers
4k 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-prompting it on ...
23
votes
20answers
2k 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 make this interactive ...
20
votes
12answers
2k 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 separate machine
run on a ...
18
votes
8answers
3k views
Are there good Java libraries that facilitate building command-line applications?
I need to write a simple command-line application in Java. It would be nice to use a library that takes care of parsing commands and takes care of things like flags and optional/mandatory ...
18
votes
4answers
9k views
Interactive console using Pydev in Eclipse?
I'm debugging my Python code in Eclipse using the Pydev plugin. I'm able to open a Pydev console and it gives me two options: "Console for currently active editor" and "Python console". However none ...
18
votes
15answers
9k views
How can I start an interactive console for Perl?
How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?
18
votes
7answers
4k views
C# Console?
Does anyone know if there is a c# Console app, similar to the Python or Ruby console? I know the whole "Compiled versus Interpreted" difference, but with C#'s reflection power I think it could be ...
17
votes
31answers
14k views
What are possible/good ways to prototype iPhone applications?
This is intentionally left broad. If you wanted to show users what iPhone/mobile applications could to for them. The more interactive the better, but it must be quick to build as you can't code up ...
17
votes
11answers
4k views
Online Interactive Consoles
Where can I find an online interactive console for programming language or api?
Ruby
Python
Groovy
PHP?
Perl?
Scheme?
Java?
C?
16
votes
1answer
403 views
dynamic interactivity problem
I am trying to have two panels, the left showing a graphic and two locators, the right one a zoomed-in version in the area defined by the locators.
I've tried
ClearAll[mndpt];
mndpt = Compile[{{c, ...
16
votes
4answers
996 views
Haskell: How to write interactive interpreter on top of a State monad?
We're working on a model filesystem that uses a state monad internally. We have a type class with operations like these:
class Monad m => FS m where
isDirectory :: Path -> m Bool
children ...
13
votes
2answers
196 views
How to define parameter values graphically, under constraints, in Mathematica
I'm relatively new in Mathematica (and StackOverflow) and I'm trying to figure out whether it's possible to implement the following Mathematica interface.
I would like to create an interface in ...
12
votes
4answers
430 views
How does sympy work? How does it interact with the interactive Python shell, and how does the interactive Python shell work?
What happens internally when I press Enter?
My motivation for asking, besides plain curiosity, is to figure out what happens when you
from sympy import *
and enter an expression. How does it go ...
11
votes
2answers
587 views
Is there an interactive graphing library for python
I'm looking for an interactive graphing library for Python.
By "graph", I meant a set of nodes connected by a set of vertices (not a plot of values over x-y axis, nor a grid of pixels).
By ...
11
votes
1answer
277 views
Writing a lazy, functional, interactive command line application in Clojure
I'm wondering: what is the best way to write a Clojure program that interacts with a user or another program thorough stdin and stdout?
Clearly it would be possible to write some kind of imperative ...
10
votes
5answers
3k views
Java's interactive shell like ipython
I am quite new to java, and I would like to learn java just like python, with the interactive shell IPython.
I try a few a them, like beanshell, jython, jythonconsole, JyConsole... Almost all of them ...
9
votes
1answer
621 views
How to create logic bricks programmatically in Blender?
I would like to let my initializing script to create additional sensors/controller/actuators necessary for an interactive Blender application (not necessarily a game). This is preferable for two ...
9
votes
5answers
1k 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 guess I should ...
8
votes
5answers
924 views
How are debug consoles implemented in Python?
I've seen a couple of Python IDE's (e.g. PyDev Extensions, WingIDE) that provide a debug console - an interactive terminal that runs in the context of the method where the breakpoint is. This lets you ...
8
votes
3answers
927 views
Effective Keyboard Input Handling
What is a good way to implement keyboard handling? In any language, where I write a keyboard-interactive program (such as a tetris game), I end up having some code that looks like this:
for event in ...
7
votes
3answers
245 views
Interactive plotting in Python?
Matlab and Mathematica both have features that allow the user to manipulate the contents of a plot using, say, a slider. For example, if you have a set of 3D data, it is easy to make a small program ...
7
votes
5answers
469 views
Tell if python is in interactive mode
In a python script, is there any way to tell if the interpreter is in interactive mode? This would be useful, for instance, when you run an interactive python session and import a module, slightly ...
7
votes
5answers
624 views
Is there an equivalent of Don Libes's *expect* tool for scripting interaction with web pages?
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. ...
6
votes
2answers
238 views
Writing a “real” interactive terminal program like vim, htop, … in C/C++ without ncurses
No, I don't want to use ncurses, because I want to learn how the
terminal works and have fun programming it on my own. :) It doesn't
have to be portable, it has to work on linux xterm-based ...
6
votes
2answers
550 views
EaselJS vs Multiple Canvas vs Hidden Canvas for interactiveness
1.) I found a canvas API called EaselJS, it does an amazing job of creating a display list for each elements you draw. They essentially become individually recognizable objects on the canvas (on one ...
6
votes
5answers
308 views
Is there a posibility to execute a Python script while beeing in interactive mode
Normally you can execute a Python script for example: python myscript.py, but if you are in the interactive mode, how is it possible to execute a Python script on the filesystem?
>>> exec(File) ???
...
6
votes
1answer
205 views
In clojure, how can I undef a var from a namespace?
In clojure I have lines like this that define default values:
(def *http-port* 8080)
I've now decided to formalize these kinds of values into a configuration unit and I would like to undefine the ...
6
votes
3answers
277 views
What is in your Python Interactive Startup Script?
Are there any common timesavers that people put in Python Interactive Startup scripts? I made a dopey one to help me know where I am when I try to do relative file operations or imports, using a ...
6
votes
3answers
335 views
How do Ruby and Python implement their interactive consoles?
When implementing the interpreter for my programming language I first thought of a simple console window which allows the user to enter some code which is then executed as a standalone program as a ...
5
votes
2answers
89 views
Is there a way to squash a number of commits non-interactively?
I'm trying to squash a range of commits - HEAD to HEAD~3. Is there a quick way to do this, or do I need to use rebase --interactive?
5
votes
1answer
312 views
code manipulation via interactive tree for Mathematica
This question caused me to ponder an interactive method for editing code. I wonder if it is possible to implement something like this given the dynamic capabilities of Mathematica.
Consider an ...
5
votes
4answers
377 views
Erlang / Python framework for Web2.0 / Mobile2.0 application, includes video, chat, click-to-call etc
Am a relative newbie to both Erlang & Python (can write/read small programs, yet to master FP-paradigms), willing to learn but need to move fast from learning to production, seeking some community ...
5
votes
3answers
263 views
Emacs Lisp: How to, an interactive buffer with REPL?
Imagine the dunnet.el game, the eliza doctor or the IELM mode...; This is, evaluating answers and prompting new questions on the main buffer, then making some actions according to their elisp rules.
...
5
votes
3answers
519 views
Is it possible to build a interactive C shell?
I'm just wondering if this is possible using either (Python, Java or C)? I'm looking for something like IPython for Python.
5
votes
3answers
154 views
What's a good way to run Javascript Interactively?
For Ruby, we have irb. For Python, we have IDLE. For Javascrpt, is Firebug or Chrome on a blank page the best way to run or test Javascript interactively?
5
votes
2answers
582 views
Show or hide elements in PDF via Javascript
In PDF files it is quite easy to interact with form fields via the Javascript API.
Is it possible to do this (specifically showing/hiding) to arbitrary elements on a page? Say, not just form fields, ...
5
votes
5answers
224 views
Is there a way to make python become interactive in the middle of a script?
I'd like to do something like:
do lots of stuff to prepare a good environement
become_interactive
#wait for Ctrl-D
automatically clean up
Is it possible with python?If not, do you see another way ...
5
votes
1answer
244 views
Hosting .fsx scripts inside larger applications
I want to expose my F# libraries as a scriptable tool for data manipulation.
Optimally, I want this scripting facility to not require a full F# install with fsi and so on.
Is there a way to link ...
5
votes
1answer
511 views
Is there a interactive debugger for php like ruby's debugger?
I watched the Creating a weblog in 15 minutes with Rails 2 and after 9 minutes in the video he shows ruby's interactive debugger, which allows you to call functions/methods from within a running ...
4
votes
2answers
91 views
Is there an interactive output device to view 3D graphs in R?
I'm currently generating 3D graphs in R using the persp-command. To change the viewpoint one has to set the parameters theta and phi. To evaluate (a good viewpoint on) the graph, one has to try lots ...
4
votes
2answers
114 views
Custom scroll bar behavior in Javascript?
I'd like to reproduce an effect similar to this page: http://artofflightmovie.com/ where the vertical scrollbar controls the progression of the browser "viewport" over a pre-defined path.
I am ...
4
votes
2answers
99 views
Embed Python CLI in a Ruby process?
As part of a larger project, I'm trying to "embed" a Python interactive interpreter in a Ruby process. I'd like to be able to do something like the following:
$ irb
irb(main):001:0> pipe = ...
4
votes
3answers
186 views
How to make interactive charts together with R language
I'm helping my friend make a website. He previously used R language to generate statistical charts. Now he want to generate some dynamic chart so that when users move mouse over certain part of the ...
4
votes
3answers
242 views
bash script: How to implement your own history mechanism?
I'm implementing an interactive bash script similar to the MySQL client, /usr/bin/mysql. In this script I need to issue various types of 'commands'. I also need to provide a history mechanism whereby ...
4
votes
2answers
142 views
Creating an interactive website
I want to create an interactive website using aspx and ajax, that there will be an option to create chess game room for example and other players will be able to join.
I have 2 Questions:
I wonder ...
4
votes
3answers
1k views
Does an updated 'vimtutor' exist?
vim comes with a nice built-in interactive tutorial. You can access this tutorial by just running:
$ vimtutor
It is very easy to use because it creates working cases for basic commands. Is there ...
4
votes
1answer
173 views
Adding Completion to (interactive)
Is there any way to add my own completion to an (interactive) elisp function? Ideally, I'd like to pass it a list of strings that it would tab-complete from. I know that using (interactive "D"), ...
4
votes
3answers
486 views
Interactive architectural diagram tools
Are there any tools that would allow me to easily create an interactive architectural diagram?
I envisage the ability to view a graphical depiction of the architecture at a high level. I would then ...
4
votes
3answers
7k views
How can I create a Dynamic - Interactive image map with jQuery?
So I am using the .Net framework, building with ASP.NET MVC, how do I create a Dynamic, interactive web 2.0 style Image Map? Where say for example, on a world map, if you hover over a country, the ...