Skip to content

Instantly share code, notes, and snippets.

View hightemp's full-sized avatar
🎯
Focusing

Anton Panov hightemp

🎯
Focusing
View GitHub Profile
# 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
// 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;
@hightemp
hightemp / gpg_keys.txt
Created May 4, 2016 10:17
place in /etc/apt/
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
@hightemp
hightemp / gist:0d2da364ef2e3a6d6818b66cc8abcae3
Last active May 8, 2016 08:58
virtualbox create raw disk link
sudo VBoxManage internalcommands createrawvmdk -filename ~/VirtualBox\ VMs/part8.vmdk -rawdisk /dev/disk/by-id/ -partitions 8
@hightemp
hightemp / Java Periodic table of elements
Created May 24, 2016 12:08 — forked from felixdivo/Java Periodic table of elements.java
This Java enum (=singleton) provides information about the elements of the periodic table (PTE). (Symbol, full name, atomic number, average atomic mass and electron negativity by Pauling) It can be searched by symbol and atomic number.
package divo.felix.chem.pte;
import java.util.HashMap;
import java.util.Map;
/**
* Holds information of the periodic table of elements.
*
* @author Felix Divo
*/
@hightemp
hightemp / vib_service.java
Last active December 9, 2016 06:20
Android metal detector based on motion sensor https://github.com/kushal90/Metal_Detector_demo
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 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...
@hightemp
hightemp / radar.md
Last active July 28, 2024 17:07
Synthetic Aperture Radar (SAR) software and llibraries

Synthetic Aperture Radar (SAR)

  • Software and libraries
    • Interferometric synthetic aperture radar (InSAR)
    • Performing tropospheric noise corrections
    • Multitemporal/time series InSAR analysis
@hightemp
hightemp / java_serial_port_libraries.md
Last active January 10, 2017 14:03
Java libraries to access standard serial ports (Arduino)