作: | @voluntas |
---|---|
バージョン: | 1.0.1 |
URL: | https://voluntas.github.io/ |
2015 年 1 月 12 日に行われた 「テレビ連動サーバー」勉強会 向けの発表資料です。
//----------------------------------*\ | |
// TRIGONOMETRY FUNCTIONS | |
//----------------------------------*/ | |
// # Trigonometry in CSS | |
// | |
// - Through Taylor/Maclaurin polynomial representation: http://people.math.sc.edu/girardi/m142/handouts/10sTaylorPolySeries.pdf | |
// - Useful if you don't want to use JS. | |
// - With CSS Variables. | |
// - `calc()` can't do power (x ^ y) so I used multiplication instead. |
FROM ubuntu:16.04 | |
MAINTAINER Balachandar KM "[email protected]" | |
# Install java8 | |
RUN apt-get update && \ | |
apt-get install -y software-properties-common && \ | |
add-apt-repository -y ppa:webupd8team/java && \ | |
(echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections) && \ | |
apt-get update && \ |
[ | |
{ | |
"position": { | |
"lat": 61.21759217, | |
"lng": -149.8935557 | |
}, | |
"name": "Starbucks - AK - Anchorage 00001", | |
"address": "601 West Street_601 West 5th Avenue_Anchorage, Alaska 99501", | |
"phone": "907-277-2477" | |
}, |
作: | @voluntas |
---|---|
バージョン: | 1.0.1 |
URL: | https://voluntas.github.io/ |
2015 年 1 月 12 日に行われた 「テレビ連動サーバー」勉強会 向けの発表資料です。
### _/IMPORTANT NOTE_/ | |
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
### i really prefer ruby, python, C, sh, pgsql or whatever. but this was done for a DIY project, so | |
### please do not flame on the mariadb and php5 installation, thats not whats important here anyways. | |
### | |
### if i forgot someting, please drop me a line instantly via: Mail: [email protected] (GPG prefered) or | |
### via XMPP (OTR prefered): [email protected] - see also: www.azet.org / https://twitter.com/a_z_e_t | |
### | |
### as always, of course: this is public domain knowledge. no warranties. | |
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
#include <errno.h> | |
#include <fcntl.h> | |
#include <linux/videodev2.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <sys/ioctl.h> | |
#include <sys/mman.h> | |
#include <unistd.h> | |
#include <opencv2/core/core.hpp> |