Skip to content

Instantly share code, notes, and snippets.

@ralphie02
Last active November 19, 2024 01:05
Show Gist options
  • Save ralphie02/626b6d937aee4e7153ac0491c3f3781a to your computer and use it in GitHub Desktop.
Save ralphie02/626b6d937aee4e7153ac0491c3f3781a to your computer and use it in GitHub Desktop.
windows-stuff

Remove Annoyingly persistend windows.old directory (ref):

RD /S /Q %SystemDrive%\windows.old

Windows:

  • admin cmd: reg add hkcu\Software\Policies\Microsoft\Windows\Explorer /v NoWindowMinimizingShortcuts /t REG_DWORD /d 0x1 ## http://www.techunboxed.com/2015/07/how-to-disable-aero-shake-in-windows-10.html

  • encryption: group policy > Computer Configuration\Administrative Templates\Windows Components\BitLocker Drive Encryption

  • install psql in windows then run in linux: psql -p 5432 -h localhost -U postgres

sudo usermod -aG docker $USER
mkdir /mnt/c/Users/<user>/Dev
sudo ln -s /mnt/c /
ln -s /mnt/c/Users/<user>/Dev/ ~/

Useful:

  • python-dev|python-pip|pip install sslyze|
  • change nested dir: https://stackoverflow.com/questions/4210042/how-to-exclude-a-directory-in-find-command
    • ie. find . -path "./.git*" -prune -o -print -type f -exec chmod 644 {} \;
  • find file with a given name: find <dir> -name <name>
  • Group Policy Editor: Computer Configuration -> Windows Settings -> Security Settings -> Local Policies -> Security Options
  • sudo mount -t drvfs '\server.name.ad\directory\dir' /mnt/dir/ -o metadata

s!ArAeSjDMUTzVsMsjdvGdjMX2GBRCMQ

s!ArAeSjDMUTzVsMZMYp_-jhCF3hEPzw

1DeO9f2hjQLEksHIN6SOI80nvu44KXHI7

1JzCM9VMhV1Y6wAr0wa671nFuA1nc0T-C

s!ArAeSjDMUTzVsLUCfAmcC95V5ztcRA

1osSi2PF4bpFpEDZWbgQhAtbq-1IfVD3p

/etc/systemd/system/k3s.service:

[Unit]
Description=Lightweight Kubernetes
Documentation=https://k3s.io
After=network-online.target

[Service]
Type=notify
EnvironmentFile=/etc/systemd/system/k3s.service.env
ExecStartPre=-/sbin/modprobe br_netfilter
ExecStartPre=-/sbin/modprobe overlay
ExecStart=/usr/local/bin/k3s \
    server \

KillMode=process
Delegate=yes
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity
TasksMax=infinity
TimeoutStartSec=0
Restart=always
RestartSec=5s

[Install]
WantedBy=multi-user.target

------------------------------------- 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 -------------------------------------

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment