Skip to content

Instantly share code, notes, and snippets.

View tommydunn's full-sized avatar
🖖

Tommy Dunn tommydunn

🖖
View GitHub Profile
ActivityFeedController line 11 says:
```@activities = @current_user.
feed_activities.
excluding(@current_user).
newest```
[9:43 AM] tim: change that to:
```@activities = @current_user.
feed_activities.
for_account(@current_user.account.id).
@tommydunn
tommydunn / git_commands
Created October 28, 2015 10:59
git commands
# initialize git depository in the current directory
git init .
# display the git remote/origin
cat .git/config
# display gitconfig
cat .gitconfig
# display where the HEAD is pointing
@tommydunn
tommydunn / wipe-it.md
Last active October 19, 2019 01:05
wipe (osx 10.11)

homebrew:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew doctor

brew cask

brew install caskroom/cask/brew-cask

brew install ack autojump automake colordiff curl git git-flow
hub icoutils imagemagick libmemcached memcached openssl ossp-uuid qt
readline redis tmux wget libxml2

@tommydunn
tommydunn / Visualizing Flexbox.markdown
Created February 19, 2016 14:00
Visualizing Flexbox
# Copy and paste this to the rails console to test your email settings
class MyMailer < ActionMailer::Base
def test_email
@recipients = "[email protected]"
@from = "[email protected]"
@subject = "test from the Rails Console"
@body = "This is a test email"
end
end
@tommydunn
tommydunn / gist:6f885cc3efbd505e327a
Last active May 5, 2020 22:01
Setting up Atom for Rails development
brew install caskroom/cask/brew-cask
brew cask install atom
apm install linter # Base linter
apm install linter-ruby
apm install linter-scss-lint
apm install linter-coffeelint
apm install linter-rubocop
apm install linter-haml
### Homebrew
### Uninstall
```
rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup
```
### Install cask
```
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
@tommydunn
tommydunn / Sublime Text 3 Build 3103 License Key - CRACK
Created April 7, 2016 14:31
Sublime Text 3 Build 3103 License Key - CRACK
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
<!DOCTYPE html>
<!-- Based on HTML5 Bones | http://html5bones.com -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
<meta name="description" content="">
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
* {
box-sizing: border-box;
}
html {