I hereby claim:
- I am edvinasbartkus on github.
- I am edvinasbartkus (https://keybase.io/edvinasbartkus) on keybase.
- I have a public key ASA2eUHLszc1zENKm7dIHQFQxfiYNOwTSyfw9RClUyBg7go
To claim this, I am signing this object:
export default { | |
getCurrentConnectivity: jest.fn(), | |
isConnectionMetered: jest.fn(), | |
addListener: jest.fn(), | |
removeListeners: jest.fn(), | |
isConnected: { | |
fetch: () => { | |
return Promise.resolve(true) | |
}, | |
addEventListener: jest.fn(), |
javascript:localStorage.clear();sessionStorage.clear();(function(){var cookies=document.cookie.split("; ");for(var c=0;c<cookies.length;c+=1){var d=window.location.hostname.split(".");while(d.length>0){var cookieBase=encodeURIComponent(cookies[c].split(";")[0].split("=")[0])+'=; expires=Thu, 01-Jan-1970 00:00:01 GMT; domain='+d.join('.')+' ;path=';var p=location.pathname.split('/');document.cookie=cookieBase+'/';while(p.length>0){document.cookie=cookieBase+p.join('/');p.pop()};d.shift()}}})();window.location="https://facebook.com/l.php?u="+encodeURIComponent(window.location.href) |
name: Android | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout |
name: Detox | |
on: [push] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
env: |
I hereby claim:
To claim this, I am signing this object:
#cloud-config | |
snappy: | |
ssh_enabled: True | |
packages: | |
- docker | |
write_files: | |
- path: /var/lib/apps/docker/1.6.2.003/etc/docker.conf | |
content: | | |
DOCKER_OPTIONS='-H unix:///var/run/docker.sock -H tcp://0.0.0.0:2375' |
#cloud-config | |
coreos: | |
etcd: | |
... | |
units: | |
- name: docker-tcp.socket | |
command: start | |
enable: true | |
content: | |
gem install puma -- --with-cppflags=-I/usr/local/opt/openssl/include --with-ldflags=-L/usr/local/opt/openssl/lib |
new Parse('https://news.ycombinator.com/item?id=7216471', function () { | |
var comments = []; | |
when('class', 'comment', function () { | |
var comment = {}; | |
comments.push(comment); | |
whenText(function (text) { | |
if (text != 'reply') { | |
comment.text = (comment.text || '') + text; | |
} |
var request = require('minreq') || require('request'), | |
WritableStream = require('htmlparser2').WritableStream; | |
var count = 0; | |
var done = function () { | |
console.log('There are ' + count + ' script tags.'); | |
process.exit(1); | |
}; | |
var handlers = { |