タグ

2016年9月4日のブックマーク (3件)

  • 日付フォーマットなど 日付系処理 - Qiita

    日付をフォーマットする 日付をフォーマットして返す。フォーマット(第二引数)を省略した場合2014-01-23 01:23:45.678みたいな形で返す。 /** * 日付をフォーマットする * @param {Date} date 日付 * @param {String} [format] フォーマット * @return {String} フォーマット済み日付 */ var formatDate = function (date, format) { if (!format) format = 'YYYY-MM-DD hh:mm:ss.SSS'; format = format.replace(/YYYY/g, date.getFullYear()); format = format.replace(/MM/g, ('0' + (date.getMonth() + 1)).slice(

    日付フォーマットなど 日付系処理 - Qiita
  • TrelloのCLIクライアントをGoで書いた - ariarijp’s blog

    影響されやすい性格なので、Rebuildを聞いて形骸化しかけていたTODOリストの運用を再開しました。 rebuild.fm 最近までTodoistを使っていたのですが、ちょっと気分転換もしたかったので、以前使っていたTrelloに出戻りしました。 Todoistと違ってTrelloは公式のMac版クライアントがないようなので、主にブラウザから使っているのですが、ちょっとタスクのリストを確認したいときに億劫になってしまうので、ターミナル上で実行可能なCLIクライアントを書いてみました。 github.com 「trello cli」で検索すると、すでにいくつかTrelloのCLIクライアントが公開されています。 github.com github.com すでにあるものをなぜ作ったかという話ですが、GWに時間があったので書いてみたくなった。というのが主なモチベーションです。 Goで書いた理

    TrelloのCLIクライアントをGoで書いた - ariarijp’s blog
    ryskosn
    ryskosn 2016/09/04
    参考になります
  • Better F# data science with FsLab and Ionide

    At NDC Oslo 2016, I did a talk about some of the recent new F# projects that are making data science with F# even nicer than it used to be. The talk covered a wider range of topics, but one of the nice new thing I showed was the improved F# Interactive in the Ionide plugin for Atom and the integration with FsLab libraries that it provides. In particular, with the latest version of Ionide for Atom

    Better F# data science with FsLab and Ionide
    ryskosn
    ryskosn 2016/09/04