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
| var mediaJSON = { "categories" : [ { "name" : "Movies", | |
| "videos" : [ | |
| { "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
| "sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
| "subtitle" : "By Blender Foundation", | |
| "thumb" : "images/BigBuckBunny.jpg", | |
| "title" : "Big Buck Bunny" | |
| }, | |
| { "description" : "The first Blender Open Movie from 2006", | |
| "sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
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
| #!/usr/bin/env perl | |
| # 사용법 | |
| # perl demacboogi.pl *.zip #zip파일만 변환 | |
| # perl demacboogi.pl #모든파일 변환 | |
| use 5.010; | |
| use strict; | |
| use warnings; | |
| use Encode qw/encode decode/; | |
| use Unicode::Normalize qw/compose/; | |
| use File::Copy; |
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/bash | |
| # Qiita記事 https://qiita.com/kawaz/items/0593163c1c5538a34f6f | |
| set -e | |
| set -o pipefail | |
| # pam_tidの存在チェック(間違えてLinux環境などで実行されたら中断する) | |
| [[ -f /usr/lib/pam/pam_tid.so.2 ]] || exit 1 | |
| [[ "${OSTYPE:0:6}" == "darwin" ]] || exit 1 | |
| # /etc/pam.d/sudo の修正 |