a one-line code block
1
|
|
code with 4 spaces
code with 4 spaces
code with 4 spaces
One line test
code with 4 spaces
1
|
|
1 2 3 |
|
triple waves
1 2 3 4 |
|
1 2 3 4 |
|
1 2 3 4 |
|
1 2 3 4 |
|
1 2 3 4 5 |
|
puts "PHP Markdown Extra wave codeblock"
def func(flag)
if(flag)
puts "OK"
else
puts "FAILED"
end
end
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
|
ref: a.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
ref: a.js
1 2 3 4 5 6 7 8 |
|
ref: a.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
ref: a.sh
1 2 3 4 5 6 7 |
|
ref: hoge.diff
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
ref: a.py
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 | |
#Copyright (c) 2013 rcmdnk | |
import os | |
import sys | |
import httplib2 | |
from oauth2client.file import Storage | |
from oauth2client.tools import run | |
from oauth2client.client import OAuth2WebServerFlow | |
from apiclient.discovery import build | |
def main(uselist='',items=''): | |
# Authentaation | |
storage = Storage(os.path.expanduser('~/.gtask_oauth')) | |
credentials = storage.get() | |
if credentials is None or credentials.invalid: | |
credentials = run( | |
OAuth2WebServerFlow( | |
client_id='326384869607-9c57sseqij1vpes16ect83irq490pn8c.apps.googleusercontent.com', | |
client_secret='h0vi7XXzU3DRJyEa2aYFPRcm', | |
scope=[ | |
'https://www.googleapis.com/auth/tasks', | |
'https://www.googleapis.com/auth/tasks.readonly'], | |
user_agent='gtaskslist/1.0',), | |
storage) | |
http = httplib2.Http() | |
http = credentials.authorize(http) | |
service = build('tasks', 'v1', http=http) | |
# Get task lists | |
tasklists = service.tasklists().list().execute() | |
for tl in tasklists['items']: | |
# Check list name | |
if uselist != '' and tl['title'] != uselist: | |
continue | |
# Get tasks | |
tasks = service.tasks().list(tasklist=tl['id']).execute() | |
for t in tasks['items']: | |
ttitle = t['title'] | |
if ttitle == '': | |
continue | |
useflag = 0 | |
if len(items) == 0 or items[0] == '': | |
useflag = 1 | |
else: | |
for i in items: | |
if ttitle.find(i) != -1: | |
useflag = 1 | |
break | |
if useflag == 1: | |
print ttitle.encode('utf_8') | |
if __name__ == '__main__': | |
# Get command line options | |
from optparse import OptionParser | |
usage = '''usage: %prog [-opts] arg1 arg2 | |
If arg1 arg2... are given, only tasks which include | |
these words (ORed) will be listed (combined with -i) | |
If you have not installed google-api-python-client, follow: | |
https://developers.google.com/api-client-library/python/start/installation | |
''' | |
parser = OptionParser(usage) | |
parser.add_option('-l', '--list', action='store', | |
dest='uselist', default='', | |
help='If \'USELIST\' is not an empty, tasks will be searched for only from the given list. [default: %default]') | |
parser.add_option('-i', '--item', action='store', | |
dest='item', default='', | |
help='If \'ITEM\' is not an empty, only tasks which contains given item are listed up. Multiple words can be given by using \',\' as a separator. [default: %default]') | |
(opts, args) = parser.parse_args() | |
# Set parameters | |
uselist = opts.uselist | |
items = opts.item.split(',') | |
for i in args: | |
items.append(i) | |
# Run main function | |
main(uselist, items) |
pre test
pre test
aaaa pre
pre
1
|
|
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
small |
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
#alias rm="rm -i" | |
#function rm={ rm $@ -i; } | |
function rm { | |
for f in "$@";do | |
if [[ "$f" =~ ^- ]];then | |
continue | |
fi | |
if [ "$f" = "$HOME" ] || [ "$f" = "$HOME/" ];then | |
echo -n 'Are you sure to remove your HOME? ' | |
read yes | |
if ! [[ "$yes" =~ ^[yY] ]];then | |
return 0 | |
fi | |
elif [ -d $f ];then | |
dn="$(cd "$(dirname $f)";pwd -P)" | |
if [ "$dn" = "$HOME" ] || [ "$dn" = "$HOME/" ];then | |
echo -n 'Are you sure to remove your HOME? ' | |
read yes | |
if ! [[ "$yes" =~ ^[yY] ]];then | |
return 0 | |
fi | |
fi | |
fi | |
done | |
command rm --preserve-root $@ | |
#command rm -i --preserve-root $@ | |
#command rm --preserve-root $@ -i | |
} |