マストドンでのメール送信チェック
$ RAILS_ENV=production bundle exec rails c
m = UserMailer.new.mail to:'[email protected]', subject: 'test', body: 'awoo'
m.deliver
マストドンでのメール送信チェック
$ RAILS_ENV=production bundle exec rails c
m = UserMailer.new.mail to:'[email protected]', subject: 'test', body: 'awoo'
m.deliver
| gulp.watch(['dev/**'], $.batch(function (events, cb) { | |
| var paths = []; | |
| events.on('data', function (evt) { | |
| paths.push(evt.path); | |
| }).on('end', function () { | |
| lr.changed({ | |
| body: { | |
| files: paths | |
| } | |
| }); |
ここでは、Lingr Bot APIについての情報を取り扱わず、Lingr APIについてのみ扱う。
- Lingr API · lingr/lingr Wiki https://github.com/lingr/lingr/wiki/Lingr-API
- APIメモ · tsukkee/lingr-vim Wiki https://github.com/tsukkee/lingr-vim/wiki/API%E3%83%A1%E3%83%A2
- lingr-vim/lingr.py at master · tsukkee/lingr-vim https://github.com/tsukkee/lingr-vim/blob/master/autoload/lingr.py
- pyLingr/pylingr.py at master · yoshiori/pyLingr https://github.com/yoshiori/pyLingr/blob/master/pylingr.py
- API - lingr - Lingr API documentation - Lingr API - Google Project Hosting https://code.google.com/p/lingr/wiki/API
- とても古く、現在の仕様と合致しない点が多い
| class ApplicationController < ActionController::Base | |
| protect_from_forgery | |
| protected | |
| def current_user | |
| @current_user ||= User.find_by_id(session[:user_id]) | |
| end | |
| def signed_in? |
| お (*・ρ・)ジュルリ 名詞 | |
| お (*>ヮ<)(>ヮ<*)ネー 名詞 | |
| お ヾ(๑╹◡╹)ノ"♡ 名詞 | |
| お (╹⌓╹ ) 名詞 | |
| お (/ω\) 名詞 | |
| お (ヾノ・ω・`)ナイナイ 名詞 | |
| お ☆(ゝω・)v 名詞 | |
| お ヾ(>ヮ<*)ナデナデ 名詞 | |
| お (*/ω\*) 名詞 | |
| お (=△=`歩) 名詞 |
| Matrix4 lookat = Matrix4.LookAt(cameraPositionX, cameraPositionY, cameraPositionZ, 256, 0, 256, 0.0, 1.0, 0.0); | |
| GL.MatrixMode(MatrixMode.Modelview); | |
| GL.LoadMatrix(ref lookat); |
| //-------------------------------------------- | |
| // Subject: L4D2のHUD改造方法 | |
| // Author: KIMOTO | |
| // Updated At: 2011/03/22 | |
| // Created At: 2010/08/15 | |
| //-------------------------------------------- | |
| ■概要 | |
| Left4Dead2のHUD(Head Up Display)についての変更、カスタマイズ方法についてまとめた資料です |