Here are some links that were helpful in me building my presentation.
The article that got me started on this topic.
module.exports = function() { | |
return [{ | |
name: 'states:register' | |
}, { | |
name: 'states:registration:engagement' | |
}]; | |
}; |
Here are some links that were helpful in me building my presentation.
The article that got me started on this topic.
This is what we did to setup a few dashboards at platanus
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
var Event = vumigo.events.Event; | |
var BaseApp = App.extend(function(self) { | |
App.call(self, 'states:start'); | |
self.states.add('states:start', function(name) { | |
// a bit of a yucky way of doing events, wish we opted for a more | |
// nodejs like approach (.emit('foo', {bar: 'baz'})) | |
// .emit returns a promise |
var _ = require('lodash'); | |
var vumigo = require('vumigo_v02'); | |
var App = vumigo.App; | |
var Choice = vumigo.states.Choice; | |
var ChoiceState = vumigo.states.ChoiceState; | |
var FreeText = vumigo.states.FreeText; | |
var EndState = vumigo.states.EndState; | |
# You'll need these to release stuff. | |
pip install wheel twine | |
# Versioning and merging. | |
./utils/bump-version.sh <version> | |
git commit -m 'Release version <version>.' | |
git push origin develop | |
git checkout master | |
git merge --ff develop | |
git tag besnappy-<version> |
#!/bin/bash | |
CMD="$1" | |
shift 1 | |
function get_feature () { | |
FEATURE=`git flow feature | grep '^\* ' | sed 's/^\* //'` | |
ISSUE=`echo "$FEATURE" | sed -e 's/issue-\([0-9]*\)-.*/\1/'` | |
echo "Feature: $FEATURE (issue: $ISSUE)" | |
} |
So basically FlowType doesn't know about CSS Modules, a really handy way of dealing with the plagues of CSS in codebases (global variables and dependency wackiness mainly).
What WebPack allows us to do is "require" CSS files and use their class names:
import styles from "my_styles.css";
import React from "react";
""" | |
Problem: | |
How to Convert PDF to Image with Python Script ? | |
Installation: | |
I use ubuntu OS 14.04 | |
We use wrapper for ImageMagick [http://www.imagemagick.org/script/index.php] to Convert The PDF file | |
in Python do: | |
$ sudo apt-get install libmagickwand-dev |