Skip to content

Instantly share code, notes, and snippets.

View SilencerWeb's full-sized avatar

Max Gorodov SilencerWeb

View GitHub Profile
@SilencerWeb
SilencerWeb / gulpfile.js
Last active December 22, 2018 15:49 — forked from nikita007899/gulpfile.js
gulp trouble
var gulp = require('gulp'),
sass = require('gulp-sass'),
browserSync = require('browser-sync'); /* подключение модуля, который устанавливается через npm install*/
gulp.task('sass', function() {
return gulp.src('app/sass/**/*.sass')
.pipe(sass())
.pipe(gulp.dest('app/css')) /* только папки, не указывать отдельные файлы*/
});
@SilencerWeb
SilencerWeb / filterFaltList.jsx
Last active April 5, 2018 11:54 — forked from Ayyagaries/Filter Flat List
filterFaltList.jsx
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { StyleSheet, View, FlatList } from 'react-native';
import Icon from 'react-native-vector-icons/FontAwesome';
import { List, ListItem, SearchBar } from 'react-native-elements';
import { Container, Content, Text, Button, Label } from 'native-base';
import Spinner from 'react-native-loading-spinner-overlay';
import { requestAttachedFacilities } from '../actions/pickFacility';
state = {
glossary: [
{
name: 'Altcoins',
description: 'The “alt” means “alternative” and “coins” mean other cryptocurrencies. These are, in essence, alternative to the Bitcoin, and have a lower value on the market. E.g: Ethereum, Litecoin, Dogecoin.',
isOpened: false
},
{
name: 'Altcoins',
description: 'The “alt” means “alternative” and “coins” mean other cryptocurrencies. These are, in essence, alternative to the Bitcoin, and have a lower value on the market. E.g: Ethereum, Litecoin, Dogecoin.',