I hereby claim:
- I am vlymar on github.
- I am vlymar (https://keybase.io/vlymar) on keybase.
- I have a public key ASAEAYJW6VbEXHpd0Lwd7165_7BwIodGPhXctIAW5Vkf_wo
To claim this, I am signing this object:
| defmodule Postline.IntegrationCase do | |
| @moduledoc """ | |
| This module defines the setup for tests requiring | |
| access to real external services like OpenAI. | |
| Integration tests are meant to test actual integration with | |
| third-party services and are not run by default with `mix test`. | |
| Use `mix test.integration` to run integration tests. |
| package main | |
| type doer interface { | |
| do() // try "Rename Symbol" on me | |
| } | |
| type coolDoer struct{} | |
| func (d coolDoer) do() {} |
I hereby claim:
To claim this, I am signing this object:
$ wc -l access.log 376359 access.log
$ head -n1 access.log 172.31.16.226 - - [07/Nov/2016:00:00:02 +0000] "GET /d3bt6306j428ad.cloudfront.net/assets/embedded-ac9659c5db13c873c87adade48e8ce4ef71dd7532f860dec198757b3f8622d7e.css HTTP/1.1" 301 0 "https://screendoor.dobt.co/d3bt6306j428ad.cloudfront.net/assets" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
$ tail -n1 access.log
| #!/bin/bash | |
| # Stolen from the awesome GRB | |
| # https://github.com/garybernhardt/dotfiles/blob/master/.githelpers | |
| # Log output: | |
| # | |
| # * 51c333e (12 days) <Gary Bernhardt> add vim-eunuch | |
| # | |
| # The time massaging regexes start with ^[^<]* because that ensures that they | |
| # only operate before the first "<". That "<" will be the beginning of the |
| begin | |
| require "pry" | |
| Pry.start | |
| exit | |
| rescue LoadError => e | |
| warn "=> Unable to load pry" | |
| end |
| # fuzzy multi-select modified file | |
| gfmod() { | |
| git ls-files -m | fzf -m | |
| } | |
| # stage files multi-selected modified files | |
| gfadd() { | |
| git add $(gfmod) | |
| } |
| def outer | |
| y = "penguins" | |
| inner = lambda do | |
| print x | |
| end | |
| x = "dogs" | |
| inner.call |
| { | |
| "response": { | |
| "version": "0.1", | |
| "termsofService": "http://www.wunderground.com/weather/api/d/terms.html", | |
| "features": { | |
| "geolookup": 1 | |
| } | |
| }, | |
| "location": { | |
| "type": "CITY", |
| # enumerate at most 20 objects with the given prefix | |
| bucket.objects.with_prefix('photos/').each(:limit => 20).each do |photo| | |
| puts photo.key | |
| end |