Skip to content

Instantly share code, notes, and snippets.

View yordanzhelevdev's full-sized avatar
🤚
Hi

Yordan Zhelev yordanzhelevdev

🤚
Hi
  • Bulgaria
View GitHub Profile
@yordanzhelevdev
yordanzhelevdev / gist:72c3825a6474cb482ce1d78f95ae0287
Created March 15, 2018 18:21 — forked from feliperoberto/gist:9793674
GulpJS + SASS + BrowserSync ftw

#GulpJS + SASS + BrowserSync ftw Being the new-kid-on-the-block, GulpJS is getting plently of attention lately. Instead of contributing to the pool of opinion-pieces out there though, I thought I'd walk you through setting it up with a really nice little workflow including SASS for CSS along with my open-source project, BrowserSync.io.

The end result will be a pretty sweet front-end development setup including:

  • SCSS File watching/compilation.
  • Live CSS injecting into multiple devices.
  • A Server running on an IP address that can be accessed on multiple devices/screens.
  • Syncronized scroll, clicks, links & form fields across all devices.
@yordanzhelevdev
yordanzhelevdev / SlideHeader.js
Created March 6, 2018 22:53
Carousel Backup
import React, { Component } from "react";
import { CSSTransitionGroup } from 'react-transition-group';
import './carousel.css';
export const images = [
'images/grill.jpg',
'images/grill2.jpg',
'images/grill3.jpg'
];