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 | |
URL="https://gist.github.com/mzyy94/15ee1b3880107e9d7ece/download" | |
TMP="/tmp/mplusfonts" | |
FONTSDIR="/usr/share/kodi/addons/skin.osmc/fonts/" | |
FONTCONF="/usr/share/kodi/addons/skin.osmc/16x9/Font.xml" | |
set -x | |
mkdir -p ${TMP} |
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
#include <stdio.h> | |
#include <ruby.h> | |
#include <libambxlight/libambxlight.h> | |
VALUE cAmbxlight; | |
VALUE device_count; | |
VALUE wAmbxlight_change_color_rgb(VALUE self, VALUE red, VALUE green, VALUE blue) | |
{ |
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
--- linux-3.10.11/.config 2014-06-27 16:07:13.094523227 +0900 | |
+++ /boot/config-3.10-3-amd64 2014-05-14 09:53:56.000000000 +0900 | |
@@ -55,10 +55,10 @@ | |
CONFIG_HAVE_KERNEL_LZMA=y | |
CONFIG_HAVE_KERNEL_XZ=y | |
CONFIG_HAVE_KERNEL_LZO=y | |
-CONFIG_KERNEL_GZIP=y | |
+# CONFIG_KERNEL_GZIP is not set | |
# CONFIG_KERNEL_BZIP2 is not set | |
# CONFIG_KERNEL_LZMA is not set |
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
Driver Caps: | |
Driver: "omap3" | |
Card: "omap3/mt9v032//" | |
Bus: "" | |
Version: 0.0 | |
Capabilities: 04000001 | |
Camera Cropping: | |
Bounds: 752x480+0+0 | |
Default: 752x480+0+0 | |
Aspect: 1/1 |
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
/* | |
* V4L2 video capture example | |
* | |
* This program can be used and distributed without restrictions. | |
* | |
* This program is provided with the V4L2 API | |
* see http://linuxtv.org/docs.php for more information | |
*/ | |
#include <stdio.h> |
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
if (process.argv.length != 3) { | |
console.error('usage:', | |
process.argv[0], | |
process.argv[1], | |
'<archive url>'); | |
process.exit(1); | |
} | |
var url = process.argv[2]; | |
var http = require(url.split(':')[0]); |
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
if(!Detector.webgl) Detector.addGetWebGLMessage(); | |
function modelView(objName){ | |
var path = 'models/'; | |
var suffix = '_LOW'; | |
var extension = '.js'; | |
var renderer = new THREE.WebGLRenderer({ antialias: true, alpha: false, premultipliedAlpha: false }); | |
var s_x = window.innerWidth; | |
var s_y = window.innerHeight; |
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
* { | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
user-select: none; | |
-webkit-user-select: none; | |
} | |
body { | |
font-family: 'Lato' !important; | |
font-style: normal; |
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
~:$ ssh -l root localhost -p 2223 | |
The authenticity of host '[localhost]:2223 ([127.0.0.1]:2223)' can't be established. | |
RSA key fingerprint is 5e:80:92:fa:82:60:05:09:89:c1:39:6b:72:30:d5:03. | |
Are you sure you want to continue connecting (yes/no)? yes | |
Warning: Permanently added '[localhost]:2223' (RSA) to the list of known hosts. | |
root@localhost's password: | |
Linux debian 3.2.0-4-amd64 #1 SMP Debian 3.2.41-2 x86_64 | |
The programs included with the Debian GNU/Linux system are free software; | |
the exact distribution terms for each program are described in the |
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
.section __TEXT,__text,regular,pure_instructions | |
.globl _main | |
.align 4, 0x90 | |
_main: ## @main | |
.cfi_startproc | |
## BB#0: | |
pushq %rbp | |
Ltmp2: | |
.cfi_def_cfa_offset 16 | |
Ltmp3: |