This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [youtube url="http://youtu.be/TRmdXDH9b1s"] | |
| [youtube url="http://www.youtube.com/watch?v=TRmdXDH9b1s" width="100%" height="400"] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [vimeo url="http://vimeo.com/55084640"] | |
| [vimeo url="http://vimeo.com/55084640" width="100%" height="400"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [twitter url="https://twitter.com/PostachioApp/status/342322929503195137"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [instagram url="http://instagram.com/p/aOSFQSALE0/"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [gist url="https://gist.github.com/geekforbrains/5723163"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [aboutme url="http://about.me/gavinvickery"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [codepen url="http://codepen.io/brandonb927/pen/hkBsd" height="500" type="result"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title> | |
| {% if is_home %} | |
| {{ site.author }} | |
| {% elif is_post %} | |
| {{ post.title }} | |
| {% elif is_link %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get install libxml2 | |
| sudo apt-get install libxslt1.1 | |
| sudo apt-get install libxml2-dev | |
| sudo apt-get install libxslt1-dev | |
| sudo apt-get install python-libxml2 | |
| sudo apt-get install python-libxslt1 | |
| sudo apt-get install python-dev | |
| sudo apt-get install python-setuptools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var os = require('os'); | |
| var cluster = require('cluster'); | |
| var zmq = require('zmq'); | |
| if(cluster.isMaster) { | |
| var cpuCount = os.cpus().length; | |
| for(var i = 0; i < cpuCount; i++) cluster.fork(); | |
| } else { | |
| var socket = zmq.socket('pull') | |
| socket.identity = 'consumer' + process.pid; |