Keymando crash when press "# / #" key - keymando

I just install the trial version on my MBP (Snow Leopard 10.6.8).
And correctly installed BridgeSupport Preview 3 before launch keymando
I change nothing, just first launch and when I press the "# / #" key, keymando crash with this double alert error
After that, the keymando icon turns grey.
It only happens with the "# / #" keyboard key
There is a workaround ?

Version 1.3 was just released and should fix this issue.
http://updates.keymando.com/releases/current/Keymando.dmg

Related

"Abort Trap: 6" when attempting OpenCV video capture on macOS Mojave

I've tried on both Python on C++, and every time I call cap.open(0), I get an Abort Trap: 6 error. I haven't been able to find any solutions to this via Google, and have tried reinstalling OpenCV several times now. Any suggestions?
iTerm might be messing things up for you. It worked for me when I used the normal terminal.
Most likely your mac blocks the webcam access.
Check
System Pref -> Security & Privacy -> Privacy -> Camera.
If the app that you try to use is not listed there, opencv produce "Abort trap: 6"
In VSCode:
Do cmd+shift+p
Enter "shell command: Install code in PATH"
Close VS Code
Use sudo code to open VS Code
It will give a warning not to run as a root user
Ignore the warning and run the file, and you will not get the "Abort trap: 6" error anymore.
install code in vsstudio code and then open terminal and type code, it will open visual studio code and it will have all the permisions.

Cannot remove a Point Cloud from pclvisualizer in Windows, although it works in Linux

I am working with QT and have a QVTKWidget (pclvisualizer) viewer to render and show the point clouds in my program.
I add a cloud with the ID name to my viewer which works well in Linux and Windows. But when I try to remove the point cloud from the viewer, the cloud is only removed in Linux - in Windows nothing happens and my Error message is displayed.
viewer->addPointCloud( myCloud, name ); // this works
if (viewer->removePointCloud(name)) { // this works only in linux
std::cout << "SUCCESS: pointcloud was removed from the viewer! ID: " << name << std::endl;
}
else {
std::cout << "ERROR: cannot remove cloud from the viewer! ID: " << name << std::endl;
}
Linux compiler is g++ 5.4.0.
Windows version is compiled using Visual Studio 2015.
I have no idea what to do to fix this error. Any ideas what to do/what the problem might be?
You might have the revision where this issue has not been fixed on Windows. I would suggest that you use the same version of PCL on both OS.

Graphic_failure in OCaml

Here's what I wrote in Ocaml top-level
# #load "graphics.cma";;
# open Graphics;;
# open_graph " 400x600" (* Note the leading space. *);;
But I got the error
Exception: Graphics.Graphic_failure "Cannot open display ".
What I tried
I tried to change the DISPLAY variable of my environnement to :0.0, and the error message becomes "Cannot open display :0.0"
I'm on OSX Capitan V10.11
I guess the problem is you don't have any X11 Windows System (as stated here https://support.apple.com/en-us/HT201341)
You should install XQuartz : http://www.xquartz.org/

Sublime text 2 c++ error message (No Disk)

I am running sublime text 2 on windows 8 (The build system is on c++). When I run the program, an error message says g++.exe "There is no disk in the drive. Please insert a disk into drive l:." When I click continue another error message pops up saying cc1plus.exe (Same as before), When I click continue again, another error message pops up collect2.exe (Same as before). When I click continue for the third time It runs the code correctly. Any help would be greatly appreciated!
(My compiler is MinGW)
(My text editor is sublime text 2)
(My OS is Windows 8)
(I have installed MinGW before)
Here is my code: (If that matters)
#include <iostream>
int main()
{
std::cout << "Hello World!";
return 0;
}
For clarification, after I am done with the error messages, the code RUNS and prints "Hello World!".
It appears that this is a known problem with MinGW. Specifically it is thought to be an issue in the GNU binutils gettext package. There's a bug report on it over at SourceForge:
http://sourceforge.net/p/mingw/bugs/2108/
Unfortunately however, there doesn't appear to be an ETA for the fix.

QT Creator cannot create plain C++ Project or HTML5 project (QT Creator closed directly)

I have problem with my QT Creator in my OS.
I'm using :
Ubuntu 12.04
QT Creator 2.4.1
QT 4.8.0
I try to create a new project and then choose "other project" and then try to choose "Plain C++ Projec".
But after I click "Plain C++ Project" or other kind project, the QT Creator is closed, except the first option or the default option that is "QT Console Application".
the error when i try to run with terminal in ubuntu is :
"QSpiAccessible::accessibleEvent not handled: "6" obj: QMenu(0x82ba3a8, name = "QtCreator.Menu.File") "QtCreator.Menu.File"
QSpiAccessible::accessibleEvent not handled: "7" obj: QMenu(0x82ba3a8, name = "QtCreator.Menu.File") "QtCreator.Menu.File"
FIXME: handle dialog start.
QSpiAccessible::accessibleEvent not handled: "8008" obj: QObject(0x0) " invalid interface!"
QSpiAccessible::accessibleEvent not handled: "8008" obj: QObject(0x0) " invalid interface!"
Interface is not valid
ASSERT failure in : "Got an update for an invalid inteface. Investigate this.", file atspiadaptor.cpp, line 899
Aborted (core dumped)
"
and not just for "Plain C++ Project" that cannot opened, but also for HTML 5 and all of optional project in "other project" menus.
i hope it can't be resolve..
please help... :D
It has been resolved...
the problem is "atspiadaptor.cpp, line 899"
so to resolve it just remove the qt-at-spi package
couse the bug is in qt-at-spi package
(see https://bugs.launchpad.net/ubuntu/+source/qtcreator/+bug/959722 ).
sudo apt-get remove qt-at-spi
:D