高木のブログ

Herokuで動かすRailsアプリのアプリケーションサーバーをPumaに変更する

Tags: Heroku Rails Puma

タイトル通り、Herokuで動いているRailsアプリのアプリケーションサーバーをPumaに変更した話。

経緯 🔗

そろそろHerokuにデプロイした時に出るWarningを一つ一つ潰していこうかなと思った時に最初に目をつけられたWarningがこちら。

remote: ###### WARNING:
remote:
remote:        No Procfile detected, using the default web server.
remote:        We recommend explicitly declaring how to boot your server process via a Procfile.
remote:        https://devcenter.heroku.com/articles/ruby-default-web-server

「Procfileが見つからなかったから、デフォルトのWebサーバーを使ったよ。Procfileでサーバープロセスを起動する方法を明示的に宣言することを勧めるよ。詳しくはこのURLを見てくれ。」
的なことが書かれてた。

「詳しくはこのURL」のサイト 🔗

Ruby Default Web Server | Heroku Dev Center

いろいろ読み進めていくと、 「デフォルトで使われるWebサーバーはWebrickだよ。開発用のサーバーを本番で使うのは相応しくないからPumaを使ってね」と。
デフォルトでPuma使ってると勝手に思い込んでた。ということでProcfileを作るついでにPumaに変更する。


手順 🔗

Deploying Rails Applications with the Puma Web Server | Heroku Dev Center
ここに書いてある指示に従って進めていく。

GemfileにPumaのgemを追加 🔗

# Gemfile

gem 'puma'

実際にはrails newの時点で入ってたみたいだったので追加していない。
開発で使わない場合はproductionのグループに移動してもいいかも。

config/puma.rbに設定を記述する 🔗

# config/puma.rb

workers Integer(ENV['WEB_CONCURRENCY'] || 2)
threads_count = Integer(ENV['RAILS_MAX_THREADS'] || 5)
threads threads_count, threads_count

preload_app!

rackup      DefaultRackup
port        ENV['PORT']     || 3000
environment ENV['RACK_ENV'] || 'development'

on_worker_boot do
  # Worker specific setup for Rails 4.1+
  # See: https://devcenter.heroku.com/articles/deploying-rails-applications-with-the-puma-web-server#on-worker-boot
  ActiveRecord::Base.establish_connection
end

書き方は少し違うが、ほぼ同じ設定内容が書かれてたが、Heroku公式の内容に書き換えた。

Herokuで使ってるDBのレコード数を確認する方法

Tags: Heroku

HerokuのDB(Postgresql)は10000レコードまで無料で使えるが、超えたらいきなり請求くるらしいので注意が必要。
レコード数はheroku pg:infoで確認できる。

$ heroku pg:info
=== DATABASE_URL
Plan:                  Hobby-dev
Status:                Available
Connections:           0/20
PG Version:            10.11
Created:               2019-02-01 14:28 UTC
Data Size:             10.0 MB
Tables:                6
Rows:                  2967/10000 (In compliance)
Fork/Follow:           Unsupported
Rollback:              Unsupported
Continuous Protection: Off

Rows: 2967/10000 (In compliance)

まだまだ余裕がありそうだ。

生産性を上げるためにdotfilesの世界に入門する

Tags: dotfiles

ずっとdotfilesを作って整備していきたいなと思っていたけど、なかなか進められずに何年か経ってた。
でも以下のアドベントカレンダー見てたらやらずにはいられなくなったので今日から進めていく!

dotfiles Advent Calendar 2019 - Qiita

とりあえず、リポジトリ作って現状の.vimrcだけでも上げとこって思ったら、最近Vagrant + CentOSの開発からMac直接の開発に移行したばかりで素のVimでしばらく開発してたんだった。
READMEだけある寂しいリポジトリができた。これから充実させていこうと思う。

ytkg/dotfiles

PHPで簡易Webサーバーを起動する

動作確認したい時に便利。MacにPHPはデフォルト入ってるしね。
正確にはビルトインサーバーっていうらしい。

PHP: ビルトインウェブサーバー - Manual

バージョン 🔗

$ sw_vers
ProductName:    Mac OS X
ProductVersion:    10.13.6
BuildVersion:    17G4015

