Dynalistのdeveloper portal(ログインが必要)から、API secret tokenを取得します。
各アイテムの左にあるメニューからInboxに設定することが可能です。
Dynalistのdeveloper portal(ログインが必要)から、API secret tokenを取得します。
各アイテムの左にあるメニューからInboxに設定することが可能です。
var checkbox_tag = /^\s*\[([xX\-\* ])\]/; | |
var blur_CheckBox = blur_CheckBox!=undefined?blur_CheckBox:function(){ | |
var r = this.textContent.match(checkbox_tag); | |
if (r){ | |
var c = r[1].match(/[xX\-\*]/) | |
if ((c != null ) != this.closest(".project").classList.contains("done")){ | |
var p = $(this.closest(".project")); | |
p.completeIt(c); |
function copy(text) { | |
var textarea = document.createElement('textarea'); | |
textarea.style="-webkit-user-select: auto;"; | |
textarea.textContent=text; | |
document.body.appendChild(textarea); | |
var range = document.createRange(); | |
range.selectNode(textarea); | |
var selection = window.getSelection(); |
javascript:(function(){function copy(e){var t=document.createElement("span");t.style="-webkit-user-select: auto;",t.textContent=e,document.body.appendChild(t);var n=document.createRange();n.selectNode(t);var o=window.getSelection();o.removeAllRanges(),o.addRange(n),document.execCommand("copy"),setTimeout(function(){t.remove()},50)}copy("["+document.title+"]("+document.URL+")");})(); |
#!/bin/bash | |
# http://blog.sgr-ksmt.org/2016/02/05/hugo_new_post/ | |
set -u | |
editer=emacs | |
usage() { | |
echo "Usage : $0 [-w] [title_name]" 1>&2 | |
} |