ide

Android Studio Logcat colors best practice

时光总嘲笑我的痴心妄想 提交于 2019-12-04 07:35:15
问题 It is really hard to follow up Android logcat output all in a same color. is there any best practice for changing different logs color? 回答1: I know that using solid black color logcat in Android Studio is awful!!! Here is my best practice colour codes that you can use for changing the face of you logcat in Android Studio to make it more useful. Go to Android Studio Preferences and search for logcat and 'Save As' your own scheme: Assert : 9C27B0 Debug : 2196F3 Error : F44336 Info : 4CAF50

IntelliJ not starting after OS X Yosemite update

半城伤御伤魂 提交于 2019-12-04 07:35:05
问题 I upgraded my OS X to Yosemite and now my IntelliJ IDE is not starting. Here is the error message: To open “IntelliJ IDEA” you need to install the legacy Java SE 6 runtime. 回答1: The officially recommended solution is to install/update JDK 1.6 on Mac ( if this link doesn't open in Safari, try Firefox ). Modifying Info.plist will break the application digital signature and prevent the patch updates . We do not recommend modifying Info.plist file to run under JDK 1.7 or 1.8. Please check this

Getting a lightweight installation of Java Eclipse

大兔子大兔子 提交于 2019-12-04 07:27:24
问题 Having dealt with yet another stupid eclipse problem, I want to try to get the lightest, most minimal Eclipse installation as possible. To be clear, I use eclipse for two things: Editing Java Debugging Java Everything else I do through Emacs/Zsh (editing JSP/XML/JS, file management, SVN check-in, etc). I have not found any aspect of working in Eclipse to do these tasks to be efficient or even reliable, so I do not want plug-ins that relate to it. From the eclipse.org site, this is the

Eclipse: is there a way to get Eclipse to output the commands given to run your program?

十年热恋 提交于 2019-12-04 07:21:52
I'm having some build issues with Eclipse in that it runs my app just fine in eclipse but for some reason when trying to run using #>java MyClass it ends up not running due to not being able to find the class. This makes no sense so I was wondering if there was a way to have eclipse output what it's feeding into the jvm to get it to build/run. Is this possible? Thanks you can get the exact command used by Eclipse like this: Run your program inside Eclipse. Go to the Debug perspective. Terminate the program, or let it end. right click on the second line. (Terminated, exit value... ) and select

How to develop C programmes without an IDE in Windows?

*爱你&永不变心* 提交于 2019-12-04 07:17:31
I want to have a deeper understanding of how C programmes are run. But IDEs stops us from doing that. So is it possible that I manually set up the environment and write code in text editors, and finally run it in a prompt? If the answer is yes, how? As others have said, install MinGW (I'm assuming you are using Windows) and put its bin directory on your path. Open a command line windows, and create a file with a text editor, such as notepad - call it foo.c: #include <stdio.h> int main() { printf( "hello world\n" ); return 0; } Then, use the gcc compiler to compile it, creating an executable

How to detect if file in IDE is being edited using Open Tools API

北城余情 提交于 2019-12-04 06:37:41
I made a small IDE plug-in using Open Tools API that accesses ClearCase. It has menu items "Check In", "Check Out", etc. It works OK but I want it to check out a read-only file automatically if I start typing in IDE editor or if I attempt to save the file. Do you think this is possible? I tried a few things but gave up eventually. IOTAEditorServices.KeyboardServices has AddKeyboardBinding method which looked promising. Using it I added a notifier with binding type btPartial (and later tried btComplete) and the plug-in started detecting some shortcut key presses but not all keyboard events, far

Can Notepad++ be configured to recognize compiler error messages and jump to the respective location?

久未见 提交于 2019-12-04 06:11:54
I am building some fairly large code on a machine without an IDE, but with Notepad++. The compilation results are redirected to a file and sometimes, there are error messages, which satisfy a well defined regex. I wonder if NPP has a plugin, which would parse the log file, recognize the error/warning messagess and let me navigate between the respective error/warning locations. EDIT Here is a typical example of the output (produced by make running MSVC cl.exe compiler): /cygdrive/c/vs2010/VC/Bin/cl -Zi -nologo -MD /D _STATIC_CPPLIB -FdC:/openjdk/OUTPUT~1/tmp/sun/sun.awt/awt/obj/Win32SurfaceData

Eclipse doesn't start in Ubuntu 14.04

时间秒杀一切 提交于 2019-12-04 06:08:42
I have a problem trying to launch Eclipse in Ubuntu 14.04. Splash picture pops up, then blinks, turns white - and nothing happens until kingdom come. I have tried Luna, Kepler and 3.8 (from Ubuntu repository). EE and SE editions - both the same. I have also tried to launch them with different (oracle) vm - 1.7 and 1.8. And yes, I have tried the -clean and simple workspace removal. This is the only thing it says in console: org.eclipse.m2e.logback.configuration: The org.eclipse.m2e.logback.configuration bundle was activated before the state location was initialized. Will retry after the state

Missing platform-tools when installing Android Studio on Mac OSx

廉价感情. 提交于 2019-12-04 05:05:24
I am trying to install Android Studio on Mac OSx, with the goal of learning some Android development. The instructions provided were simply to: 1. Launch the .dmg file you downloaded. 2. Drag and drop Android Studio into the Applications folder. 3. Open Android Studio and follow the setup wizard to install any necessary SDK tools. I get to the setup wizard, select everything, give it 6 gigs of ram when asked, then it proceeds to download components and install. However, at some point a popup appears: The following SDK component was not installed: platform-tools The output shows: Ignoring

A nice starter kit for OpenCL? [closed]

人盡茶涼 提交于 2019-12-04 05:01:27
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I've got some experience with OpenGL and it's programmable pipeline. I'd like to give OpenCL a try, though. Could somebody propose a nice integrated kit for working with OpenCL ? I know only of QuartzComposer which looks nice, but it's mac-only. Anyone knows if it supports hand-editing of OpenCL kernels or is it all only through the GUI? Any other Linux / Windows alternative? Quartz Composer does