$ php --version
PHP 7.1.16 (cli) (built: Apr  1 2018 14:10:37) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies

起動コマンド 🔗

$ php -S localhost:5555
PHP 7.1.16 Development Server started at Thu Dec  5 09:12:57 2019
Listening on http://localhost:5555
Document root is /Users/YOSHIKI/go/src/github.com/ytkg/html_template
Press Ctrl-C to quit.

エイリアスに 登録 🔗

エイリアスにwwwで登録してすぐ起動できるようにしてる。

# ~/.bashrc
alias www='php -S localhost:5555'

コマンドで Mac OS X のバージョンを確認する方法

Tags: OS

いつもメニューバーの「このMacについて」から確認してたけど、コマンドで確認する方法ってあるのかなって調べた。
sw_vers で確認できる。

$ sw_vers
ProductName:    macOS
ProductVersion: 11.6.7
BuildVersion:   20G630

覚えにくいな。software version の略なのかな。

HTMLの雛形

Tags: HTML

簡単なサイトの作成やCSSの挙動を確認する時に使う

HTML 🔗

<!DOCTYPE html>
<html lang='ja'>
  <head>
    <meta charset='UTF-8'>
    <title>サイトタイトル</title>
    <style>
      body {
        margin: 0;
        padding: 0;
      }
    </style>
  </head>
  <body>
    <div>Hello World!</div>
  </body>
</html>

ワンライナー 🔗

テンプレートをGitHubに上げた。
ytkg/html_template

curl https://raw.githubusercontent.com/ytkg/html_template/master/index.html > index.html

ベーシック認証の手入力を省略する方法

開発中とかにいちいちユーザー名とパスワードを入力するのはとても面倒。
URLにユーザー名とパスワードを含めると認証を省略できる。

https://username:[email protected]/

他にもiPhoneのホーム画面に追加するようなWebアプリはこのやり方でアクセスしたあとにホーム画面に追加すれば認証を求められないので便利。

Herokuで動かしているRailsアプリにベーシック認証を掛ける

家用のRailsアプリをHerokuで動かしているが、一応認証は入れておきたいなと思ってベーシック認証を掛けた時のメモ

やり方 🔗

http_basic_authenticate_withというメソッドが用意されているので、ApplicationControllerに記述するだけで出来る。

# app/controllers/application_controller.rb

class ApplicationController < ActionController::Base
  http_basic_authenticate_with name: 'name', password: 'password'
end

最終的には本番時のみ動作してほしいのとnamepasswordは環境変数にしたいので以下のようになった。

# app/controllers/application_controller.rb

class ApplicationController < ActionController::Base
  http_basic_authenticate_with name: ENV['BASIC_AUTH_NAME'], password: ENV['BASIC_AUTH_PASSWORD'] if Rails.env.production?
end

Herokuの環境変数の設定方法はheroku config:add HOGE='hoge'

$ heroku config:add BASIC_AUTH_NAME='hoge'
$ heroku config:add BASIC_AUTH_PASSWORD='fuga'

「Hello World!」を返すGo言語アプリをHerokuにデプロイする

Tags: Go Heroku

概要 🔗

「Hello World!」を返すGo言語アプリをHerokuにデプロイする。
以下に載っているチュートリアルをそのままやるだけ。
https://jp.heroku.com/go

バージョン 🔗

$ go version
go version go1.12.9 darwin/amd64

$ govendor -version
v1.0.9

$ heroku --version
heroku/7.35.0 darwin-x64 node-v12.13.0

手順 🔗

Govendorのインストール 🔗

パッケージ管理ツールを入れる。RubyでいうBundlerかな。

$ go get -u github.com/kardianos/govendor

kardianos/govendor - GitHub

「Hello World! 」と応答するコマンド(world)を作成 🔗

$ mkdir hello_golang_on_heroku
$ cd hello_golang_on_heroku
$ vim main.go

package main

import (
    "io"
    "net/http"
    "os"
)

func hello(w http.ResponseWriter, r *http.Request) {
    io.WriteString(w, "Hello World!")
}

func main() {
    port := os.Getenv("PORT")
    http.HandleFunc("/", hello)
    http.ListenAndServe(":"+port, nil)
}

