Skip to content

Instantly share code, notes, and snippets.

View JulienMelissas's full-sized avatar
🎯

Julien Melissas JulienMelissas

🎯
View GitHub Profile
@JulienMelissas
JulienMelissas / Select.js
Last active September 12, 2017 22:44 — forked from keeth/Select.js
A formsy-react wrapper around React Select (ES6)
import React from 'react';
import Formsy from 'formsy-react';
import ReactSelect from 'react-select';
// Dont forget to import your styles somewhere
const Select = React.createClass({
mixins: [Formsy.Mixin],

Development Software

  • VirtualBox - Virtualization software for running local operating systems within your computer. This let's us have a full version of linux within our computers that better matches how a live webserver works.
  • Vagrant - A tool for provisioning virtual machines.
  • VVV - A pre-built, community supported Vagrant configuration for WordPress development.
  • Git - Version control system for managing code during development. Easily allows for tracking changes, and merging new code into an existing project.
  • SourceTree - A GUI available on Windows and Mac for managing Git projects. This makes Git much easier to use, as we won't have to learn the command line interface.
  • GitHub.com - A website that provides free Git repos for both open source and private projects.
  • SASS - (we'll use the SCSS flavor) A CSS preprocessor that allows us to write much less CSS for a project. This basically makes CSS into a simple programming language.