Skip to content

Instantly share code, notes, and snippets.

View billie66's full-sized avatar
🏠
Working from home

Billie Zhang billie66

🏠
Working from home
View GitHub Profile
@billie66
billie66 / redis.rb
Last active August 29, 2015 14:02
store data with redis
require 'redis'
redis = Redis.new
names = []
keys = redis.keys("connect*:*")
if !keys.empty?
redis.del(*keys)
end
@billie66
billie66 / getnote.rake
Last active August 29, 2015 14:08
get the notes of every episode from the episodes table
# encoding: UTF-8
namespace :db do
desc "get all of the notes from episodes table"
task :episodes => :environment do
def header(name)
str = <<-EOF.gsub(/^\s{6}/, '')
---
layout: post
title: #{name}
---
@billie66
billie66 / index.rb
Last active August 29, 2015 14:08
deal with file names, like 001-git-revert.md, to make a content for all of files
# encoding: utf-8
def html(num, sname, fname, token)
str = <<-EOF
<tr class="episode-wrap#{token}">
<td class="episode-index">#{num}</td>
<td class="episode-title">
<a href="#{fname}">#{sname}</a>
</td>
</tr>
#!/usr/bin/env bash
on_die() {
echo+
echo byebye proxy
echo+
networksetup -setsocksfirewallproxystate "Ethernet 2" off #close the proxy+
}
# encoding: utf-8
str = ''
File.open("tasks.md", 'r') do |f|
str = f.read
end
str = str.gsub(/^###\s?(.*?)\s?$/, "<h3>\\1</h3>\n").
gsub(/^任务:\s?(.*?)\n$/, "<div>\n<h3>\\1</h3>\n<ul>").
gsub(/^\-\s+视频:\s?(.*?)$/, "</ul>\n<a href='\\1'>视频</a>\n</div>\n").
// 1. How to check if one array has all elements of another?
var importedEmails = ['john@doe.com', 'janet@doe.com'],
existingEmails = ['john@doe.com', 'janet@doe.com', 'fred@mercury.com'];
if(!_.difference(importedEmails, existingEmails).length) console.log('already imported')
// > already imported
// **********************************************************
// 2. How to find what elements are common to two arrays?
# encoding: UTF-8
namespace :db do
desc "import some data to the users table"
task :users => :environment do
a = []
File.open("lib/tasks/talk_production.sql", 'r') do |f|
a = f.read.strip.split(/\n/)
end
a.delete_at(0)
a.each do |e|
@billie66
billie66 / etc_init.d_unicorn_example.co.uk
Created September 2, 2012 15:08 — forked from rubysolo/etc_init.d_unicorn_example.co.uk
Ruby on Rails server setup on Ubuntu 11.04 with Nginx, Unicorn, Rbenv
#! /bin/bash
### BEGIN INIT INFO
# Provides: unicorn
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the unicorn web server
# Description: starts unicorn
#No such file to load -- devise/confirmations_controller
#resque worker devise not eager loading
require File.expand_path('../config/application', __FILE__)
require 'rake/dsl_definition'
require 'resque/tasks'
Askjane::Application.load_tasks
task "resque:setup" => :environment do
# encoding: UTF-8
# happycasts database
namespace :db do
desc "get episods' info from the table episods"
task :episodes => :environment do
posts = []
Episode.all.each do |e|
post = {}
post['id'] = e.id