This file contains hidden or 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
# rest-client recognizes files in multipart/form-data by checking | |
# the object type passed as the field content. We need to craft | |
# our string to appear as a file IO. `#stringfile` does that. | |
# An alternative approach is to just write string to a file and | |
# pass file IO to rest-client but this would be suboptimal | |
# provided we already have the content as a String. | |
def stringfile(string, | |
filename="file_#{rand 100000}", | |
type=MIME::Types.type_for("xml").first.content_type) |
This file contains hidden or 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
pr = %q{puts %{pr = %q{#{pr}}}, pr} | |
puts %{pr = %q{#{pr}}}, pr |
This file contains hidden or 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
# run by `ruby rails_test.rb` | |
# credits to https://github.com/rails/rails/issues/13744#issuecomment-32670636 | |
gem 'activerecord', '5.0.0.1' | |
require 'active_record' | |
require 'minitest/autorun' | |
require 'logger' | |
# Ensure backward compatibility with Minitest 4 | |
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test) |
This file contains hidden or 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
# LICENSE: MIT, wtfpl or whatever OSS license you like | |
function get_stack () { | |
STACK="" | |
local i message="${1:-""}" | |
local stack_size=${#FUNCNAME[@]} | |
# to avoid noise we start with 1 to skip the get_stack function | |
for (( i=1; i<$stack_size; i++ )); do | |
local func="${FUNCNAME[$i]}" | |
[ x$func = x ] && func=MAIN | |
local linen="${BASH_LINENO[$(( i - 1 ))]}" |
This file contains hidden or 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 'io/console' | |
require 'wsse' | |
header = WSSE::header('username', STDIN.noecho(&:gets).chomp) | |
def wsse_xml(user, password) | |
raw = WSSE::header(user, password) | |
# username = raw.gsub(/^.* Username="(.*)", PasswordDigest=".*(?!PasswordDigest)$/, '\\1') | |
digest = raw.gsub(/^.*, PasswordDigest="(.*)", Nonce=".*$/, '\\1') | |
nonce = raw.gsub(/^.*, Nonce="(.*)", Created=".*$/, '\\1') |
This file contains hidden or 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 | |
# see https://github.com/sparklemotion/nokogiri/issues/1200 | |
require 'nokogiri' | |
src =<<EOD | |
<wrapper xmlns="ns"> | |
<record xml:id="r1" xmlns:extra="extra"> | |
<field>aaa</field> |
This file contains hidden or 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 | |
# see https://github.com/sparklemotion/nokogiri/issues/1200 | |
require 'nokogiri' | |
src =<<EOD | |
<wrapper xmlns="ns"> | |
<record xml:id="r1" xmlns:extra="extra"> | |
<field>aaa</field> |
This file contains hidden or 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
=begin | |
Copyright (c) 2015 Red Hat inc | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in | |
all copies or substantial portions of the Software. |
This file contains hidden or 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 'fileutils' | |
# this is ugly quickly hacked script, not very nice and reliable at the moment | |
# it finds what files from one archive need to be backed-up (i.e. are not present in some other archive dir) | |
# $ find new_dir -type f > arch.txt | |
# $ find old_dir -type f > arch_old.txt | |
# `find -name ".?*" -prune -o -type f` to avoid hidden files | |
# cat to_arch.txt | xargs -d "\n" stat -c "%s" | awk '{size+=$1} END {print size}' # to see size of files to copy | |
# sudo rsync -avx --files-from=to_arch.txt ./ /path/to/store/backup | |
# TODO: get files fast hash (md5?) and compare based on it; avoid external tools like find |
This file contains hidden or 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
<?php | |
/* | |
original code by cogitom: https://gist.github.com/997980/ | |
phibo23: https://gist.github.com/2808256/ | |
This script reads future events (plus several days into the past) from Facebook pages | |
and creates a subscribable iCalendar | |
Improvements upon the original version: | |
- avoid setting DTEND field if facebook event lacks an end time |