2019-01-01から1年間の記事一覧

react-split-pane使ってみた。

Reactで画面分割ライブラリを探していたら、react-split-paneというものを見つけた。 react-split-paneだと上のような画面分割も簡単にできた。左と右の画面には、material uiのpaperコンポーネントを配置している。最高!

Chromeのfaviconのキャッシュを上書きして、Reactのファビコンを削除する

create-react-appしたら、デフォルトのファビコンが設定されているが、このファビコンを削除したい。 まず、reactのファビコンの設定を削除する。 次に、デフォルトのindex.htmlのheadタグに以下のlinkタグが書かれている。 <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" /> このlinkタグを以下のように書き</link>…

Sourcetree ブランチにジャンプ(ブランチ名の検索)

ブランチのジャンプ先を選択 Sourcetreeというgitの無料GUIツールを使ってみた。 Sourcetreeで、ブランチをdevelopにマージするとき、多数あるブランチの中から特定のブランチを検索したいと思った。 右上に「ジャンプ先:」というボタンを見つけた。このジ…

ExcelからSQL(DDL) for postgresql を生成するVBA(マクロ)

https://github.com/hiro-yano/ddlGeneratorPSQLFromExcel Thanks c0metssd @ ウィキ - excelからDDLを作成するマクロ例 https://www62.atwiki.jp/c0metssd/pages/81.html

feedlyにサブスクリプションするブックマークレット

javascript:void(feedtag=document.evaluate('//link[@rel="alternate"][@type="application/atom+xml" or @type="application/rss+xml"]', document, null, XPathResult.ANY_UNORDERED_NODE_TYPE).singleNodeValue);if(feedtag){location.href='https://fee…

d3 v4 scatter plot with axis : brush zoom & mousewheel zoom & graph can be panned

demo: https://hiro-yano.github.io/d3_brushzoom_wheelzoom_enable_pan/ ・ brush zoom : scale of axis depends on range selected in the brush. ・mousewheel zoom : scale of axis depends on the rendering area of SVG. github.com

データに欠損値がある場合の折れ線グラフをd3で描く

See the Pen JzErLB by yappynoppy (@yappynoppy) on CodePen. line.definedを使うことで、 ある点で、線が描かれるどうかを制御できるのですね。 参考: stackoverflow.com (moveとかmoveToとかで関数名検索してたけど、そんな関数は全然無かったのだ。。。…

TweetDeckの末尾列を先頭列に移動するブックマークレット

javascript:( function(){ var container_child = document.getElementById("container").firstElementChild; container_child.insertBefore(container_child.lastElementChild, container_child.firstChild); var column_navi_grandson= document.getElemen…