I hereby claim:
- I am bartuz on github.
- I am fbartuzi (https://keybase.io/fbartuzi) on keybase.
- I have a public key whose fingerprint is 3434 16BB 7526 A36F 7B75 0DF1 22A4 EBE5 92DE FB89
To claim this, I am signing this object:
# RSpec matcher for validates_with. | |
# https://gist.github.com/2032846 | |
# Usage: | |
# | |
# describe User do | |
# it { should validate_with CustomValidator } | |
# end | |
RSpec::Matchers.define :validate_with do |expected_validator, options| | |
match do |subject| | |
@validator = subject.class.validators.find do |validator| |
{ | |
"$schema": "https://json.schemastore.org/resume", | |
"meta": { "theme": "flat" }, | |
"basics": { | |
"name": "Filip Bartuzi", | |
"label": "Senior Software Engineer", | |
"image": "", | |
"email": "filip.bartuzi@gmail.com", | |
"phone": "+48664446594", | |
"url": "", |
const Component = ({ onSuccess, onError, onExpire }) => { | |
const recapchaRef = useRef(null); | |
return ( | |
<Reaptcha | |
ref={recapchaRef} | |
sitekey={RECAPTCHA_SITEKEY} | |
size="invisible" | |
badge="inline" | |
onRender={() => recapchaRef.current.execute()} |
class NestedAttributesForStrategy | |
def association(runner) | |
runner.run | |
end | |
def result(evaluation) | |
evaluation.object.tap do |instance| | |
evaluation.notify(:after_build, instance) | |
return attributes(instance) | |
end |
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do | |
source "https://rubygems.org" | |
# Activate the gem you are reporting the issue against. |
Using MongoDB in golang with mgo |
Jeśli: | |
1. Usuniesz klucz z web appki phraseappa | |
2. $ yarn phraseapp:push | |
3. Klucz pojawia sie ponownie we phareappie | |
Jeśli <— Prawdiłowe flow | |
1. Usuniesz klucz z phraseappa | |
2. $ yarn phraseapp:pull | |
3. $ yarn phraseapp:push | |
4. klucz znika z plików .json i z web appki phraseappa |
#before | |
def initialize(options = {}) | |
@type = options.fetch(:destination_type) { CARD_TO_CARD } | |
@options = options | |
end | |
#after | |
def initialize(destination_type: CARD_TO_CARD, **options) | |
@type = destination_type | |
@options = options |
I hereby claim:
To claim this, I am signing this object:
# This is a skeleton for testing models including examples of validations, callbacks, | |
# scopes, instance & class methods, associations, and more. | |
# Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
# | |
# I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
# so if you have any, please share! | |
# | |
# @kyletcarlson | |
# | |
# This skeleton also assumes you're using the following gems: |