Install modified Logitech QuickCam Express / Go / Chat in Windows 7 / 8 / 10 (32bit, 64bit, x86, x86_64, amd64) without driver signature

How to install an old Logitech QuickCam Express in Windows 10, 64Bit (January 2021) ELCH2 plattform Logitech V-UAP9Logitech QuickCam ExpressUSB 046D Logitech, Inc. 0928 QuickCam ExpressELCH2 Chip Trouble installing patched/unsigned Windows 10 (Version January 2021) drivers – “The hash for the file is not present …” The hash for the file is not present in the specified catalog file. The file is likely corrupt or the victim of tampering. Select the “Start” button.Type “startup”.Select “Change advanced startup settings“.Select “Restart now” under the “Advanced startup” area.Select “Troubleshoot“.Select “Advanced Options“.Select “Startup Options“.Select “Restart“.Press “7” on your keyboard to choose “Disable driver signing…

0 Comments

CUDA (8.x, 9.x) problems with MATLAB (2017b) and Mac OS (10.12.6)

No matter if you mess around with energy savings ("GPU auto switch") or force your GPU to select either intern or discrete GPU mode ("gfxCardStatus" application): this thing will not work! Best way to use parallel computing in MATLAB though, uninstall CUDA and use MATLAB's "parallel cpu toolbox", or use an eGPU.         *This only holds for Apple MacBooks with an internal discrete GPU e.g. NVidia GT650M or GT750M (so models before 2016)

0 Comments

CryptoCoin NiceHash – nheqminer 5.0c for Mac OS (10.12)

Compiled the latest miner (cpu and gpu/cuda8 support) from the sources here https://github.com/nicehash/nheqminer. Provide the binaries for miners interested to mine coins on Apple hardware and software. All you have to do is, 1) install cuda 8 and 2) run the miner e.g.:  ./nheqminer-cpu -d 0 -t 16 -e 1 -l zec.suprnova.cc:2142 -u workername -p workerpassword Maybe you have to adjust (r)paths of the executables, or export path in the runtime environment: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/cuda/lib:/usr/local/cuda/lib/stubs" PATH="$PATH:/usr/local/cuda/" PATH="$PATH:/usr/local/cuda/bin" Download miner

1 Comment

QDirStat port: iDirStat monitors your disk space; QDirStat and WinDirStat for Mac OS

MAC OS X Sierra 10.12.X compatible disk space monitor and statistic user interface and editor (25.05.2017) Download Edited QDirStat: base at https://github.com/shundhammer/qdirstat which based on http://kdirstat.sourceforge.net Qt-based directory statistics: KDirStat without any KDE -- from the author of the original KDirStat. (c) 2015-2017 Stefan Hundhammer Stefan.Hundhammer@gmx.de Target Platforms: Linux, BSD, Unix-like systems, License: GPL V2, Updated: 2017-05-25 QDirStat is a graphical application to show where your disk space has gone and to help you to clean it up. This is a Qt-only port of the old Qt3/KDE3-based KDirStat, now based on the latest Qt 5. It does not need any KDE libs or infrastructure. It runs on every…

3 Comments

Fix Xcode 8.x.x (8.2.1) and Qt 5.x (5.6 and 5.7) project error: “Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild”

Solution for the following Qt Creator - Project ERROR: "Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild" Edit file: /<Qt.app path>/5.6/clang_64/mkspecs/features/mac/default_pre.prf Replace:  isEmpty($$list($$system("/usr/bin/xcrun -find xrun 2>/dev/null"))): \ By:            isEmpty($$list($$system("/usr/bin/xcrun -find xcodebuild 2>/dev/null"))): \

0 Comments

EyeTV with OSCAM and eyetvCamd (supports libusb, smartreader, smargo, USB, SSL, OS X 10.11.x, 64Bit) A Mac OS X Oscam server with USB support for external readers

OSCam with ssl, libusb support - os x changed its ssl library support - libusb must be installed for external usb cardreader support 1. I recommend "brew" to install openssl 1.1. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 1.2. brew install openssl 1.3. this will install openssl to /usr/local/Cellar/openssl/xxx/ 1.4. as oscam will look for openssl in /usr/local/include and /usr/local/lib you are welcome to link or copy it there manually 2. download libusb from here http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.9/libusb-1.0.9.tar.bz2 2.1 configure, make, make install it 3. build oscam with ssl and usb support 3.1. get scam sources here: svn checkout http://www.streamboard.tv/svn/oscam/trunk oscam-svn I recommend to checkout…

4 Comments

Fix TensorFlow Python 0.10.0rc0 ProtoBuf Error

        Hi, if you have trouble to use Google's TensorFlow Python API with MAC OS X: Uninstall all previous TensorFlow and ProtoBuffer installations: pip uninstall tensorflow pip uninstall protobuf brew uninstall protobuf Reinstall TensorFlow (Update URL to latest master): export TF_BINARY_URL= https://storage. googleapis.com /tensorflow/mac/cpu/tensorflow-0.10.0rc0-py2-none-any.whl pip install --upgrade $TF_BINARY_URL Test TensorFlow (Python script): import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() print(sess.run(hello)) a = tf.constant(10) b = tf.constant(32) print(sess.run(a + b))  

0 Comments

Fix missing libraries of an existing Mac OS binary by adding a correct @rpath command

Adding missing library path to an existing OS X binary: For example: open tracker (see https://github.com/opentrack/opentrack) misses the correct relative @rpath: otool -l /Applications/opentrack.app/Contents/MacOS/opentrack.bin | grep @rpath name @rpath/QtWidgets.framework/Versions/5/QtWidgets (offset 24) name @rpath/QtGui.framework/Versions/5/QtGui (offset 24) name @rpath/QtNetwork.framework/Versions/5/QtNetwork (offset 24) name @rpath/QtCore.framework/Versions/5/QtCore (offset 24) Where @rpath is at: Load command 28 cmd LC_RPATH cmdsize 56 path /Users/sthalik/dev/opentrack/build/install (offset 12) Load command 29 cmd LC_RPATH cmdsize 56 path /Users/sthalik/Qt5.5.1/5.5/clang_64/lib (offset 12) Wrong path set for local Qt's libraries In order to fix this: we should add a custom @rpath for all libraries not being deployed with the executable or being linked with libs…

1 Comment