问题标签 [interactive]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 将命令的输出通过管道传输到交互式 python 会话?
我想做的是
我想 ipython 解决方案是最好的。如果这无法实现,对于我想处理各种其他命令的输出的情况,您的解决方案是什么?之前绝望的时候用过 subprocess 来做,但并不理想。
更新:所以这越来越接近最终结果:
现在我们怎样才能把它弯曲成一个形式
pyout
“我所有问题的神奇解决方案”在哪里。它可能是一个 shell 脚本,它编写管道输出然后运行 ipython。出于同样的原因,bp 所说的一切都失败了。
visualization - 关于命令界面/交互式可视化的书籍
注意:标记为社区 wiki。
注意:在投票结束“不是真正的问题”之前——问题是:常见的交互式可视化设计模式有哪些?
博览会:
我有这个巨大的实时模拟。我正在开发交互式可视化工具来监控模拟。我熟悉 OpenGL,但不习惯编写 HCI/可视化类型的代码。所以我很好奇:我应该读什么书/文章?
我正在寻找用于编写交互式可视化的“C 编程语言/SICP/设计模式”类型的设备资源。“互动”很重要——我不想只生成漂亮的图片;我想生成漂亮的图片并能够交互和探索可视化。
谢谢!
architecture - 交互式架构图工具
是否有任何工具可以让我轻松创建交互式架构图?
我设想能够在高层次上查看架构的图形描述。然后,我将能够单击架构的特定部分并深入了解它,从而揭示该部分的更详细分解。然后,该过程可以根据需要继续进行尽可能多的级别。
有谁知道任何工具可以让我创造这种体验?或者我是否应该尝试使用 Visio/Powerpoint 来实现这一点?
python - 判断 Python 是否处于交互模式
在 Python 脚本中,有没有办法判断解释器是否处于交互模式?这很有用,例如,当您运行交互式 Python 会话并导入模块时,会执行稍微不同的代码(例如,关闭日志记录)。
我已经查看了tell python是否处于-i模式并尝试了那里的代码,但是,该函数仅在使用-i标志调用Python时才返回true,而不是在用于调用交互模式的命令python
没有参数时返回.
我的意思是这样的:
perl - perl 中的交互式提示
向我的用户提供字符串值并让用户编辑它的简单方法是什么……如果不是 100% 正确,他不必重新输入整个字符串。
emacs - 将完成添加到(交互式)
有什么方法可以将我自己的完成添加到(interactive)
elisp 函数中?理想情况下,我想向它传递一个字符串列表,它将从中完成制表符。我知道使用(interactive "D")
,(interactive "F")
或者(interactive "b")
分别给你完成目录、文件和缓冲区名称,但是更一般的输入呢?
haskell - Haskell 输入和将值传递给函数
我必须为 buyItem 传递的值是
但我想将“Akon”发送到艺术,20 我想发送 num
它给了我这个错误
请帮我
vim - 是否存在更新的“vimtutor”?
vim 带有一个很好的内置交互式教程。您只需运行以下命令即可访问本教程:
它非常易于使用,因为它为基本命令创建了工作案例。有没有更高级的教程?有没有人想过构建一个来帮助用户将他们的 VIM 技能提升到一个新的水平?大多数 vim 教程和备忘单网站只显示命令,但不一定显示特定用途和示例。
那里有高级教程吗?这种类型的项目可以成为每个人都可以添加示例的开源文档吗?像 Vim Interactive Wiki 或类似于具有内置正则表达式测试器的正则表达式站点。
python - 有没有办法让 python 在脚本中间变得可交互?
我想做类似的事情:
python有可能吗?如果没有,你有没有看到另一种做同样事情的方法?
python - Python and Eclipse: How to use interactive console after running a module, with the module variables and functions
Let's consider 3 situations:
1) I write a pyhon module in Eclipse (pydev) and run it Ctrl-F11. The module runs and I don't have any control or access (AFAIK) to the module variables and functions.
2) I have defined a python interpreter as an external tool in Eclipse, so I can run it within Eclipse. It works fine, but it does not have tab completion.
3) I open my module with python IDLE (not eclipse) and press f5 (run). It runs on the IDLE opened window and when it finishes I have all the variables and functions form the module to play with.
So I have 2 questions: a) how to enable, if possible, tab completion in python interpreter in Eclipse? If it's not possible, do I have any alternative to standard Python interpreter?
b) I would like to run step 1) and then be able to continue developing / testing with python interpreter, just like I do with IDLE, but all inside Eclipse. Any suggestion?
Thanks in advance