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
" vimwikiをmarkdownにする | |
let g:vimwiki_list = [{'syntax': 'markdown', 'ext': '.md'}] | |
" アンダーライン見出しのシンタクスを追加 | |
" 見出し1 | |
" ======= | |
" | |
" 見出し2 | |
" ------- | |
let s:bundle = neobundle#get("vimwiki") |
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 | |
# mcstartup.sh - v1.00 | |
# | |
# example directory tree: | |
# ROOT | |
# |-- bin | |
# | `-- mcstartup.sh | |
# |-- etc | |
# | |-- : | |
# | |-- server.log -> /dev/null |
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
BoldAsFont=yes | |
Transparency=off | |
CursorType=block | |
Font=Ricty Meiryo | |
Term=xterm-256color | |
Locale=ja_JP | |
Charset=UTF-8 | |
OpaqueWhenFocused=yes | |
BackspaceSendsBS=yes | |
Scrollbar=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
// Don Yang | |
// <[email protected]> | |
// <http://uguu.org/> | |
#include<stdio.h> | |
int main(int n,char **m) | |
{ | |
FILE *p,*q; | |
int A,k,a,r,i; |
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 perl | |
use strict; | |
use utf8; | |
use Mac::iTunes::Library::XML; | |
use Encode; | |
binmode STDOUT, ":utf8"; | |
my $itunes = $ARGV[0] || die "Usage: itl2m3u <iTunes Directory>"; | |
my $library = $ARGV[0] . '/iTunes Music Library.xml'; |
NewerOlder