govendor init を使ってマニフェストを生成 🔗

$ govendor init
$ tree .
.
├── main.go
└── vendor
    └── vendor.json

heroku create を使ってアプリをプロビジョン 🔗

$ heroku create
Creating app... done, ⬢ shrouded-taiga-69918
https://shrouded-taiga-69918.herokuapp.com/ | https://git.heroku.com/shrouded-taiga-69918.git

git push heroku master を使ってデプロイ 🔗

$ git push heroku master
Counting objects: 7, done.
Delta compression using up to 12 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (7/7), 791 bytes | 791.00 KiB/s, done.
Total 7 (delta 0), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Go app detected
remote: -----> Fetching jq... done
remote: -----> Fetching stdlib.sh.v8... done
remote: -----> Checking vendor/vendor.json file.
remote:  !!    The 'heroku.goVersion' field is not specified in 'vendor/vendor.json'.
remote:  !!
remote:  !!    Defaulting to go1.12.12
remote:  !!
remote:  !!    For more details see: https://devcenter.heroku.com/articles/go-apps-with-govendor#build-configuration
remote:  !!
remote: -----> New Go Version, clearing old cache
remote: -----> Installing go1.12.12
remote: -----> Fetching go1.12.12.linux-amd64.tar.gz... done
remote: -----> Fetching govendor... done
remote:  !!    Installing package '.' (default)
remote:  !!
remote:  !!    To install a different package spec set 'heroku.install' in 'vendor/vendor.json'
remote:  !!
remote:  !!    For more details see: https://devcenter.heroku.com/articles/go-apps-with-govendor#build-configuration
remote:  !!
remote: -----> Fetching any unsaved dependencies (govendor sync)
remote: -----> Running: go install -v -tags heroku .
remote: github.com/ytkg/hello_golang_on_heroku
remote:
remote:        Installed the following binaries:
remote:                ./bin/hello_golang_on_heroku
remote: -----> Discovering process types
remote:        Procfile declares types -> web
remote:
remote: -----> Compressing...
remote:        Done: 3.6M
remote: -----> Launching...
remote:        Released v3
remote:        https://shrouded-taiga-69918.herokuapp.com/ deployed to Heroku
remote:
remote: Verifying deploy... done.
To https://git.heroku.com/shrouded-taiga-69918.git
* [new branch]      master -> master

動作確認 🔗

$ curl https://shrouded-taiga-69918.herokuapp.com
Hello World!

リポジトリ 🔗

ytkg/hello_golang_on_heroku - GitHub

【Linux】グローバルIPアドレスを確認する方法

やり方 🔗

Curlで取得できる。URLは他にもいろいろある。

$ curl http://inet-ip.info
203.0.113.0

エイリアスに登録 🔗

URL忘れちゃうから gip でエイリアス設定した

# ~/.bashrc
alias gip='curl http://inet-ip.info'

Nature Remo Cloud APIを使って家電を操作する時のメモ

ドキュメント 🔗

https://swagger.nature.global/

トークンの発行 🔗

https://home.nature.global/

手順 🔗

認証確認 🔗

$ curl -X GET "https://api.nature.global/1/users/me" -H "Authorization: Bearer Authorization: Bearer {取得したトークン}" | jq .
{
  "id": "{User ID}",
  "nickname": "ytkg"
}

電化製品一覧取得 🔗

$ curl -X GET "https://api.nature.global/1/appliances" -H "Authorization: Bearer {取得したトークン}" | jq .
[
  {
    "id": "{Appliance ID}",
    "device": {
      "name": "Remo",
      "id": "{Device ID}",
      "created_at": "2017-05-20T09:52:53Z",
      "updated_at": "2019-11-16T15:58:16Z",
      "mac_address": "{Mac Address}",
      "serial_number": "{Serial Number}",
      "firmware_version": "Remo/1.0.39-g41c1188",
      "temperature_offset": 0,
      "humidity_offset": 0
    },
    "model": null,
    "type": "IR",
    "nickname": "電気",
    "image": "ico_av",
    "settings": null,
    "aircon": null,
    "signals": [
      {
        "id": "{ONのSignal ID}",
        "name": "ON",
        "image": "ico_on"
      },
      {
        "id": "{OFFのSignal ID}",
        "name": "OFF",
        "image": "ico_off"
      }
    ]
  },
  {
    省略
  }
]

