Skip to content

Instantly share code, notes, and snippets.

View msurovcak's full-sized avatar
:shipit:
Howdy!

Martin Surovcak msurovcak

:shipit:
Howdy!
View GitHub Profile
@msurovcak
msurovcak / keybase.md
Created January 3, 2018 16:32
keybase.md

Keybase proof

I hereby claim:

  • I am msurovcak on github.
  • I am msurovcak (https://keybase.io/msurovcak) on keybase.
  • I have a public key whose fingerprint is 10D1 2322 D611 B436 260E D424 CE4F 6C3D 1DF1 2C2C

To claim this, I am signing this object:

@msurovcak
msurovcak / atlassian-markup.sublime-syntax
Created January 2, 2017 18:36
Simple Sublime Text 3 Syntax File for JIRA and Confluence markup language
%YAML 1.2
---
name: JIRA and Confluence markup syntax
scope: source.atlassian-markup
license: MIT
variables:
other_text_mods: '\^|\~|\?\?'
projects: '(GD|PAAS)'
icons: '\((!|\?|/)\)'
contexts:
@msurovcak
msurovcak / be_in.rb
Created November 11, 2015 01:53
be_in matcher
require 'rspec/expectations'
require 'rspec'
RSpec::Matchers.define :be_in do |expected|
match do
expected.include?(actual)
end
end
describe 'passing examples' do