2018-01-01から1年間の記事一覧
SSL更新が切れていて、更新する際に役にたったリンク qiita.com https://tagamidaiki.com/hard-to-upgrade-lets-encrypt-certificate/ たれみみ(@taremimi_7)
The video element contains cross-origin data, and may not be loaded. とでるとき。 sudo /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args -allow-file-access-from-files
deploy.rb %x[git pull] %x[kill -9 `pgrep -f 'unicorn' `] %x[RAILS_ENV=production DISABLE_DATABASE_ENVIRONMENT_CHECK=1 bundle exec rake db:migrate:reset] %x[RAILS_ENV=production DISABLE_DATABASE_ENVIRONMENT_CHECK=1 bundle exec rake db:seed]…
カラム名をremote_ _url で挟むの盲点だった CarrierWaveでURLから画像を保存、アップロードする方法 - ぷれすとぶろぐ
ローカルファイルにアクセスする。(Mac OSX) $ sudo /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args -allow-file-access-from-files
var light = new THREE.SpotLight(); light.position.set(**,**,**); light.target.updateMatrixWorld(); ← 挟む たれみみ(@taremimi_7)
汚いのはお許しを・・・以下ソースだけ。app/assets/javascripts/channels/product.coffee jQuery(document).on 'turbolinks:load', -> open_messages = $('#open_messages') if $('#open_messages').length > 0 if (!App.product) App.product = App.cable.…
qiita.com ここの続きのテイ 自分用備忘録。 $cd ~ $git clone https://github.com/certbot/certbot $cd certbot $sudo -i $sudo ./certbot-auto certonly --agree-tos --webroot -w /var/www/rails/*アプリ名*/public -d hhbox.net -m *メアド --debug $/et…
AWSでSSL化するのにCertificateManegerだーメールサーバーが必要だーSESだーS3だーってややこしすぎて困ってたらとても簡単な記事見つけて助かりました!備忘録 www.wantedly.com aws.amazon.com
schoolコントローラーindexアクションのみbefore_actionでnot_registered_schoolをスキップしたいとき(ややこしい、、、) class ApplicationController < ActionController::Base before_action : not_registered_school,except: [:index] ,if: :school_cont…
やっぱりturbolinks、、、 以下を追加すれば特定のページで切れます <body data-turbolinks="false"> たれみみ (@taremimi_7)</body>
備忘録 morizyun.github.io
こんなエラーが出たので対処法。 Cannot allocate memory - fork(2) (Errno::ENOMEM) unicorn log どうやらメモリがあふれたっぽい。 GitHub - kzk/unicorn-worker-killer: Automatically restart Unicorn workers based on 1) max number of requests and 2…
クリップボードがしんでいたので備忘録 set mouse=a じゃなくて set mouse=r たれみみ(@taremimi_7)
1.Rails側のconbfig/database.ymkで以下のように設定変更。 default: &default charset: utf8mb4 encoding: utf8mb4 collation: utf8mb4_general_ci adapter: mysql2 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> username: root password: socket: /…
この2つ読んだらなんとかなる。 workingholiday-syrup.com カナダワーホリビザの申請方法!全体の流れをわかりやすく解説 | YOLO あとこれ↓ invitationが届いてからはここを参考に入力 comnee.jp パスポートの写し(画像)については、有効期限や顔写真が載っ…
Rails(ローカル)でサーバ立ち上げた後うまくプロセスを切れないとき、 調べるとたくさん、 ps aux | grep rails, kill -9 **プロセス番号** がでてきますが、 kill: (*****) - No such process と出てくるので、解決法。 lsof -wni tcp:3000 kill -9 **プロ…
<meta name="twitter:image" content="<%= asset_url('***.png') %>" /> たれみみ(@taremimi_7)</meta>
サーバー側でrake assets:precompile RAILS_ENV=production すると rake aborted! Uglifier::Error: Unexpected character '`' のエラーが。 app/assets/javascripts/application.jsの中のjsで使っていた変数展開のバッククォートが問題だったらしいです。 <…
1個前のcontrollerとactionを取得する。 url = Rails.application.routes.recognize_path(request.referrer) previous_controller =url[:controller] previous_action = url[:action] たれみみ(@taremimi_7)
Railsのコントローラー内の話。 redirect_to にcontroller,action,id指定しつつflashを追加する場合、 redirect_to ({controller: '****s', action: '****',id: params[:id]}), flash: {success: '更新されました'} ({})で囲うの知らなかったのでメモ。 たれ…
1.mysql_config --socket で mysqlのソケット位置確認 2.confid/database.yml内で socket=**1の結果** を記述 3.mysql --help | grep my.cnf でmy.confの位置確認 4.でてきたファイルを1こずつ開いて、すでに中に何か書いてあるファイルの中に [mysqld] sock…
メモ Use the generator to remove configuration files as well (step 2), so the whole process would be (referencing previous answers): Remove the table: rake db:rollback VERSION=<insert the version number of the migration> Remove the configuration: rails destroy devise:install Remove </insert>…
bundle install したとき Bundled gems are installed into `./vendor/bundle` ってなるときいろいろバグった。 bundle config bundle config --delete **** からの再度bundle install でOkay。
春はあけぼの。たれみみです。 今回は宣伝です! 初めて1人でアプリ作りましたー!(拍手) 『ホメホメ箱』リリースしました!よかったらつかってみてください(*´꒳`*)https://t.co/y0AfSSfzrA— ホメホメ箱 (@homehome_bako) 2018年2月2日 ※追記 ドメインをhhb…
github.com config/environments/production.rb で config.assets.compile = true とすると反映されましためでたしめでたし What the f*ck?! lol @taremimi_7