ide

How to use Eclipse for both Java and PHP?

江枫思渺然 提交于 2020-01-10 13:18:07
问题 There are Eclipse IDE for Java EE Developers (190 MB) and Eclipse for PHP Developers (139 MB) I've already installed Eclipse for PHP. I don't want to install another eclipse for Java. Is it possible to use the same Eclipse for both Java and PHP? EDIT I decide to install another Eclipse for Java finally.... 回答1: Select Help -> Install new Software Select http://download.eclipse.org/technology/epp/packages/galileo as update site URL (or add it if it's missing) Select "EPP Java Package" and (if

phpstorm 永久激活方法

拟墨画扇 提交于 2020-01-10 11:39:45
# jetbrains 2019.3 永久激活方法 ## 使用方法: 0. 先下载压缩包解压后得到jetbrains-agent.jar,把它放到你认为合适的文件夹内。 下载页面:https://zhile.io/2018/08/17/jetbrains-license-server-crack.html 1. 启动你的IDE,如果上来就需要注册,选择:试用(Evaluate for free)进入IDE 2. 点击你要注册的IDE菜单:"Configure" 或 "Help" -> "Edit Custom VM Options ..." 如果提示是否要创建文件,请点"Yes"。 参考文章:https://intellij-support.jetbrains.com/hc/en-us/articles/206544869 3. 在打开的vmoptions编辑窗口末行添加:-javaagent:/absolute/path/to/jetbrains-agent.jar 一定要自己确认好路径(不要使用中文路径),填错会导致IDE打不开!!!最好使用绝对路径。 一个vmoptions内只能有一个-javaagent参数。 示例: mac: -javaagent:/Users/persi/jetbrains-agent.jar linux: -javaagent:/home/persi

Netbeans C/C++ 7.2 -std=C++11 not recognized by gcc v4.6 or lower

北战南征 提交于 2020-01-10 05:34:05
问题 I left Eclipse to NetBeans for C/C++ development right after release v7 and it all seems a wise choice except that -std=C++11 flag in the current latest release, namely 7.2, is not recognized by gcc 4.6 ( -std=C++0x ) or the previous. Since Ubuntu 12.04 ships with gcc 4.6 (which should be fair enough to use for my jobs in term of 11 features) and a fresh installation of gcc 4.7 might bring about complexity in maintenance of the system (well...I'm a person extremely simple, neat and clean), is

How can I detect whether a user control is running in the IDE, in debug mode, or in the released EXE?

房东的猫 提交于 2020-01-10 03:52:07
问题 I have a user control that I'm building. It's purpose is to display the status of a class to the user. Obviously, this does not matter, and will slow things down when the control runs in the IDE, as it does as soon as you add it to a form. One way to work around this would be to have the control created and added to the controls collection of the form at run-time. But this seems less than perfect. Is there a way to set a flag in the control so that it can skip certain sections of code based

How can I stop all processes in IntelliJ?

家住魔仙堡 提交于 2020-01-10 01:05:14
问题 I am using intelliJ IDEA. When I run my programs and close the window, the process still remains. If I run a lot of programs, I need to click disconnect many times. Is there any way to stop all processes? Eclipse doesn't have this problem. 回答1: IntelliJ 2017.2 now has a "Stop All" button in the "Stop process" menu (the button on the top bar), with the default shortcut ⌘ + F2 on OSX: For older versions: Click the Stop button from the top bar. It will pop open a menu listing all processes. (The

How can I stop all processes in IntelliJ?

て烟熏妆下的殇ゞ 提交于 2020-01-10 01:05:06
问题 I am using intelliJ IDEA. When I run my programs and close the window, the process still remains. If I run a lot of programs, I need to click disconnect many times. Is there any way to stop all processes? Eclipse doesn't have this problem. 回答1: IntelliJ 2017.2 now has a "Stop All" button in the "Stop process" menu (the button on the top bar), with the default shortcut ⌘ + F2 on OSX: For older versions: Click the Stop button from the top bar. It will pop open a menu listing all processes. (The

Ubuntu下安装Golong并用Vscode做IDE最有效方法,避免99%的坑 | 轻松学习GO

邮差的信 提交于 2020-01-10 00:25:13
最详细的教程,避开99%的坑,亲测有效 由于大部分教程都是win版本的,所以专门总结了一个linux版本的,其核心在于环境配置和插件安装,经历本人通宵7小时解决了这个问题,用自己的踩坑帮助大家避坑,希望大家多多支持! 安装环境:ubuntu(Linux) + vscode 准备条件:已经安装好vocode 网上有很多教程,这里我就不一一赘述了,有需要的朋友查看其他博客,如果你觉得Github上的vscode源码慢的话,可以采用我的码云下载,我已经建好库,内容一样 https://gitee.com/feng20190/vscode 踩坑第一步:下载go语言环境 Golang官方网站是被屏蔽的,所以只能采用国内网站 https://golang.google.cn/dl/ 踩坑第二步:Linux安装Glang 我出现的问题:自己电脑是安装Anaconda的,加上当时自己没有理清一些环境配置环境的概念,后来装到了 home 目录下,安装到 home 下可以很好解决权限问题,个人电脑我建议可以这么做 将下载的二进制包解压至 /usr/local目录 tar -C /usr/local -xzf go1.13.linux-amd64.tar.gz 将 /usr/local/go/bin 目录添加至PATH环境变量:(这是个大坑,需要 将环境变量加载到 home 目录下的 .bashrc

python(1)ide

送分小仙女□ 提交于 2020-01-09 22:36:43
系统要求: 1. 不支持:xp 2. win7,要求:Service Pack 1 官网 https://www.python.org/ 简介 : tips1:交互式环境:运行python 打开的命令行,就是:python的交互式环境 tips2:命令行执行python:python .pyFileName tips3: pycharm安装注意事项: !Installation Options:要勾选:【 Add "Open Folder as Project"】;不要勾选:【.py】 !设置pycharm的字体大小:路径:file -- setting -- editor -- font !快速追踪函数定义:光标悬停 + 单击   返回来处:ctrl + alt +【方向键:左】 !导航菜单展示:view -- toolbar 来源: https://www.cnblogs.com/focusta/p/12173682.html

Eclipse IDE最常用的快捷键

三世轮回 提交于 2020-01-07 04:49:03
1、调试:F11 2、运行:Ctrl+F11 3、插入断点:Ctrl+Shift+B或双击行前 4、单步跳入:F5 5、单步跳过:F6 6、注释或取消注释代码:Ctrl+/ 7、格式化代码:Ctrl+Shift+F 8、代码模板提示:Alt+/ 9、查找/替换:Ctrl+F 10、搜索:Ctrl+H 来源: https://www.cnblogs.com/rainbow70626/p/12147590.html

Scala plugin for netbeans

大兔子大兔子 提交于 2020-01-06 08:57:11
问题 I try to run scala plugin under NetBesans 6.9.1. I install scala from arch linux repositories. Then i download netbeans-6.9.1 and scala plugin. Installed plugin. When i create scala application with hello world and try it to build i get error: You must set SCALA_HOME or environment property and append "-J-Dscala.home=scalahomepath" property to the end of "netbeans_default_options" in NetBeansInstallationPath/etc/netbeans.conf to point to Scala installation directory. How can i fix it? I put