This file contains hidden or 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.content.Context; | |
import android.os.Process; | |
import android.support.p018v7.p019a.C0367a; | |
import android.util.Log; | |
import com.yalantis.ucrop.BuildConfig; | |
import com.yalantis.ucrop.view.CropImageView; | |
import java.io.File; | |
import java.io.FileInputStream; |
This file contains hidden or 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
#!/bin/sh | |
# default values for arguments | |
ssh_host="root@remarkable" # remarkable connected through USB | |
landscape=true # rotate 90 degrees to the right | |
output_path=- # display output through ffplay | |
format=- # automatic output format | |
webcam=false # not to a webcam | |
measure_throughput=false # measure how fast data is being transferred |
This file contains hidden or 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
//requires : | |
// socketcan 2.2.2 | |
// child_process - | |
// underscore (any version) | |
var can = require('socketcan'); | |
var channel = can.createRawChannel("can0", true); | |
var _ = require('underscore'); | |
var cp = require('child_process'); |