-
Connect to the Etherpad database, the credentials are in a file like
src/etherpad/trunk/etherpad/etc/etherpad.localdev-default.properties
-
Execute SQL similar to that below, replacing
Phantom Chicken
with your search term:SELECT DISTINCT(m.ID) FROM `PAD_REVMETA_META` AS m LEFT JOIN (`PAD_REVMETA_TEXT` AS t) ON (m.NUMID = t.NUMID) WHERE t.DATA LIKE '%Phantom Chicken%';
-
Use the
ID
s shown to compose a URL, e.g. ifID
isomgkittens
and your Etherpad server is atetherpad.mysite.com
, then your URL ishttp://etherpad.mysite.com/omgkittens
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# FIXME provide flexible way of choosing tool | |
DIFF = ENV['DIFF'] || 'meld' | |
######################################################################################################## | |
# Usage: # | |
# gitopendiff [-r<left rev>:<right-rev>] [repository] # | |
# # | |
# Example: # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Post < ActiveRecord::Base | |
# Define index | |
searchable do | |
text :title, :body | |
string :author_name | |
integer :blog_id | |
integer :category_ids | |
float :average_rating, :using => :ratings_average | |
time :published_at | |
string :sort_title do |
Resque (https://github.com/defunkt/resque) is nice, but doesn't provide durability. When a worker "reserves" a job, it actually just pops it from the data store, which deletes the job. If anything happens to the worker after it pops the job, the job is lost forever. However, the author of Resque, defunkt, doesn't want reservation or retries added, and has rejected such patches in the past. Therefore, this may not be worth doing with Resque unless someone wants to maintain a fork of it forever.
- https://github.com/defunkt/resque/issues/16 -- where defunkt writes "Resque is explicitly designed to never re-try jobs. Ever, under any circumstance." and "If you need jobs to never fail and never slip through the cracks due to failure you may want [something else]".
- https://github.com/defunkt/resque/issues/93 -- where defunkt write "Resque
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use feature qw{say}; | |
sub bottles() { sprintf qq{%s bottle%s of beer} | |
, $_ || 'No' | |
, $_==1 ? '' : 's'; | |
} | |
sub store() { $_=99; qq{Go to the store, buy some more...\n}; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---[ Includes ]-------------------------------------------------------- | |
[include] | |
# Load private information from a separate file, e.g. name, email, global | |
# ignores, tokens, etc. | |
path = ~/.gitconfig.local | |
#---[ Settings ]-------------------------------------------------------- | |
[core] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The code below provides an elaborate system for composing custom prompts. | |
# Of these the `myprompt`, `devprompt` and `longprompt` are the most useful. | |
# Fancy, reconfigurable prompt. | |
multiprompt () { | |
parse_git_branch () { | |
if [[ -n $promptgit ]] && which git 2>&1 > /dev/null; then | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return 0 | |
ref="${ref#refs/heads/}" | |
if [[ $ref != 'master' ]]; then |
OlderNewer