In PostgreSQL 12 they disallowed the PANIC
value for client_min_messages
, that Rails was setting since 2.3.14. That was fixed in Rails 4.2.5.
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
# From http://www.reddit.com/r/linux/comments/akt3j/a_functional_programming_style_map_function_for/ | |
# Modified to work in zsh. | |
function map() { | |
local command i rep | |
if [ $# -lt 2 ] || [[ ! "$@" =~ :[[:space:]] ]];then | |
echo "Invalid syntax." >&2; return 1 | |
fi | |
until [[ $1 =~ : ]]; do | |
command="$command $1"; shift | |
done |
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
require 'rubygems' | |
require 'activesupport' | |
require 'bad_ass_extensions' | |
require 'nokogiri' | |
require 'open-uri' | |
require 'date' | |
class GitHubber | |
attr_accessor :header, :name, :date, :date_string, :links, :post |
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
require 'mechanize' | |
require 'yaml' | |
$results = [] | |
def find(a, link) | |
puts "find started on #{link}" | |
a.get link do |page| | |
page.search(:css, ".blog-post").each do |post| | |
h2 = post.search(:css, "h2").first |
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 zsh | |
# I only use host for checking records, and 9 times out of 10 | |
# I copy paste the url from my browser. Chrome adds http[s]://.../ | |
if [ -n "$1" ] | |
then | |
# 1 parameter, let's do this thing | |
/usr/bin/host ${${1#*//}%/*} | |
else |
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
If you want, I can try and help with pointers as to how to improve the indexing speed you get. Its quite easy to really increase it by using some simple guidelines, for example: | |
- Use create in the index API (assuming you can). | |
- Relax the real time aspect from 1 second to something a bit higher (index.engine.robin.refresh_interval). | |
- Increase the indexing buffer size (indices.memory.index_buffer_size), it defaults to the value 10% which is 10% of the heap. | |
- Increase the number of dirty operations that trigger automatic flush (so the translog won't get really big, even though its FS based) by setting index.translog.flush_threshold (defaults to 5000). | |
- Increase the memory allocated to elasticsearch node. By default its 1g. | |
- Start with a lower replica count (even 0), and then once the bulk loading is done, increate it to the value you want it to be using the update_settings API. This will improve things as possibly less shards will be allocated to each machine. | |
- Increase the number of machines you have so |
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 bash | |
# This is based on this excellent gist https://gist.github.com/jvenator/9672772a631c117da151 | |
# Nothing of this is my original work, except that I made the download link an argument | |
# to this script, so it installs on OSX 10.11 | |
# | |
# Thank you jvenator & sethetter | |
set -e | |
error() { info "$1"; exit 1; } |
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
(ns clojure-twingly-search-api.core | |
(:gen-class)) | |
(defn get-posts [keyword] | |
(-> | |
(new com.twingly.search.client.UrlConnectionClient(System/getenv "TWINGLY_SEARCH_KEY")) | |
(.makeRequest (.build (com.twingly.search.QueryBuilder/create keyword))) | |
(.getPosts))) | |
; Lie, limited to 1000 |
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
// | |
// Regular Expression for URL validation | |
// | |
// Author: Diego Perini | |
// Updated: 2010/12/05 | |
// License: MIT | |
// | |
// Copyright (c) 2010-2013 Diego Perini (http://www.iport.it) | |
// | |
// Permission is hereby granted, free of charge, to any person |
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
name: Update Gems After Dependabot | |
on: | |
push: | |
branches: | |
- 'dependabot/bundler/**' | |
paths: | |
- 'Gemfile.lock' | |
jobs: |
OlderNewer