This file contains 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 | |
pid=$$ | |
date=`date '+%Y-%m-%d-%H_%M'` | |
outdir="." | |
if [ $# -le 1 ]; then | |
echo "usage : $0 channel_name duration(minuites) [outputdir] [prefix]" | |
exit 1 | |
fi |
This file contains 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
function jqmSimpleMessage(message) { | |
var parent = $('.ui-page-active'); | |
if (parent.length === 0) { | |
parent = $('body'); | |
} | |
var div = $('<div data-role="popup" id="__popupmsg" class="ui-content" data-theme="a"></div>'); | |
div.append($('<p></p>').text(message)); | |
var a = $('<a href="#__popupmsg" data-rel="popup" data-position-to="window" id="__popupkicker">popup</a>'); | |
a.css('display', 'none'); |
This file contains 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 | |
function do_cleanup { | |
docker volume rm $(docker volume ls -qf dangling=true) | |
} | |
LIST=`docker volume ls -qf dangling=true` | |
if [ -n "$LIST" ]; then | |
echo $LIST | |
echo "Cleanup ? (y/N)" |
This file contains 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 | |
# original code from https://gist.github.com/riocampos/5656450 | |
LANG=ja_JP.utf8 | |
date=`date '+%Y-%m-%d-%H_%M'` | |
swfVfy="http://www3.nhk.or.jp/netradio/files/swf/rtmpe.swf" | |
outdir="." |
This file contains 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
-- for PostgreSQL 8.2 | |
CREATE FUNCTION int4text(int4) RETURNS text AS 'SELECT textin(int4out($1))' LANGUAGE sql IMMUTABLE STRICT; | |
CREATE CAST (int4 AS text) WITH FUNCTION int4text(int4) AS IMPLICIT; | |
CREATE FUNCTION int8text(int8) RETURNS text AS 'SELECT textin(int8out($1))' LANGUAGE sql IMMUTABLE STRICT; | |
CREATE CAST (int8 AS text) WITH FUNCTION int8text(int8) AS IMPLICIT; | |
-- for PostgreSQL 8.4 or later | |
CREATE CAST (int4 AS text) WITH INOUT AS IMPLICIT; | |
CREATE CAST (int8 AS text) WITH INOUT AS IMPLICIT; |
This file contains 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
[Desktop Entry] | |
Name=1Password Browser Helper | |
Comment=Allow browser plugins to interact with the 1Password database | |
Exec=env WINEPREFIX="/home/<username>/.wine" wine "/home/<username>/.wine/drive_c/Program Files (x86)/1Password 4/Agile1pAgent.exe" | |
Type=Application | |
StartupNotify=true | |
Path=/home/<username>/.wine/drive_c/Program Files (x86)/1Password 4 | |
Icon=C775_1Password.0 | |
StartupWMClass=Agile1pAgent.exe |
This file contains 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 python | |
from gmusicapi import Musicmanager | |
from gmusicapi import Mobileclient | |
import sys | |
import os.path | |
params = sys.argv |
This file contains 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 python | |
from gmusicapi import Musicmanager | |
from gmusicapi import Mobileclient | |
import sys | |
import os.path | |
params = sys.argv | |
if len(params) < 2: |
This file contains 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
; ~/.ng | |
; | |
; for more detail, please read Ng.doc | |
; | |
; 'next-line' doesn't insert newline at the end of buffer. | |
(next-line-add-newlines nil) | |
; exchange C-h with DEL. | |
(bsmap-mode) |
This file contains 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 ruby | |
require 'time' | |
require 'nkf' | |
abort "Usage:#{$0} PodcastTitle PublicURL FilesDir" if ARGV.length < 3 | |
title = NKF.nkf('-w', ARGV[0]) | |
location = ARGV[1] | |
filesDir = ARGV[2] |
NewerOlder