Skip to content

Instantly share code, notes, and snippets.

View DenisIzmaylov's full-sized avatar
🎯
Focusing

Denis Izmaylov DenisIzmaylov

🎯
Focusing
View GitHub Profile
@DenisIzmaylov
DenisIzmaylov / Git push deployment in 7 easy steps.md
Created June 5, 2016 00:50 — forked from thomasfr/Git push deployment in 7 easy steps.md
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook
@DenisIzmaylov
DenisIzmaylov / README.md
Created January 22, 2016 15:00 — forked from magnetikonline/README.md
IE 7/8/9/10/11 Virtual machines from Microsoft - Linux w/VirtualBox installation notes.
@DenisIzmaylov
DenisIzmaylov / gist:f9db2487277f55d8931ba7f5e068f923
Created May 7, 2016 18:20
Note on tools for building micro-services based architecture: CI, CD, Cluster Management, etc

Tools for buiding microservices architecture (May 7, 2016)

We are obviously in the age of Microservices, Mobile first, Polyglot, post-Java JVM languages, GitHub and Docker uprise. In this world, Open Source usage dominates, and the speed of change is intense. Knowing the direction of DevOps tools and picking the right one for the project is crucial.

Terms

Continuous Integration is the practice of running your tests on a non-developer machine automatically everytime someone pushes new code into the source repository.

This has the tremendous advantage of always knowing if all tests work and getting fast feedback. The fast feedback is important so you always know right after you broke the build (introduced changes that made either the compile/build cycle or the tests fail) what you did that failed and how to revert it.

@DenisIzmaylov
DenisIzmaylov / NOTICES.md
Last active March 17, 2016 09:31
IE8 Fallbacks
@DenisIzmaylov
DenisIzmaylov / index.js
Created June 14, 2015 14:28
My React routes implementation by Oct '14
var Router = require('director').Router;
var Dispatcher = require('flux2/dispatcher');
var React = require('react');
var Content = require('./components/content');
var routes = require('./routes');
React.render(
React.createElement(Content, null),
document.getElementById('content')
);