This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /! Modal | |
| #myModal.modal.fade aria-labelledby="myModalLabel" role="dialog" tabindex="-1" | |
| .modal-dialog role="document" | |
| .modal-content | |
| .modal-header | |
| button.close aria-label="Close" data-dismiss="modal" type="button" | |
| span aria-hidden="true" × | |
| h4#myModalLabel.modal-title Modal title | |
| .modal-body | |
| | \... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /! Modal | |
| #myModal.modal.fade aria-labelledby="myModalLabel" role="dialog" tabindex="-1" | |
| .modal-dialog role="document" | |
| .modal-content | |
| .modal-header | |
| button.close aria-label="Close" data-dismiss="modal" type="button" | |
| span aria-hidden="true" × | |
| h4#myModalLabel.modal-title Modal title | |
| .modal-body | |
| | \... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .pryrc | |
| color_escape_codes = { | |
| black: "\033[0;30m", | |
| red: "\033[0;31m", | |
| green: "\033[0;32m", | |
| yellow: "\033[0;33m", | |
| blue: "\033[0;34m", | |
| purple: "\033[0;35m", | |
| cyan: "\033[0;36m", | |
| reset: "\033[0;0m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # config/routes.rb | |
| resource :ghost, only: [:create, :destroy] | |
| # app/controllers/ghosts_controller.rb | |
| class GhostsController < ApplicationController | |
| def create | |
| session[:admin_id] = current_user.id | |
| user = User.find(params[:user_id]) | |
| sign_in user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background-color: #fff; | |
| color: #333; | |
| margin: 33px; | |
| font-family: verdana, arial, helvetica, sans-serif; | |
| font-size: 13px; | |
| line-height: 18px; | |
| } | |
| p, ol, ul, td { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " A minimal vimrc for new vim users to start with. | |
| " | |
| " Referenced here: http://www.benorenstein.com/blog/your-first-vimrc-should-be-nearly-empty/ | |
| " Original Author: Bram Moolenaar <[email protected]> | |
| " Made more minimal by: Ben Orenstein | |
| " Last change: 2012 Jan 20 | |
| " | |
| " To use it, copy it to | |
| " for Unix and OS/2: ~/.vimrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module SoftDeletable | |
| extend ActiveSupport::Concern | |
| included do | |
| default_scope { where(deleted_at: nil) } | |
| scope :deleted, -> { unscope(where: :deleted_at).where.not(deleted_at: nil) } | |
| end | |
| def delete | |
| self.touch(:deleted_at) if has_attribute? :deleted_at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <!-- Required meta tags --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <title>Hello, world!</title> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { background: #222; color: #e6e6e6; } | |
| a { color: #949494; } | |
| a:link, a:visited { color: #949494; } | |
| a:hover, a:active, a:focus { color: #c7c7c7; } | |
| hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let systemIcons = [ | |
| "circle", | |
| "square", | |
| "arrow.left", | |
| "arrow.up", | |
| "arrow.right", | |
| "arrow.down", | |
| "arrow.left.and.right", | |
| "arrow.up.left", | |
| "arrow.up.right", |