------------------------------------- GEMRC -------------------------------------
echo $'install: --no-rdoc --no-ri\nupdate: --no-rdoc --no-ri' > ~/.gemrc
install: --no-rdoc --no-ri
update: --no-rdoc --no-ri
------------------------------------- GEMRC -------------------------------------
------------------------------------- SUBLIME -------------------------------------
Ref: https://www.sublimetext.com/docs/3/linux_repositories.html
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo apt-get install apt-transport-https
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install sublime-text
NOTE: on debian, launching sublime fails because it's missing dependencies (which sublime fails to mention...)
sudo apt install libglib2.0-0 libx11-6 libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgtk2.0-0
install package control
install packages:
compare sibe-by-side
git
rubocop
sidebarenhancements
sublimelinter
sublimerepl
terminalview
theme-flatland
sublimerepl:
# for pry ruby error - https://github.com/smiler/SublimeREPL/commit/95ffe15382336ef6720502752e71c290055cf7f8
'' ---> require 'pry/input_completer' # line 4
def puts(data="") ---> def print(data="") # line 20
completer = Pry::InputCompleter.build_completion_proc(binding) ---> completer = Pry::InputCompleter.new(binding) # line 38
sublime user settings:
{
"ignored_packages":
[
],
"ensure_newline_at_eof_on_save": true,
"font_size": 12,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": false,
"color_scheme": "Monokai.sublime-color-scheme",
}
NOTE: edit the color scheme after
sublime key bindings
[
{ "keys": ["super+shift+r"], "command": "goto_definition" }
]
------------------------------------- SUBLIME -------------------------------------
------------------------------------- AUTOHOTKEY -------------------------------------
Part of .ahk file when created:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Added
CapsLock::Ctrl
!-::SendInput {PgUp}
!=::SendInput {PgDn}
!;::SendInput {Home}
!'::SendInput {End}
![::SendInput !{Left}
!]::SendInput !{Right}
!+;::SendInput +{Home}
!+'::SendInput +{End}
!+[::SendInput ^+{Tab}
!+]::SendInput ^{Tab}
~- Create shortcut in %appdata%\Microsoft\Windows\Start Menu\Programs\Startup
-> C:\Users\<user>\nav.ahk
C:\ProgramData\chocolatey\bin\AutoHotkey.exe C:\Users\<user>\nav.ahk
--> Properties > Shortcut > Advanced > Run as Administrator
~
- search
Task Scheduler
- create task
- General >
name:
NavKeys
(arbitrary)
[x] Run with highest privileges
- Triggers > new > {At log on}
- Actions > new >
{Start a program}
Program/script:
C:\ProgramData\chocolatey\bin\AutoHotkey.exe
Add arguments (optional): C:\Users\ralph\nav.ahk
Start in (optional): C:\Users\ralph
------------------------------------- AUTOHOTKEY -------------------------------------
------------------------------------- RAILS -------------------------------------
#delete accidentally added gem docs
rm -r "$(gem env gemdir)"/doc/*
#pry rails console
~/.irbrc
# ruby 1.8.7 compatible
require 'rubygems'
require 'irb/completion'
# awesome print
begin
require 'awesome_print'
AwesomePrint.irb!
rescue LoadError => err
warn "Couldn't load awesome_print: #{err}"
end
# irb history
IRB.conf[:EVAL_HISTORY] = 1000
IRB.conf[:SAVE_HISTORY] = 1000
IRB.conf[:HISTORY_FILE] = File::expand_path("~/.irbhistory")
# load .railsrc in rails environments
railsrc_path = File.expand_path('~/.irbrc_rails')
if ( ENV['RAILS_ENV'] || defined? Rails ) && File.exist?( railsrc_path )
begin
load railsrc_path
rescue Exception
warn "Could not load: #{ railsrc_path } because of #{$!.message}"
end
end
class Object
def interesting_methods
case self.class
when Class
self.public_methods.sort - Object.public_methods
when Module
self.public_methods.sort - Module.public_methods
else
self.public_methods.sort - Object.new.public_methods
end
end
end
module Kernel
def require_relative(file)
$:.unshift Dir.pwd
require file
end
def guid(s)
s.scan(/[a-f0-9-]{36}/).first
end
end
#I no longer use this....
~/.pryrc
begin
require 'hirb'
rescue LoadError
# Missing goodies, bummer
end
if defined? Hirb
# Slightly dirty hack to fully support in-session Hirb.disable/enable toggling
Hirb::View.instance_eval do
def enable_output_method
@output_method = true
@old_print = Pry.config.print
Pry.config.print = proc do |*args|
Hirb::View.view_or_page_output(args[1]) || @old_print.call(*args)
end
end
def disable_output_method
Pry.config.print = @old_print
@output_method = nil
end
end
Hirb.enable
end
gems:
'awesome_print', require: 'ap'
'bullet'
'rubocop'
'paper_trail'
'letter_opener'
'sidekiq'
'rspec_api_documentation'
'intercom'
'active_model_serializers', '~> 0.10.0.rc2'
'kaminari'
'elasticsearch-model', github: 'elastic/elasticsearch-rails'
'elasticsearch-rails', github: 'elastic/elasticsearch-rails'
'algoliasearch-rails'
'attr_encrypted', "~> 2.0.0"
------------------------------------- RAILS -------------------------------------