This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bootable Live USB drives | |
# Rufus | |
http://rufus.akeo.ie | |
# UNetbootin | |
http://unetbootin.github.io | |
# Recognition | |
# OpenCV | |
# Работа каскада Хаара в OpenCV в картинках: теория и практика | |
https://habrahabr.ru/company/recognitor/blog/228195/ | |
# Обучение каскада Хаара на примере поиска символов автомобильного номера OpenCV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Re: how to stream audio and video captured from mic and webcam in sync. | |
// As mentioned by you, i am doing exactly like that . I have coded transmitter class. | |
// But at the receiver side it is unable to play the stream. I am posting my code . | |
// Can you please help with me with any mistake i m making in my code ?? | |
// Or with way I should receive stream at receiver side. Plz see my code. I am streaming to ip address 172.31.80.67. | |
// https://community.oracle.com/thread/1279991?start=0&tstart=0 | |
package heyram; | |
import java.util.logging.Level; | |
import java.util.logging.Logger; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E | |
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 614C4B38 | |
wget -q https://dl-ssl.google.com/linux/linux_signing_key.pub -O- | sudo apt-key add - | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1378B444 | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886 | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1F196A8 | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FC91AE7E | |
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - | |
wget http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add - | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F9CB8DB0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo VBoxManage internalcommands createrawvmdk -filename ~/VirtualBox\ VMs/part8.vmdk -rawdisk /dev/disk/by-id/ -partitions 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package divo.felix.chem.pte; | |
import java.util.HashMap; | |
import java.util.Map; | |
/** | |
* Holds information of the periodic table of elements. | |
* | |
* @author Felix Divo | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.app.IntentService; | |
import android.app.Service; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.hardware.Sensor; | |
import android.hardware.SensorEvent; | |
import android.hardware.SensorEventListener; | |
import android.hardware.SensorManager; | |
import android.os.HandlerThread; | |
import android.os.IBinder; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################################################### | |
# | |
# This is a program to read thermal image data from the Seek PIR206 Thermal Camera | |
# It operates more or less in real time (if your platform is fast enough), since | |
# it is in python, don't expect it to run in real time on anything less than an i7. | |
# Someday, I may port it to C (and daresay C++) to improve the rate on other platforms. | |
# OpenCV will be useful here (I hope I live that long ;>)) | |
# | |
# It can save a snapshot of the current raw image, cal image and colorized image | |
# Sorry, the file names are hardcoded... |
RXTX is a native lib providing serial and parallel communication for the Java Development Toolkit (JDK). All deliverables are under the gnu LGPL license.
- Site: http://rxtx.qbang.org/wiki/index.php/Main_Page
- Site: http://users.frii.com/jarvi/rxtx/download.html
- Sources: https://github.com/rxtx/rxtx
This fork of RXTX patches the upstream sources to introduce the following fixes:
- support to linux ttyACM devices