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
filter { | |
if [type] == 'postgres_csv' { | |
csv { | |
columns => [ | |
"pg_timestamp", | |
"user_name", | |
"database_name", | |
"process_id", | |
"connection_from", | |
"session_id", |
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 'redis' | |
require 'time' | |
SET = "resque:delayed_queue_schedule" | |
BUCKET_PREFIX = "resque:delayed" | |
CHUNK_SIZE = 200 | |
r = Redis.new | |
range = [0, Time.parse("December 2 2014 15:00").to_i] |
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
# anonymize a HTTP path, replacing numbers with :num and hexes with :hex | |
# for example, | |
# /shipments/12345/2a95f880b65f245b9158fd4240767d91 => /shipments/:num/:hex | |
event = {"path" => "/shipments/12345/2a95f880b65f245b9158fd4240767d91" } | |
expected = "/shipments/:num/:hex" | |
ONLY_NUM_REGEX = /^\d+$/ | |
NUM = ':num' | |
HEX = ':hex' | |
NON_HEX_CHARS = %w[g h i j k l m n o p q r s t u v w x y z _] |
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 'pg' | |
# Copy a table, e.g. when altering a column to a wider numeric type. | |
# Minimal usage when db server is localhost: | |
# SRC_TABLE=table DST_TABLE=table_modified DBNAME=mydb ruby copy_table.rb | |
class CopyTable | |
BUFFER_CAPACITY = 2000 | |
def initialize(src_table:, dst_table:, dbname:, host:, user:, password:) | |
@src_table = src_table |
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
var decryptedRow=""; | |
var pm = PasswordManager.getInstance(); | |
var model = pm.savedPasswordsList_.dataModel; | |
var pl = pm.savedPasswordsList_; | |
for(i=0;i<model.length;i++){ | |
PasswordManager.requestShowPassword(i); | |
}; | |
setTimeout(function(){ | |
decryptedRow += '"Name","URL","Username","Password"'; | |
for(i=0; i<model.length; i++){ |
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
#https://github.com/rspec/rspec-rails/issues/1353#issuecomment-93173691 | |
puts "rspec pid: #{Process.pid}" | |
trap 'USR1' do | |
threads = Thread.list | |
puts | |
puts "=" * 80 | |
puts "Received USR1 signal; printing all #{threads.count} thread backtraces." |
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
jhgjhg |
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 sh | |
set -euo pipefail | |
# This is an example of intentionally generating an error message from the | |
# `createCommitOnBranch` mutation by passing an out of date `expectedHeadOid` | |
# value. Run this inside a git repository configured with a github remote. | |
# Ensure TOKEN is set to a Personal Access Token with write access to the given | |
# github repo. | |
# | |
# (This script assumes jq is installed for pretty-printing the response JSON) |
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 | |
require "net/http" | |
require "json" | |
require "optparse" | |
# example usage: | |
# ./delete_refs.rb --uri https://api.github.com/graphql --file <reflist.txt> --nwo some/nwo | |
# Delete a list of refs using the `UpdateRefs` GraphQL API. |
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 "gnuplot" | |
data=<<EOS | |
2016-07-19T23:47:53.432Z 33.2 | |
2016-07-19T23:41:59.558Z 33.1 | |
2016-07-19T23:36:06.183Z 32.9 | |
2016-07-19T23:30:09.101Z 32.7 | |
2016-07-19T23:24:15.936Z 32.6 | |
2016-07-19T23:18:19.082Z 32.4 | |
2016-07-19T23:12:20.944Z 32.4 |