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 json | |
import boto.elastictranscoder | |
def elastictranscoder_create_job(pipeline_id, input_key, output_key, | |
thumbnail_key='thumbnails/{resolution}-{count}', | |
output_key_prefix='hls/', | |
segment_duration = '10', | |
region = 'us-west-2'): | |
# set Preset |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | |
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.3.0/material.indigo-pink.min.css"> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | |
<style> | |
#video { |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"net/http/httputil" | |
) | |
func handler(w http.ResponseWriter, r *http.Request) { |
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
eb create --database --vpc.id vpc-3c98c145 --vpc.dbsubnets subnet-9ff2b1b3,subnet-5790971f --vpc.ec2subnets subnet-9ff2b1b3,subnet-5790971f --vpc.elbsubnets subnet-9aefacb6,subnet-488b8c00 --vpc.elbpublic -db.i db.t2.micro -db.engine mysql --elb-type classic --service-role aws-elastic-beanstalk-service-role --instance_profile qls-1479818-2dbab78613effee2-AWSBeanstalkEc2Role-SBVJU5FKIIB |
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
UserParameter=temper.temp,temper | cut -d "," -f |
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 "io.s" | |
.text | |
.global _start | |
_start: | |
mov x22, #1 // i = 1 | |
mov x24, #30 // loop max | |
mov x23, #1 // 3 counter | |
mov x25, #3 // 3 | |
mov x26, #1 // 5 counter | |
mov x27, #5 // 5 |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<zabbix_export> | |
<version>3.2</version> | |
<date>2017-06-11T10:23:22Z</date> | |
<groups> | |
<group> | |
<name>Templates</name> | |
</group> | |
</groups> | |
<templates> |
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 <math.h> | |
#include <stdlib.h> | |
#include "mpi.h" | |
#ifdef KCOMPUTER | |
#include "fj_tool/fapp.h" | |
#endif | |
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 numpy as np | |
import matplotlib.pyplot as plt | |
import sys | |
argvs = sys.argv | |
argc = len(argvs) | |
if(argc != 3): | |
print 'Usage : ./%s (input_filename) (output_image)' % (argvs[0]) | |
quit() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.