Live demo: http://dashing-map.herokuapp.com/
Created by: @andmcgregor
Uses the Google Maps API to display latitude and longitude coordinates.
sudo iptables -t nat -A PREROUTING -p tcp -i enp0s31f6 --dport 9983 -j DNAT --to-destination 192.168.0.119:9983 | |
sudo iptables -t nat -A PREROUTING -p tcp -i enp0s31f6 --dport 9984 -j DNAT --to-destination 192.168.0.119:9984 | |
sudo iptables -A FORWARD -p tcp -d 192.168.0.119 --dport 9983 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT | |
sudo iptables -A FORWARD -p tcp -d 192.168.0.119 --dport 9984 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT | |
sudo bash -c "iptables-save > /etc/iptables/iptables.rules" | |
sudo systemctl reload iptables.service | |
./siad --rpc-addr 9983 --host-addr 9984 |
Verifying that "andrewmc.id" is my Blockstack ID. https://onename.com/andrewmc |
### Keybase proof | |
I hereby claim: | |
* I am andmcgregor on github. | |
* I am andrewmc (https://keybase.io/andrewmc) on keybase. | |
* I have a public key whose fingerprint is 08E9 9759 A27A 4125 115C 5223 EFCE 720D 8D24 2D75 | |
To claim this, I am signing this object: |
$turquoise-light: #1abc9c; | |
$turquoise-dark: #16a085; | |
$emrald-light: #2ecc71; | |
$emrald-dark: #27ae60; | |
$blue-light: #3498db; | |
$blue-dark: #2980b9; | |
$purple-light: #9b59b6; | |
$purple-dark: #8e44ad; | |
$asphalt-light: #34495e; | |
$asphalt-dark: #2c3e50; |
#!/bin/bash | |
cd gui | |
tmux new-window -n GUI grunt watch | |
tmux split-window -t GUI -h | |
tmux split-window -t GUI.0 | |
tmux resize-pane -t GUI.0 -y 4 | |
cd .. |
#!/bin/bash | |
tmux new-window -n $1 vim shaders/$1.vert | |
tmux split-window -t$1 -h vim shaders/$1.frag |
#!/bin/bash | |
tmux new-window -n $1 vim include/$1.h | |
tmux split-window -t$1 -h vim src/$1.cpp |
Live demo: http://dashing-map.herokuapp.com/
Created by: @andmcgregor
Uses the Google Maps API to display latitude and longitude coordinates.
//------------------------------------------------------------------------------------------------------------------ | |
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here. | |
//------------------------------------------------------------------------------------------------------------------ | |
function Zoo() { | |
} | |
Zoo.init = function(animals) { | |
this.animals = animals; |
<!doctype html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css"> | |
<link rel="stylesheet" href="main.css"> | |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800"> | |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900"> | |
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css"> | |
</head> |