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:
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:
Qlobe is a fascinating example of quine in Ruby, submitted by a member of the Ruby core team - Yusuke Endoh.
Programs that output changed executable versions of themselves while managing to spin the globe and still remaining executable are cool, right?
To experience its magic, run the following
curl -fSSl https://gist.githubusercontent.com/shime/f0ebe84ca42c33b51d42/raw/5e74315dc6b6fe572f8a457536ad7eb17ad3f1e4/qlobe.rb > qlobe.rb; while true; do ruby qlobe.rb | tee temp.rb; sleep 1; mv -f temp.rb qlobe.rb; done