Skip to content

Instantly share code, notes, and snippets.

$ brew install homebrew/php/phpmyadmin
fatal: Cannot update paths and switch to branch 'stable' at the same time.
Did you intend to checkout 'refs/tags/1.1.11' which can not be resolved as commit?
fatal: Needed a single revision
invalid upstream refs/tags/1.1.11
==> Tapping homebrew/php
Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-php'...
remote: Counting objects: 685, done.
remote: Compressing objects: 100% (461/461), done.
remote: Total 685 (delta 448), reused 284 (delta 219), pack-reused 0
D, [2017-03-20T20:35:43.312080 #84351] DEBUG -- : (0.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) PRIMARY KEY) ENGINE=InnoDB
rails aborted!
ActiveRecord::StatementInvalid: Mysql2::Error: No database selected: CREATE TABLE `schema_migrations` (`version` varchar(255) PRIMARY KEY) ENGINE=InnoDB
/Users/hyejinan/.rvm/gems/ruby-2.2.5/gems/mysql2-0.4.5/lib/mysql2/client.rb:120:in `_query'
/Users/hyejinan/.rvm/gems/ruby-2.2.5/gems/mysql2-0.4.5/lib/mysql2/client.rb:120:in `block in query'
/Users/hyejinan/.rvm/gems/ruby-2.2.5/gems/mysql2-0.4.5/lib/mysql2/client.rb:119:in `handle_interrupt'
/Users/hyejinan/.rvm/gems/ruby-2.2.5/gems/mysql2-0.4.5/lib/mysql2/client.rb:119:in `query'
/Users/hyejinan/.rvm/gems/ruby-2.2.5/gems/activerecord-5.0.1/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:218:in `block in execute'
/Users/hyejinan/.rvm/gems/ruby-2.2.5/gems/activerecord-5.0.1/lib/active_record/connection_adapters/abstract_adapter.rb:589:in `block in log'
/Users/hyejinan/.rvm/gems/ruby-2.
<div class="row">
<div class="col-lg-12">
<div class="panel">
<header class="panel-heading lead">고객 사진 추가</header>
<div class="panel-body">
<%= simple_form_for( [:staffs, @user], url: staffs_user_photo_path, html: { class: 'form-horizontal', multipart: true } ) do |f| %>
<% if @user.errors.present? %>
<script type="text/javascript">
<% @user.errors.full_messages.each do |msg| %>
toastr.error('<%= msg %>');
<div class="row">
<div class="col-lg-12">
<div class="panel">
<header class="panel-heading lead">고객 사진 추가</header>
<div class="panel-body">
<%= simple_form_for( [:staffs, @user], url: staffs_user_photo_path, html: { class: 'form-horizontal', multipart: true } ) do |f| %>
<% if @user.errors.present? %>
<script type="text/javascript">
<% @user.errors.full_messages.each do |msg| %>
toastr.error('<%= msg %>');
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/Users/hyejinan/.rvm/rubies/ruby-2.2.5/bin/ruby -r
./siteconf20170324-25168-3oi6k.rb extconf.rb
checking for gcc... yes
checking for Magick-config... no
checking for pkg-config... yes
checking for outdated ImageMagick version (<= 6.4.9)... no
checking for presence of MagickWand API (ImageMagick version >= 6.9.0)... no
checking for Ruby version >= 1.8.5... yes
@powerwlsl
powerwlsl / capybara cheat sheet
Created April 21, 2017 11:12 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')
<!DOCTYPE html>
<html>
<head>
<title>TestApp</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
<meta property="fb:app_id" content="1906292329591719" />
<meta property="og:url" content="https://protected-lowlands-45584.herokuapp.com/" />
<meta property="og:title" content="TestApp" />
@powerwlsl
powerwlsl / Bundle error
Created July 7, 2017 01:24
Bundle error
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/Users/hyejinahn/.rvm/rubies/ruby-2.1.3/bin/ruby extconf.rb
checking for rb_trap_immediate in ruby.h,rubysig.h... no
checking for rb_thread_blocking_region()... yes
checking for ruby/thread.h... yes
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
checking for inotify_init() in sys/inotify.h... no
checking for __NR_inotify_init in sys/syscall.h... no
<div class='row'>
<div id='content-column' class="col-md-8 col-sm-9 col-xs-12">
<%= yield %>
</div>
<div class="col-md-4 col-sm-3 col-xs-12">
<%= render 'home/management_content' %>
</div>
</div>
</div>
</div>
function init_pagination() {
var hash, loading_articles, page_regexp, pushPage, title_of_article;
page_regexp = /\d+$/;
pushPage = function(page) {
if (page == "1") {
title_of_article = $("input#article_friendly_id")[0].value;
}
history.pushState(null, "InfiniteScrolling | Page " + page, title_of_article);
};
window.preparePagination = function(el) {