| Title | Subtitle | Authors | JSTOR Discipline 1 |
|---|---|---|---|
| Tracking Rural Change | "Community, Policy and Technology in Australia, New Zealand and Europe" | Socio |
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
| # See list of docker virtual machines on the local box | |
| $ docker-machine ls | |
| NAME ACTIVE URL STATE URL SWARM DOCKER ERRORS | |
| default * virtualbox Running tcp://192.168.99.100:2376 v1.9.1 | |
| # Note the host URL 192.168.99.100 - it will be used later! | |
| # Build an image from current folder under given image name | |
| $ docker build -t gleb/demo-app . |
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
| #!/bin/bash | |
| # Sometimes you need to move your existing git repository | |
| # to a new remote repository (/new remote origin). | |
| # Here are a simple and quick steps that does exactly this. | |
| # | |
| # Let's assume we call "old repo" the repository you wish | |
| # to move, and "new repo" the one you wish to move to. | |
| # | |
| ### Step 1. Make sure you have a local copy of all "old repo" | |
| ### branches and tags. |
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> | |
| <!-- | |
| DOM sprite demo | |
| by Christer Kaitila | |
| http://mcfunkypants.com | |
| http://twitter.com/McFunkypants | |
| http://google.com/+ChristerKaitila | |
| Created for Build New Games (c) 2012 by Bocoup | |
| http://www.buildnewgames.com |
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
| // very basic embedded Ruby interpreter for C++ programs | |
| // thrown together by Jeff Trull <jetrull@sbcglobal.net> based on googling and asking questions on #ruby-lang | |
| #include <ruby.h> | |
| // access to C variables | |
| static VALUE getter(VALUE ns, VALUE var) { | |
| return Qfalse; | |
| } | |
| VALUE setter(VALUE ns, VALUE var, VALUE val) { |