電化製品を操作する赤外線を送る 🔗

curl -X POST "https://api.nature.global/1/signals/{Signal ID}/send" -H "Authorization: Bearer {取得したトークン}"

Rubyで書くと 🔗

require 'faraday'

client = Faraday.new url: 'https://api.nature.global'
token = '{トークン}'
client.headers['Authorization'] = "Bearer #{token}"

response = client.get do |req|
  req.url '/1/appliances'
end

JSON.parse(response.body)

signal_id = 'Signal ID'
client.post do |req|
  req.url "/1/signals/#{signal_id}/send"
end

CentOS6でもRuby2.6とRails6を使いたいときのメモ

Tags: Ruby Rails CentOS

CentOS6だとyumで入るgccが古いから上げる必要ある

$ sudo yum install centos-release-scl
$ sudo yum install scl-utils
$ sudo yum install devtoolset-7
$ scl enable devtoolset-7 bash
$ gcc --version
gcc (GCC) 7.3.1 20180303 (Red Hat 7.3.1-5)
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

これでイケる。

ReactアプリをNowに爆速でデプロイする

Tags: React Now

インストールなどは端折る。

バージョン 🔗

[vagrant@localhost ~]$ npx -v
6.4.1
[vagrant@localhost ~]$ npx create-react-app -V
npx: 91個のパッケージを11.38秒でインストールしました。
3.1.1
[vagrant@localhost ~]$ yarn -v
1.16.0
[vagrant@localhost ~]$ now -v
16.1.2

手順 🔗

Reactアプリ作成 🔗

npx create-react-app アプリ名でアプリ作成。最初のcommitまでやってくれる。

[vagrant@localhost ~]$ npx create-react-app sample-react-app
npx: 91個のパッケージを8.587秒でインストールしました。

Creating a new React app in /home/vagrant/sample-react-app.

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts...

