Python script to delete duplicate tracks from Google Play Music library. Please retry until "No duplicate songs" message is displayed. Use this script at your own risk. gmusicapi is required.
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 | |
#coding: UTF-8 | |
import string | |
import sys | |
import time | |
# コマンドライン引数で指定されたファイルをオープン | |
argv = sys.argv | |
argc = len( 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
#! /bin/csh | |
set host_name = route | |
set user_name = shuichi | |
set mac_addr = 00:00:00:00:00:00 | |
set wait_time = 2m | |
set shutdown_flag = 0 | |
echo "Starting backup. `date`" |
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
module foo( /*AUTOARG*/ ); | |
/*AUTOINPUT*/ | |
/*AUTOOUTPUT*/ | |
/*AUTOWIRE*/ | |
bar bar( /*AUTOINST*/ ); | |
baz baz( /*AUTOINST*/ ); | |
endmodule | |
// Local Variables: |
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
(font-lock-add-keywords | |
'verilog-mode | |
'(("\\(\\<[1-9][0-9_]*\\)?'h[0-9_a-fxz]+\\>" . font-lock-string-face) ; 16進数 | |
("\\(\\<[1-9][0-9_]*\\)?'d[0-9_xz]+\\>" . font-lock-string-face) ; 10進数 | |
("\\(\\<[1-9][0-9_]*\\)?'o[0-7_xz]+\\>" . font-lock-string-face) ; 8進数 | |
("\\(\\<[1-9][0-9_]*\\)?'b[01_xz]+\\>" . font-lock-string-face) ; 2進数 | |
("\\<[0-9][0-9_]*\\>" . font-lock-string-face))) ; 基数なし |