The code for this post can be found here: https://github.com/wsdCollins/Chatwork-OAuth This is a sample repo f…
Author: Benjamin Collins
Getting Started with Chatwork API
This is a blog post with simple samples for getting started with interacting with the ChatWork API. Informatio…
Debugging Nginx Hostname
Right now I’m writing a script to automatically deploy our application on a server. For the application,…
第一・第三金曜日って英語でなんて言うの?
この間「第1・第3の金曜日を定休日とします」をどうやって英語で書けばいいですかと聞かれた。 アメリカで、第1・第3の曜日など英語で使ったことないので、この質問に対してかなりびっくりした。 翻訳の実態はかなり単純。答えはこ…
Never Wrestle with a Pig 日本語訳
アメリカ人の共通認識の中に「Never Wrestle with a Pig. You Both Get Dirty and the Pig Likes It」のことわざがあります。このことわざのクレジットはマーク・トウェインについているけど、当時いろんな人の使った 慣用語だったみたい[1]. 問題はネットで日本語の約を探していたんですけど、ことわざ実態は日本のサイトには全然取り上げていなかったです。正直がっかりしました。これはかなり有名なことわざで、日本人はいったいなんの英語を見っているか疑問に思います。見つけたのでYahooの知恵袋の答えだったけど、トップの答えは全然正しくありません[2]。
あおぞらネット銀行 Sunabar API 一覧表
カテゴリ method API 概要 個人 法人 Url Path 口座 GET 口座一覧照会 保有する全ての口座情報一覧を照会 ○ ○ /personal/v1/accounts 口座 GET 残高照会 保有する口座の…
16->17 JavaScript 変更 完成
1. // main.js brfore: root.setBgColor(root.bgColor); after: 2. // canvas.js 2.1 プロパティにアクセスするファンクションを追加 brfore:…
15->16 JavaScript 変更
clearをファンクションにしてrootオブジェクトに移動 1.1 // main.js brfore: clear : function (){ root.ctx.clearRect(0, 0, root.cnvWid…
14->15 JavaScript 変更
ES6の記法 ・function () -> () => 1.1 // ファンクションをグルーピング brfore: // ccanvasの初期化 this.init = function () { this.canva…
13->14 JavaScript 変更
methodオブジェクトの作成 ・ファンクションをグルーピング 1.1 // ファンクションをグルーピング brfore: // 色の変更 function _data_color() { let cnvColor = …