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
Unable to get RVM running under Cygwin in either Vista or Windows 7, info/results follow. Everything installs normally and rvm is_a function, but when I try to run irb, gem, or even rvm debug, it just sits there. When I interrupt these commands with Ctrl-C, I get output that generally looks like this: | |
<internal:lib/rubygems/custom_require>:29:in `require': Interrupt | |
from <internal:lib/rubygems/custom_require>:29:in `require' | |
from <internal:gem_prelude>:167:in `load_full_rubygems_library' | |
<snip - full output later> | |
Cygwin Version: CYGWIN_NT-6.0 1.7.7(0.230/5/3) 2010-08-31 09:58 | |
RVM Version: rvm 1.1.6 by Wayne E. Seguin |
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
I just installed RVM on my Ubuntu 10.04 box and I'm having the zlib problem, i.e.: | |
jseidel@EDP15:~$ rvm gem list | |
ERROR: Loading command: list (LoadError) | |
no such file to load -- zlib | |
ERROR: While executing gem ... (NameError) | |
uninitialized constant Gem::Commands::ListCommand | |
*** LOCAL GEMS *** |
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
###Model: incident_report.rb | |
# == Schema Information | |
# Schema version: 20110425214240 | |
# | |
# Table name: incident_reports | |
# | |
# id :integer not null, primary key | |
# investigator_name :string(255) | |
# employee_name :string(255) not null |
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
##### User model | |
class User < ActiveRecord::Base | |
# Devise stuff removed | |
# Setup accessible (or protected) attributes for your model | |
# I don't believe the attr_accessible :asset is required in my caes, but it's here anyway | |
attr_accessible :name, :email, :password, :password_confirmation, :remember_me, :asset | |
validates_presence_of :name |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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" > |
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
Homebrew build logs for macvim on macOS 10.12.6 | |
Build date: 2018-03-27 07:45:49 |
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
Homebrew build logs for vim on macOS 10.13.6 | |
Build date: 2019-02-19 09:13:40 |
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
""" ENABLED - Coc configuration and fixers """" | |
" ADDED 9/17/2021 | |
"Use 24-bit (true-color) mode in Vim/Neovim when outside tmux. | |
"If you're using tmux version 2.2 or later, you can remove the outermost $TMUX check and use tmux's 24-bit color support | |
"(see < http://sunaku.github.io/tmux-24bit-color.html#usage > for more information.) | |
if (empty($TMUX)) | |
if (has("nvim")) | |
"For Neovim 0.1.3 and 0.1.4 < https://github.com/neovim/neovim/pull/2198 > | |
let $NVIM_TUI_ENABLE_TRUE_COLOR=1 | |
endif |
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
/** | |
* CustomLegend handler | |
* <CustomLegendItem> | |
* @param {object} asset - data for display on the legend item | |
* @param {function} setOpacity - function to change opacity | |
* @enders {React <li> Element} to display the legend as desired | |
* | |
* <CustomLegend> | |
* @param {object} payload - the recharts standard payload object | |
* @param {string} direction - row/column for direction of display |