Skype problem with Camera in Linux

Suppose your webcam is in /dev/video0. sudo apt-get install v4l2loopback-dkms sudo modprobe v4l2loopback Finally, when you need your webcam on Skype, just run this command: ffmpeg -i /dev/video0 -vcodec rawvideo -pix\_fmt yuv420p -threads 0 -f v4l2 /dev/video1 [Read More]
Tags: Linux debian

Professional Practice Exam

This page is the link to a variety of previous exam questions and answers for Professional Practice and Ethics, and  Engineering Law and Professional Liabilityhttps://exps.org/content/peo/exam-questionsanswers/
Tags: PENG PEO PPE

STM32 Generic Qbs Project

We want to compile and link an STM32 application (which uses Standard Peripheral Driver Library) in 1 click with minimal configuration time (Thanks to Nik!).- Install the STM link Driver from here:http://www.st.com/en/development-tools/st-link-v2.html- Install ARM GCC compiler from here:https://launchpad.net/gcc-arm-embedded/5.0/5-2016-q3-update - Install QT Creator from here:http://download.qt.io/official_releases/qtcreator/4.3/4.3.1/qt-creator-opensource-windows-x86_64-4.3.1.exe- In Qt go to Help>>About Plugins... [Read More]

TensorFlow "Hello World!" on Windows

1. Install Python from here.2. Install PyCharm from here.3. Open command prompt and enter the following command:       pip3 install --upgrade tensorflow4. Open PyCharm and create a new project and a python file.5. Enter the following short program inside the python file: import tensorflow as tf hello = tf.constant('Hello World!') sess... [Read More]