Rubymine 8: How to turn off Database Detector - rubymine

How do I turn off the Database Detector in RubyMine 8?

You can disable a notification popup for Database Detector in File | Settings | Appearance & Behavior | Notifications.

Related

Highlighting code with mouse goes wild in Visual Studio Code

When I try to highlight some code in Visual Studio code it goes crazy and moves very fast. E.g. I want to select around one page and end up selecting 10 "pages" worth of code.
How can I make it act normaly when I want to highlight some code?
I used to have the same issue. A weird behavior with mouse selection. This was my solution path.
Check for hardware failures.
Unplug the keyboard dongle. If suddenly the mouse selection goes well. Do this steps.
Check for keys stucked βœ…
Uninstall the keyboard driver from Device Manager βœ…
Change the dongle USB port βœ…
And after all this steps, my cursor comes back to normality... for a while 😐.
Made the keyboard check with keyboard tester
Detect the key with the failure (Fortunately Insert in my case).
Download the app keytweak and disable that key.
This is a workaround if you don´t want to buy a new keyboard. I hope your failing key isn't any vocal 😬. If so... buy a new one.

Change font for ORACLE SQL but the display words are still small

I have tried Tool-> preference -> search "font" and make it bigger as this picture shown.
However, even I restart my ORACLE SQL, my font is till super small.
ps: I use windows10 and the version for ORACLE SQL Developer is 20.2
Anyone know how can I fix it?
I also faced a similar issue when installed this on Windows 10. The issue has to do with compatibility settings. I have fixed it following the steps given below:
Get shortcut of sqldeveloper at your desktop
Ensure that you have admin rights in your PC
Right Click on sqldeveloper icon and select Properties. Go to the Compatibility tab:
Compatibility mode change it to windows 7
Check the option of Override high DPI scaling behaviour
Select "System" in drop down below
Apply
Re-Launch the application
I have tried all the answers provided, but changing to system(enhanced) from high DPI scaling behavior has saved me.
HOW:
Right Click on sqldeveloper application icon (.exe) and select Properties > Compatibility tab > Check the option of Override high DPI scaling behaviour > Select "System ( Enhanced )" in drop down below > click Apply > Re-Launch the application
Please change the font size and test by typing in the SQL window. Below is the sniping

PC keyboard not working in Android emulator [duplicate]

This question already has answers here:
Android emulator doesn't take keyboard input - SDK tools rev 20
(13 answers)
Closed 5 years ago.
I'm unable to use my PC keyboard to input characters into the app running on AVD emulator even though I had chosen 'Enable keyboard input' when creating the AVD. Can anyone help?
Below is my config.ini.
Note
File directory can be accessed from AVD Manager:
-> click the down arrow on the Actions column
-> Show on Disk.
For GNU/Linux users, with default Android Studio configuration, the
file is found under directory
/home/<<user>>/.android/avd/<<device>>.avd
config.ini
avd.ini.encoding=UTF-8
AvdId=Nexus_5_API_21
abi.type=x86_64
avd.ini.displayname=Nexus 5 API 21
disk.dataPartition.size=200M
hw.accelerometer=yes
hw.audioInput=yes
hw.battery=yes
hw.camera.back=none
hw.camera.front=none
hw.cpu.arch=x86_64
hw.dPad=no
hw.device.hash2=MD5:2fa0e16c8cceb7d385183284107c0c88
hw.device.manufacturer=Google
hw.device.name=Nexus 5
hw.gps=yes
hw.gpu.enabled=yes
hw.keyboard=yes
hw.lcd.density=480
hw.mainKeys=no
hw.ramSize=1536
hw.sdCard=yes
hw.sensors.orientation=yes
hw.sensors.proximity=yes
hw.trackBall=no
image.sysdir.1=system-images/android-21/default/x86_64/
runtime.network.latency=none
runtime.network.speed=full
runtime.scalefactor=0.25
sdcard.path=/Users/xxxxxx/.android/avd/Nexus_5_API_21.avd/sdcard.img
skin.dynamic=yes
skin.name=nexus_5
skin.path=/Applications/Android Studio.app/Contents/plugins/android/lib/device-art-resources/nexus_5
snapshot.present=no
tag.display=Default
tag.id=default
vm.heapSize=64
More info:
I'm using Mac OS X 10.10.4 (Yosemite).
Android Studio 1.3
I had this issue despite having the correct configuration, and realized that the actual problem was that the focus was on the emulator control buttons windows, as reported in this issue.
To check if this is your problem, see if pressing space actually presses one of those buttons, and if pressing tab moves the highlight focus square between elements in the emulator controls. If that is the problem, then you should be able to work around it as follows:
Select the extended controls (The "..." button in the emulator controls)
Change to any item in the extended controls window by clicking
Close the extended controls window
The focus should now return to the main Android emulator window, not the emulator controls, and key presses should go to Android apps.
try to change following.
hw.keyboard = yes
hw.keyboard.lid = no
hw.keyboard.charmap = qwerty2

How to restrict the window of RCP app from resizing?

I want to restrict the window size of an RCP app from resizing.
So in prewindowopen of ApplicationWorkbenchWindowAdvisor class I tried
IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
configurer.setShellStyle(SWT.CLOSE | SWT.MIN | SWT.MODELESS | SWT.BORDER | SWT.TITLE);
But it does not seem to have any effect on the window. When I tried the same things in a dialog this seems to work. Any clue on this will really help.
This looks like Eclipse bug 432501 which is saying the setShellStyle is being ignored in Eclipse 4. There is currently no fix for this.

How to get the quickfix menu in RubyMine?

According to http://blogs.jetbrains.com/ruby/2009/08/whats-mining-rails-i18n-support/ there should be a quick fix menu that allows me to create translation keys. It seems to be related to the light bulb but in the latest RubyMine (RM-96.886) I don't seem to get the little lightbulb. Any ideas how to get to that menu?
Make sure you have 'i18n string value' intention enabled in IDE Settings | Intentions | Ruby.
When you're on a string in the code try Alt+Enter (Option+Enter on Mac). It should show the quick-fix popup.