Godaddy에서 Heroku로 DNS 설정하기
Oct 28, 16
Godaddy DNS 관리페이지에서 모든 레코드를 삭제. 다음 레코드 추가 유형 : CNAME 이름 : www 값 : your-heroku-app-name.herokuapp.com TTL : 1시간 포워딩 설정 여기로 전달 : http://www.your_new_domain 전달 유형 : 301 (영구) 설정 : 포워딩만 가능 Heroku dashboard > Settings 에 Custom Domains에 추가 Domain name : www.your_new_domain.com SSL 설정시 다음 레코드 추가 유형 : CNAME 이름 : www 값 : your-doamin.herokudns.com TTL : 1시간 포워딩 설정 여기로 전달 : https://www.your_new_domain 전달 유형 : 301...
SublimeText3 - 여러 줄 한번에 수정하기
Oct 25, 16
Command + shift + L : split into lines
수정하려는 lines을 선택
command + shift + L
line 마다 cursor가 생깁니다.
[source: http://sublimetexttips.com/]
https://www.sublimetext.com/docs/3/multiple_selection_with_the_keyboard.html
Mac OS X 10.11(El capitan)에서 SourceTree CLT 설치 실패시
Oct 23, 16
workaround 방법입니다.
~/.bash_profile
alias stree='/Applications/SourceTree.app/Contents/Resources/stree'
all credit : https://jira.atlassian.com/browse/SRCTREE-3172
Rails4에서 PG String Array type 사용하기
Oct 21, 16
migration class AddInstagramCodesToItem < ActiveRecord::Migration def change add_column :items, :instagram_codes, :string, array: true end end form <div class="form-group"> <%= f.label :instagram_codes, "Instagram", class: "col-sm-2 control-label" %> <div class="col-sm-10" id="item-price-selection-list"> <%= f.text_field :instagram_codes, class: "form-control"%> </div> </div> controller-1 private def item_params params.require(:item).permit(:instagram_codes, ...) end #controller-2 def create if @item.save @item.update_attribute(:instagram_codes,item_params[:instagram_codes].split(", ").map {|c| c.strip}) ... end def update if @item.update_attributes(item_params) @item.update_attribute(:instagram_codes,item_params[:instagram_codes].split(", ").map {|c| c.strip}) ... end Array로 타입으로 선언한 attribute 값을 쓸 때는 array로 넘겨야 값이 써진다....
Turbolink - 인스타그램 embed가 load되지 않을 때
Oct 21, 16
이것 때문에 시간을 많이 뺐겼는데, turbolink 세팅을 바꾸면 될 줄 알았다.
instagram.js.coffee
document.addEventListener "turbolinks:load", (event) ->
$.getScript("//platform.instagram.com/en_US/embeds.js", () ->
window.instgrm.Embeds.process()
)
all credit : http://stackoverflow.com/questions/27408917/instagram-embeds-not-working-when-adding-embeds-dynamically