Skip to content

Instantly share code, notes, and snippets.

@marduke182
marduke182 / iterm2-solarized.md
Created September 21, 2018 04:59 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font + [Powerlevel9k] - (macOS)

Default

Default

Powerlevel9k

Powerlevel9k

const requestWithCardAndNewCustomer = flexRequestBuilder.build(
flexRequestBuilder.withNewCustomer,
flexRequestBuilder.withCard,
);
const paymentMethodApplication = loanApplicatioBuilder.build(
loanApplicatioBuilder.withMoreInfo,
loanApplicatioBuilder.withComponent('payment-method'),
);
test('should show only card', () => {
@marduke182
marduke182 / git-rebase.markdown
Created June 29, 2016 11:22 — forked from tmcgilchrist/git-rebase.markdown
Git rebase workflow

Checkout a new working branch

 git checkout -b <branchname>

Make Changes

 git add
 git commit -m "description of changes"

Sync with remote

import react, { Component } from 'React';
import _ from 'lodash';
import row from './row';
/** Styles to buttons **/
const styleToAddButton = {
backgroundColor: 'green',
color: 'white'
}