yarn add v1.16.0
[1/4] Resolving packages...
[2/4] Fetching packages...
info [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
info [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
warning "react-scripts > @typescript-eslint/[email protected]" has incorrect peer dependency "eslint@^5.0.0".
warning "react-scripts > @typescript-eslint/[email protected]" has incorrect peer dependency "eslint@^5.0.0".
warning "react-scripts > @typescript-eslint/eslint-plugin > [email protected]" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev ||
>= 3.7.0-beta".
[4/4] Building fresh packages...
success Saved lockfile.
success Saved 7 new dependencies.
info Direct dependencies
├─ [email protected]
├─ [email protected]
└─ [email protected]
info All dependencies
├─ [email protected]
├─ [email protected]
├─ [email protected]
├─ [email protected]
├─ [email protected]
├─ [email protected]
└─ [email protected]
Done in 15.22s.

Initialized a git repository.

Success! Created sample-react-app at /home/vagrant/sample-react-app
Inside that directory, you can run several commands:

  yarn start
    Starts the development server.

  yarn build
    Bundles the app into static files for production.

  yarn test
    Starts the test runner.

  yarn eject
    Removes this tool and copies build dependencies, configuration files
    and scripts into the app directory. If you do this, you can’t go back!

We suggest that you begin by typing:

  cd sample-react-app
  yarn start

Happy hacking!

ディレクトリ移動して、yarn startで起動確認。

映画の公開日情報は映画.comがiCalフォーマットで公開してくれていた

Tags: API iCal

映画の公開日を取得できるAPIってないのかなと探していたら、映画.com がAPIではないけれど、iCalフォーマットで公開してくれていたのでこれを使うことにする。

iCal公開予定スケジュール - 映画.com

$ curl -s https://eiga.com/movie/coming.ics |head -n 53
BEGIN:VCALENDAR
VERSION:2.0
PRODID:icalendar-ruby
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:公開スケジュール - 映画.com
X-WR-CALDESC:今週末以降、公開予定の映画作品・上映スケ
 ジュールのカレンダーです。
X-WR-TIMEZONE:Asia/Tokyo
X-WR-RELCALID:e34ddde7-3e5e-5a98-69ed-c61f22710c56
BEGIN:VEVENT
DTSTAMP:20190803T080034Z
UID:eiga.com_91480
DTSTART:20190727T000000
DTEND:20190728T000000
DESCRIPTION:受け口にコンプレックスを抱く少年を主人公に
 、いじめを受けている当事者への無理解や周囲との違
 いを理解することなどを描いた短編作品。カナザワ映
 画祭2017「期待の新人監督」特別賞、第18回TAMA NEW WAVEコ
 ンペティション特別賞など、国内のインディペンデン
 ト映画祭で数多く受賞を果たした。小学6年生の少年・
 光は受け口が悩みで、マスクをつけて学校へ行くよう
 になる。両親は矯正のため光を歯科に連れて行くが、
 顎の矯正には18歳頃になってから手術が必要と知らされ
 る。人との違いに悩みを、クラスになじめない光の日
 常は続くが……。\n作品紹介ページ:https://eiga.com/movie/9
 1480/
SUMMARY:アマノジャク・思春期
END:VEVENT
BEGIN:VEVENT
DTSTAMP:20190803T080034Z
UID:eiga.com_91179
DTSTART:20190727T000000
DTEND:20190728T000000
DESCRIPTION:激しい情念を宿した生き人形が引き起こす惨劇
 を描くフィリピン製ホラー。バス事故によって愛する
 娘を失ったフェイス、フリオ、ステラ。心理学者のマ
 ノロ博士は、3人の耐え難い悲しみを癒やすため、それ
 ぞれの娘の姿に似せた等身大の人形を置いていく。フ
 ェイスは亡き娘マリアにそっくりのリアルな人形に強
 い抵抗感を抱くが、次第に我が子同然の愛情を注ぐよ
 うになっていく。マノロ博士の実験は成功したかに見
 えたが、やがて3人の周囲で不可解な事件が起こり始め
 る。出演は「ダイ・ビューティフル」のイザ・カルザ
 ド、「ローサは密告された」のマリア・イサベル・ロ
 ペス。監督はフィリピンを代表するヒットメーカーで
 、16年に49歳の若さで急逝したウェン・V・デラマス。新
 宿シネマカリテの特集企画「カリコレ2019/カリテ・フ
 ァンタスティック!シネマコレクション2019」(19年7月1
 3日~8月9日)上映作品。\n作品紹介ページ:https://eiga.co
 m/movie/91179/
SUMMARY:生き人形マリア
END:VEVENT

BEGIN:VEVENTからEND:VEVENTまでが1つの映画の情報で、 DTSTARTが公開日、SUMMARYがタイトルになっている感じ。 十分使えそうだ。

RailsでRakeタスクを作成する方法

Tags: Rails

手順 🔗

$ rails g task task_hoge

lib/tasks/task_hoge.rakeというファイルが生成される

タスクの中身はこんな感じで書く

namespace :task_hoge do
  desc '処理の説明'
  task :foo do
    puts 'foo!'
  end
end

実行の仕方

$ rails task_hoge:foo
foo!

モデルにアクセスしたい場合は、:enviromentを付ける。

namespace :task_hoge do
  desc '処理の説明'
  task :foo => :environment do
    puts Category.first.name
  end
end

実行結果

$ rails task_hoge:foo
すべて

herokuでアプリケーションをメンテナンスモードにする方法

Tags: Heroku

手順 🔗

以下のコマンドでメンテナンスモードになる。

$ heroku maintenance:on
Enabling maintenance mode for ⬢ movie-trailers-20190201... done

offにしたい場合。 🔗

$ heroku maintenance:off
Disabling maintenance mode for ⬢ movie-trailers-20190201... done

今のメンテナンスモードかどうか確認したい場合。 🔗

$ heroku maintenance
off

Railsでテーブルを作るほどでもないなと思ったデータはActiveHashで作る

Tags: Rails Gem

静的データだからテーブル作るのはめんどくさいけど、ActiveRecordのように扱いたいって時にはactive_hashというGemが便利

https://github.com/zilkey/active_hash

使い方

gem 'active_hash'
class Category < ActiveHash::Base
  self.data = [
    { id: 1, name: '総合' },
    { id: 2, name: '一般' },
    { id: 3, name: '世の中' },
    { id: 4, name: '政治と経済' },
    { id: 5, name: '暮らし' },
    { id: 6, name: '学び' },
    { id: 7, name: 'テクノロジー' },
    { id: 8, name: 'おもしろ' },
    { id: 9, name: 'エンタメ' }
  ]
end
irb(main):001:0> Category.all.each do |category|
irb(main):002:1* puts category.name
irb(main):003:1> end
総合
一般
世の中
政治と経済
暮らし
学び
テクノロジー
おもしろ
エンタメ

ちゃんとActiveRecordのメソッドそれなりに使えたりする。

codicのAPIをRubyで試してみる

Tags: Ruby API

前回の記事の続き的な。(codicのAPIを試してみる | 高木のブログ )
Rubyで書くとこんな感じになる。

require 'net/http'
require 'uri'
require 'json'

uri = URI.parse(URI.encode('https://api.codic.jp/v1/engine/translate.json?text=記事を書く&casing=lower+underscore'))
request = Net::HTTP::Get.new(uri)
request['Authorization'] = 'Bearer {ACCESS_TOKEN}'

response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
  http.request(request)
end

JSON.parse(response.body)
# => [
#        {
#            "successful": true,
#            "text": "記事を書く",
#            "translated_text": "write_article",
#            "words": [
#                {
#                    "successful": true,
#                    "text": "書く",
#                    "translated_text": "write",
#                    "candidates": [
#                        {
#                            "text": "write"
#                        },
#                        {
#                            "text": "writing"
#                        }
#                    ]
#                },
#                {
#                    "successful": true,
#                    "text": "を",
#                    "translated_text": null,
#                    "candidates": [
#                        {
#                            "text": null
#                        },
#                        {
#                            "text": "that"
#                        },
#                        {
#                            "text": "to"
#                        },
#                        {
#                            "text": "for"
#                        },
#                        {
#                            "text": "from"
#                        },
#                        {
#                            "text": "is"
#                        },
#                        {
#                            "text": "of"
#                        }
#                    ]
#                },
#                {
#                    "successful": true,
#                    "text": "記事",
#                    "translated_text": "article",
#                    "candidates": [
#                        {
#                            "text": "article"
#                        },
#                        {
#                            "text": "posts"
#                        },
#                        {
#                            "text": "post"
#                        },
#                        {
#                            "text": "news"
#                        }
#                    ]
#                }
#            ]
#        }
#    ]

codicのAPIを試してみる

Tags: API

いつもお世話になってるcodicにAPIがあったので試してみる。もちろん認証が必要。
トークンの取得とか使い方の説明は以下を参照
API | codic

手順 🔗

こんな感じでcurlを叩く。

$ curl -H "Authorization: Bearer {ACCESS_TOKEN}" "https://api.codic.jp/v1/engine/translate.json?text=記事を書く&casing=lower+underscore"

実際に叩いてみた結果。

$ curl -H "Authorization: Bearer {ACCESS_TOKEN}" "https://api.codic.jp/v1/engine/translate.json?text=記事を書く&casing=lower+underscore"
[{"successful":true,"text":"\u8a18\u4e8b\u3092\u66f8\u304f","translated_text":"write_article","words":[{"successful":true,"text":"\u66f8\u304f","translated_text":"write","candidates":[{"text":"write"},{"text":"writing"}]},{"successful":true,"text":"\u3092","translated_text":null,"candidates":[{"text":null},{"text":"that"},{"text":"to"},{"text":"for"},{"text":"from"},{"text":"is"},{"text":"of"}]},{"successful":true,"text":"\u8a18\u4e8b","translated_text":"article","candidates":[{"text":"article"},{"text":"posts"},{"text":"post"},{"text":"news"}]}]}]

見にくいし、文字があれなので、jq使う。

[Dev:~]$ curl -H "Authorization: Bearer {ACCESS_TOKEN}" "https://api.codic.jp/v1/engine/translate.json?text=記事を書く&casing=lower+underscore" | jq .
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   554  100   554    0     0   1355      0 --:--:-- --:--:-- --:--:--  1354
[
  {
    "successful": true,
    "text": "記事を書く",
    "translated_text": "write_article",
    "words": [
      {
        "successful": true,
        "text": "書く",
        "translated_text": "write",
        "candidates": [
          {
            "text": "write"
          },
          {
            "text": "writing"
          }
        ]
      },
      {
        "successful": true,
        "text": "を",
        "translated_text": null,
        "candidates": [
          {
            "text": null
          },
          {
            "text": "that"
          },
          {
            "text": "to"
          },
          {
            "text": "for"
          },
          {
            "text": "from"
          },
          {
            "text": "is"
          },
          {
            "text": "of"
          }
        ]
      },
      {
        "successful": true,
        "text": "記事",
        "translated_text": "article",
        "candidates": [
          {
            "text": "article"
          },
          {
            "text": "posts"
          },
          {
            "text": "post"
          },
          {
            "text": "news"
          }
        ]
      }
    ]
  }
]

変換されたものだけじゃなくて単語ごとの候補も出してくれるっぽい。
何かに使えたら使ってみよう。

CentOS のバージョンを確認する方法

CentOS のバージョンは /etc/redhat-release に記述されている

$ cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)

Chromeの開発者ツールが便利!その2: 圧縮(または難読化)されたJSを読みやすくする

圧縮または難読化されたファイルは読みづらい。 難読化されたコード

赤丸で囲んだところの『{}』マークを押したら見やすい形に整えてくれる。 読みやすくしてれるボタン

ほら、見やすくなった!
でも例としてGoogle Mapはちょっと微妙だったかも。 読みやすくなったコード

Chromeの開発者ツールが便利!その1: オフラインモード

Networkタブを開いて、Offlineにチェックを入れたら疑似オフラインになる! ネットワークタブ

このゲームで遊びたくなった時にいちいちWi-Fiを切らなくてもいいから便利だ! インターネットに接続されていません

duコマンドで大きいディレクトリを見つける

Tags: コマンド

ディスク使用率が100%になっててやべ!ってなったので要らないファイルを消す。

[vagrant@localhost ~]$ df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root
                       38G   36G  245M 100% /
tmpfs                 499M     0  499M   0% /dev/shm
/dev/sda1             477M  222M  230M  50% /boot
vagrant               466G  212G  255G  46% /vagrant

duコマンドで大きいディレクトリを見つける。sortコマンドを組み合わせて見やすく。
procディレクトリってなんだろ。次回「procディレクトリって何」の巻。

[vagrant@localhost ~]$ sudo du -sm /* |sort -nr
du: cannot access `/proc/9501/task/9501/fd/4': そのようなファイルやディレクトリはありません
du: cannot access `/proc/9501/task/9501/fdinfo/4': そのようなファイルやディレクトリはありません
du: cannot access `/proc/9501/fd/4': そのようなファイルやディレクトリはありません
du: cannot access `/proc/9501/fdinfo/4': そのようなファイルやディレクトリはありません
19354   /home
9168    /usr
6854    /var
652     /lib
220     /boot
206     /opt
200     /tmp
35      /etc
24      /lib64
15      /sbin
8       /bin
1       /vagrant
1       /srv
1       /root
1       /mnt
1       /media
1       /lost+found
1       /dev
1       /cgroup
0       /sys
0       /selinux
0       /proc

homeディレクトリが大きいみたいなのでその中を見ていく。
これを繰り返して要らないファイルを削除する。

nkfでUTF-8からCP932に変換する

Tags: コマンド

RubyでCSVファイルを生成して、エクセルで開くと文字化けする。
それをnkfで変換して解消する。

nkf -s --cp932 sample_utf8.csv > sample_cp932.csv

mackerel-agentのアンインストール

Tags: Mackerel

yumで入れてたら 🔗

sudo yum remove mackerel-agent

全部一気に 🔗

設定ファイルなどは消えないので、これで設定ファイルやIDなども一気に消す

sudo yum -y remove mackerel-agent && sudo rm -rf /etc/mackerel-agent; sudo rm -rf /var/lib/mackerel-agent

Categories


Tags