Skip to content

Instantly share code, notes, and snippets.

View sakamoto-poteko's full-sized avatar
Proletarier aller Länder, vereinigt euch!

坂本ポテコ sakamoto-poteko

Proletarier aller Länder, vereinigt euch!
  • Duna, Kerbol System
View GitHub Profile
@sakamoto-poteko
sakamoto-poteko / convert.sh
Last active August 29, 2015 14:15
Async & Queued MgConvert
#!/bin/bash
src=$1
des=$2
width=$3
height=$4
watermark=$5
if [ `identify -format "%n" ${src}` -eq 1 ]
then
convert ${src} -resize ${width}x${height} ${des}
#include <stdlib.h>
#include <stdio.h>
#include <immintrin.h>
const static __m256i SEED_MUL = _mm256_set1_epi32(214013);
const static __m256i SEED_ADDI = _mm256_set1_epi32(2531011);
const static __m256i SEED_MASK = _mm256_set1_epi32(0x3F800000);
const static __m256 FLOAT_1 = _mm256_set1_ps(1.f);
const static __m256i INT32_1 = _mm256_set1_epi32(1);
@sakamoto-poteko
sakamoto-poteko / checksum.c
Created July 15, 2016 05:30
ICAO 9303 Checksum
int checksum(const char *str)
{
int weight[] = {7, 3, 1};
int checksum = 0;
int len = strlen(str);
for (int i = 0; i < len; ++i) {
int mappedNum = 0;
if (isdigit(str[i])) {
@sakamoto-poteko
sakamoto-poteko / calib.py
Created July 26, 2017 12:42
OpenCV camera calibration and undistort
import numpy as np
import cv2
import glob
# termination criteria
criteria = (cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_MAX_ITER, 30, 0.001)
cbrow = 7
cbcol = 9
@sakamoto-poteko
sakamoto-poteko / move.cpp
Last active September 1, 2017 04:12
std::move in ctor initializer
#include <utility>
#include <iostream>
class ctor
{
public:
ctor()
{
std::cout << "default ctor" << std::endl;
}
@sakamoto-poteko
sakamoto-poteko / ecdsa.cpp
Created September 22, 2017 10:48
OpenSSL ECDSA signing and verification
#include <cstdio>
#include <cstdint>
#include <cstring>
#include <iostream>
#include <vector>
#include <openssl/ecdsa.h>
#include <openssl/sha.h>
#include <openssl/pem.h>
#include <openssl/x509.h>
set vpn ipsec ipsec-interfaces interface pppoe0
set vpn ipsec auto-firewall-nat-exclude enable
set vpn ipsec nat-traversal enable
set vpn ipsec esp-group esp-azure compression disable
set vpn ipsec esp-group esp-azure lifetime 3600
set vpn ipsec esp-group esp-azure mode tunnel
set vpn ipsec esp-group esp-azure pfs disable
set vpn ipsec esp-group esp-azure proposal 1 encryption aes256
set vpn ipsec esp-group esp-azure proposal 1 hash sha1
@sakamoto-poteko
sakamoto-poteko / Makefile
Created April 18, 2018 07:38
.Net Interop Example
all:
g++ -shared interop.cpp -o libmain.so
@sakamoto-poteko
sakamoto-poteko / gnutls-verify-chain.c
Created December 22, 2014 02:51
Verify certificate chain against given CA (PEM) using GnuTLS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
int main(void)
{
FILE *fl;
@sakamoto-poteko
sakamoto-poteko / HPS.m
Last active December 4, 2019 04:19
HPS algorithm for tone detection
function [ freq ] = HPS(audiofile)
CORRECTFACTOR=1;
[sample, fs] = audioread(audiofile);
fftn = fs;
sample = sample .* hann(length(sample));
fftr = abs(fft(sample,fftn));
fftr = fftr(1:fftn/2);