ide

PyCharm and filters for external tools

让人想犯罪 __ 提交于 2019-12-03 05:57:56
I'm trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make sure our code conforms. I've configured an external tool command to run pep8 and it works good. I see the capability to create filters that will cause the output to be parsed into something PyCharm can use. I've read the docs and searched Google but can't find an example to make this work. Docs are http://www.jetbrains.com/pycharm/webhelp/add-filter-dialog.html I'm using PyCharm 1.2 and the output filter I'm using looks

IntelliJ Thread Debug

我怕爱的太早我们不能终老 提交于 2019-12-03 05:52:19
Does IntelliJ IDEA provide thread-debugging? That is - Netbeans allows you to debug multiple threads, and halting at those breakpoints (automatically). However all I seem to be getting in IntelliJ is "thread dumping", which seems to be an analysis that is manual, and a snapshot taken when I clicked 'Thread Dump'. Is there something I'm missing? I have google'd and not found sufficient information to assist. I think you can. I have suspended threads via breakpoints by setting the suspend policy . This will suspend the thread that is executing this piece of code. If you have multiple thread then

Is there something like bpython for Ruby?

不羁岁月 提交于 2019-12-03 05:47:10
问题 IRb is pretty plain compared to bpython, even when using wirble. Is there any ruby equivalent of bpython? 回答1: Use Pry: http://pry.github.com It is written from scratch and let's you: view method source code view method documentation (not using RI so you dont have to pre-generate it) pop in and out of different contexts invoke at runtime, in any context syntax highlighting gist integration view and replay history open editors to edit method using edit-method obj.my_method syntax A tonne more

How do I install a specific version of an IDEA plugin?

久未见 提交于 2019-12-03 05:43:52
问题 I have experienced problems since moving to the latest version of one of the IDEA plugins I use. I can download ZIP files of previous versions of the plugin from their website but I can't find any installation instructions for how to manually install a specific version of a plugin. Anyone know how to do this? 回答1: Think you can simple drop the jar in the plugins directory: idea.plugins.path=${user.home}/.IntelliJIdea80/config/plugins On Windows: idea.plugins.path=%USERPROFILE%\.IntelliJIdea80

Command history in R

孤街醉人 提交于 2019-12-03 05:34:19
Is there any IDE -from the ones supporting R-, that gives access to the command history (at least to the current session's commands)? Or is there a way to get a (character or expression) vector with those commands in R? For those of you that have been using MATLAB, I mean something like the Command History window there.. Thank you history(Inf) opens a window similar to that in MATLAB. savehistory('file') myhistory <- scan('file','character') Might do the trick. I would highly recommend to use Emacs with ESS (Emacs speaks Statistic) Eclipse with Stat-ET plugin will get you command history

Has anyone tried NetBeans 6.5 Python IDE?

跟風遠走 提交于 2019-12-03 05:30:49
Has anyone tried the NetBeans 6.5 Python IDE ? What are your opinions? Is it better/worse than PyDev ? Do you like it? How does it integrate with source control tools (especially Mercurial )? Bartosz Radaczyński I will share some of the feelings from using it for quite a while now. Things that are roughly the same quality as in Eclipse+Pydev+mercurial: editor, code-completion debugger features Things that are better: autoimport color schemes (Norway today rocks) Mercurial support (though it is getting better and better in Eclipse) Things that are worse: zipped egg packages are not recognized

Wanted: offline IDE for developing Html / JavaScript on Android tablet [closed]

走远了吗. 提交于 2019-12-03 05:30:34
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . In have a Motorola Xoom tablet and I would like to use it to develop some small Html / Css / JavaScript / jQuery applications. **Does

What are the IDEs available for gtk+ development [closed]

烈酒焚心 提交于 2019-12-03 05:28:32
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Recently i start to studying C/gtk+ programming. And want to ask one question: what are the IDEs available for C/gtk+ development apart from command line interface? Thank you. In my (biased) opinion and experience, you're better off learning GTK by command

Activity Bar width in Visual Studio Code

心已入冬 提交于 2019-12-03 05:25:59
Is there a way to selectively change the width of the Activity Bar in VSCode (v. 1.14)? I have a 1366×768 screen where every pixel counts, so I would like to make this bar narrow and icons smaller, by at least 50%. In comparison to vertical OS interface elements, e.g. Windows 10 Taskbar or Plasma 5 panel it looks monstrous and out of place: I've been also trying to find a solution for the Insider version of VSCode, but apart from just hiding it I haven't discovered anything relevant yet. I have "window.zoomLevel": 0 set in settings.json . You can also use the negative zoom trick in settings

Free alternative to MPLAB (PIC development)

拈花ヽ惹草 提交于 2019-12-03 05:24:31
I started using MPLAB recently, but for someone that works with Eclipse and VS the IDE it's very limited. Do you know any free IDE or how to configure Ecplise or Netbeans to PIC development? Thanks all The underlying toolchain (compiler/linker etc.) can be used from any environment including Eclipse and Visual Studio, though Eclipse is probably the more flexible in this respect. MPLAB has a feature to export a project as a makefile that can be used with GNU make, although you may rather generate your own makefile, or use the project management provided by Eclipse. In Visual Studio, create a