Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am maximromanyuk on github.
  • I am maxim_romanyuk (https://keybase.io/maxim_romanyuk) on keybase.
  • I have a public key ASAcgizQ_4S4yzHt4kdSyBb6SqBYOAp7xk-KqQ13lHzoAAo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am maximromanyuk on github.
  • I am maximromanyuk (https://keybase.io/maximromanyuk) on keybase.
  • I have a public key ASBIBuOcpxMvyWLpnt7TV-k4PM57gSsViANLBzEwROIA9go

To claim this, I am signing this object:

@maximromanyuk
maximromanyuk / build.gradle
Created December 14, 2017 15:30
build.gradle
apply plugin: "com.android.application"
import com.android.build.OutputFile
/**
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
* and bundleReleaseJsAndAssets).
* These basically call `react-native bundle` with the correct arguments during the Android build
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
import Promise from 'bluebird';
import HttpError from 'standard-http-error';
import { getConfiguration } from '../utils/configuration';
import { getAuthenticationToken } from '../utils/authentication';
const TIMEOUT = 6000;
/**
* GET a path relative to API root url.
@maximromanyuk
maximromanyuk / wallaby.js
Created April 7, 2017 10:14
Wallaby config for React Native
/*
WallabyJS React Native Config
Works well with Jest + Enzyme
*/
/* eslint-disable */
module.exports = function (wallaby) {
return {
files: [
@maximromanyuk
maximromanyuk / .gitconfig
Created April 7, 2017 07:32
My .gitconfig
[user]
email = no.one.coin@gmail.com
name = CandyOgre
[push]
default = current
[alias]
st = status
co = checkout
up = !git pull --rebase --prune $@ && git submodule update --init --recursive
cob = checkout -b
@maximromanyuk
maximromanyuk / .editorconfig
Created April 6, 2017 14:36
My .editorconfig file
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true