■ Message # dnf update -yInvalid configuration value: failovermethod=priority in /etc/yum.repos.d/nodesource-e…
未分類
Golang、MariaDB:tableのcolumnのデータ型がINTでNULLを許可する場合のNULL判定
to_idの値がNULLの時 int(to_id.Int64)の値は0, to_id.Validの値はfalse to_idの値が0の時 int(to_id.Int64)の値は0, to_id.Validの値はtrue…
no required module provides package github.com/go-sql-driver/mysql: go.mod file not found in current directory or any parent directory; see ‘go help modules’
環境: CentOS8 #dnf update -yの後に、上記メッセージが出るようになった。 解決方法: 以下を実行 # go env -w GO111MODULE=auto # go build -o a.out m…
Firefox vs Chrome <input type=”date”/> のCSS direction,text-overflowでの表示の違い
<input type=”date”/> td input{ direction : rtl; text-overflow: ellipsis; width: 88px; } Firefox Chrome 初…
PHP fetchAll()で取得した件数が0だった場合の判定
empty()で判定する。 返り値 PDOStatement::fetchAll() は、 結果セットに残っている全ての行を含む配列を返します。 この配列は、カラム値の配列もしくは各カラム名に対応するプロパティを持つオブ…
Getting a Token from Chatwork OAuth
The code for this post can be found here: https://github.com/wsdCollins/Chatwork-OAuth This is a sample repo f…
Getting Started with Chatwork API
This is a blog post with simple samples for getting started with interacting with the ChatWork API. Informatio…
TCPDFを利用して、生成したpdfをブラウザに出力するoptionによる方法は、結果として使えない。
1.tcpdfではoutputで、ローカルに保存(download)するか、ブラウザに出力するかを文字列で指定する 2.firefoxでは、firefoxの設定が優先される 3.従って、firefoxの設定で”pdfをd…
Windows10で、Canvas 使用時に、文字入力が妙に遅くなる件
遅くしている原因を発見 ・多分入力している文字をスキャンしているソフトがいる コントロールパネル Microsoft Storeで以下をすべてオフにすると、Canvasを使用時に文字入力が遅くなるのが回避されるようになっ…
Debugging Nginx Hostname
Right now I’m writing a script to automatically deploy our application on a server. For the application,…