I hereby claim:
- I am shime on github.
- I am shime (https://keybase.io/shime) on keybase.
- I have a public key whose fingerprint is 3436 35B8 B1DE 69EC DB61 97F5 936B 516B 5B9C 52BB
To claim this, I am signing this object:
# Tokyo Night Storm theme | |
set -g status-style 'bg=#24283b fg=white' | |
# Print full session name in the status bar | |
set -g status-left-length 100 | |
set -g status-left "#[fg=#73daca]#S #[default]" | |
# Set the current window to display in a different color | |
set-option -g window-status-current-style "fg=#bb9af7,bold" |
namespace :db do | |
desc 'Clears the database and then seeds it' | |
task reseed: :environment do | |
Rake::Task["db:truncate"].invoke | |
Rake::Task["db:seed"].invoke | |
end | |
desc 'Clears the database' | |
task truncate: :environment do | |
puts "Truncating database" |
source 'https://rubygems.org' | |
gem "minitest" |
def solution(a) | |
counter = [0] * a.length | |
a.each do |element| | |
if ! (1 <= element && element <= a.length) | |
return 0 | |
else | |
if counter[element-1] != 0 | |
return 0 | |
else | |
counter[element-1] = 1 |
node_modules | |
*.log |
I hereby claim:
To claim this, I am signing this object:
// Paste this into your browser console to pick a random attendee | |
// from the list of users in the "Going" section of your | |
// event at meetup.com | |
// | |
// Skips the organizer (first in the list). | |
$('#rsvp-list li').eq(Math.floor(Math.random()*($('#rsvp-list li').length - 1)) + 1).find('a').text() |
Debugging Ember apps used to be easy with
Ember.View.views['ember605']
as mentioned in official debugging guide in Ember documentation.
This, however, doesn't work with newer Ember versions and you should use this one instead
FROM base/archlinux:latest | |
# install dependencies | |
RUN pacman -Syu --noconfirm | |
RUN pacman --noconfirm -S base-devel yajl nodejs git openssh imagemagick python2 | |
RUN ln -s /usr/bin/python2 /usr/bin/python | |
# install yaourt | |
WORKDIR /tmp/scratch | |
RUN curl https://aur.archlinux.org/packages/pa/package-query/package-query.tar.gz | tar zx |
I hereby claim:
To claim this, I am signing this object: