Hi! Here you have my development environment configuration (with working links).
##Programs:
- iTerm2
- MacDown
| /* Small devices (tablets, 768px and up) */ | |
| @media (min-width: 768px) { ... } | |
| /* Medium devices (desktops, 992px and up) */ | |
| @media (min-width: 992px) { ... } | |
| /* Large devices (large desktops, 1200px and up) */ | |
| @media (min-width: 1200px) { ... } |
| <table bgcolor="#ffffff" width="600" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth"> | |
| <tbody> | |
| <!-- Spacing --> | |
| <tr> | |
| <td width="100%" height="20"></td> | |
| </tr> | |
| <!-- Spacing --> | |
| <tr> | |
| <td> | |
| <table width="560" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner"> |
| .custom-panel { | |
| box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); | |
| background: #f4f4f4; | |
| } |
| #config/application.rb | |
| module RailsApp | |
| class Application < Rails::Application | |
| config.action_mailer.smtp_settings = { | |
| :address => "smtp.live.com", | |
| :port => 587, | |
| :domain => "squape.com", | |
| :user_name => "noreply@squape.com", |
| .tabs{ | |
| li{ | |
| border: 2px solid $main-green; | |
| border-right: none; | |
| } | |
| :first-child{ | |
| border-top-left-radius: 10px; | |
| } | |
| :last-child{ | |
| border-top-right-radius: 10px; |
| <div class="small-12 medium-3 columns"> | |
| <!--User card--> | |
| <div class="panel custom-panel custom-radius"> | |
| <div class="profile-data"> | |
| <p class = "text-center"><%= image_tag @user.avatar.url, class: "profile-image" %></p> | |
| <hr/> | |
| <h2>@<%= @user.username %></h2> | |
| <h4><%= @user.name.capitalize %> <%= @user.lastname.capitalize %></h4> | |
| </div> | |
| <%= link_to "Follow", current_user.follow!(@user), class: "button expand ultra-small" %> |
| .carousel.slide data-ride="carousel" | |
| /! Wrapper for slides | |
| .carousel-inner | |
| .item.active | |
| img alt="..." src="..." | |
| .carousel-caption | |
| | \... | |
| .item | |
| img alt="..." src="..." | |
| .carousel-caption |
| git clone https://github.com/felipecabargas/felipecabargas.github.io.git milkshakecroc.github.io | |
| cd milkshakecroc.github.io | |
| git remote set-url origin git@github.com:milkshakecroc/milkshakecroc.github.io.git | |
| git rm -rf _posts/ | |
| mkdir _posts/ | |
| gc -am "First Commit" | |
| git push origin master |
| *.rbc | |
| capybara-*.html | |
| .rspec | |
| /log | |
| /tmp | |
| /db/*.sqlite3 | |
| /public/system | |
| /coverage/ | |
| /spec/tmp | |
| **.orig |