Skip to content

Instantly share code, notes, and snippets.

# frozen_string_literal: true
begin
require "bundler/inline"
rescue LoadError => e
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler"
raise e
end
gemfile(true) do
@XrXr
XrXr / keyrepeatconfig.sh
Created September 5, 2018 02:09
Mac keyrepeat config
defaults write -g InitialKeyRepeat -int 250 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 2 # normal minimum is 2 (30 ms)
# credit to https://apple.stackexchange.com/a/83923 for the config names and info
@XrXr
XrXr / .vimrc
Last active September 30, 2020 21:28
vimrc
set nomodeline
set expandtab
set tabstop=8
set softtabstop=4
set shiftwidth=4
set autoindent
set smartindent
set ignorecase
set smartcase
set ruler
var sel = FireGestures.getSelectedText();
if (sel) {
gBrowser.loadOneTab('http://www.thefreedictionary.com/'+sel, null, null, null, false, false);
return;
}
@XrXr
XrXr / openWithSublimeText3.bat
Last active August 29, 2015 14:03 — forked from mrchief/LICENSE.md
Add right click item to folders and files, also the right click menu of background area inside a folder
@echo off
SET st3Path=E:\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@XrXr
XrXr / test.md
Last active August 29, 2015 14:02
ngRepeat test

Test for ngRepeat to see if it recreate dom elements when the array is manipulated

JSFiddle