This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import { connect } from 'react-redux' | |
import { emailChanged, passwordChanged } from '../actions' | |
import { Card, CardSection, Input, Button } from './common' | |
class LoginForm extends Component { | |
onEmailChange(text) { | |
this.props.emailChanged(text) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://widgets.healcode.com/javascripts/healcode.js" type="text/javascript"></script> | |
<style type="text/css"> | |
/* Главный заголовок */ | |
div.healcode .healcode-title-text { | |
color: #4BD1A0 !important; | |
font-size: 25px; | |
font-family: 'Trebuchet MS'; | |
text-transform: uppercase; | |
text-decoration: none; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import { Provider } from 'react-redux' | |
import { createStore, applyMiddleware, combineReduxers, compose } from 'redux' | |
import thunkMiddleware from 'redux-thunk' | |
import createLogger from 'redux-logger' | |
import reducer from './app/reducers' | |
// middleware that logs actions | |
const loggerMiddleware = createLogger({ predicate: (getState, action) => __DEV__ }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// Raketa-iOS | |
// | |
// Created by Dmitriy Vasilev on 04.04.17. | |
// Copyright © 2017 gHashTag. All rights reserved. | |
// | |
import UIKit | |
import AVFoundation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import { | |
Text, | |
Button, | |
StyleSheet, | |
View | |
} from 'react-native' | |
class TimerThing extends Component { | |
constructor(props) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import { | |
StyleSheet, | |
Text, | |
View | |
} from 'react-native' | |
module.exports = React.createClass({ | |
getInitialState() { | |
return ({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function($) { | |
$.fn.findReplace = function(options) { | |
var settings = $.extend({ | |
findText: null, | |
replaceText: "", | |
customClass: "", | |
completeCallback: null | |
}, options); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.vim/plugged') | |
" On-demand loading | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'Valloric/YouCompleteMe' | |
Plug 'jiangmiao/auto-pairs' | |
Plug 'easymotion/vim-easymotion' | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'mxw/vim-jsx' | |
Plug 'pangloss/vim-javascript' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends" : "airbnb", | |
"parser" : "babel-eslint", | |
"parserOptions" : { | |
"ecmaVersion" : 6, | |
"sourceType" : "module", | |
"ecmaFeatures" : { | |
"jsx": true, | |
"modules": true, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.vim/plugged') | |
" On-demand loading | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'Valloric/YouCompleteMe' | |
Plug 'jiangmiao/auto-pairs' | |
Plug 'easymotion/vim-easymotion' | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'mxw/vim-jsx' | |
Plug 'pangloss/vim-javascript' |